13 changed files with 80 additions and 30 deletions
@ -0,0 +1,21 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Perspex.Metadata |
|||
{ |
|||
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] |
|||
public class XmlnsDefinitionAttribute : Attribute |
|||
{ |
|||
public string XmlNamespace { get; set; } |
|||
public string ClrNamespace { get; set; } |
|||
|
|||
public XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) |
|||
{ |
|||
XmlNamespace = xmlNamespace; |
|||
ClrNamespace = clrNamespace; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Reflection; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Perspex.Platform |
|||
{ |
|||
public interface IPclPlatformWrapper |
|||
{ |
|||
Assembly[] GetLoadedAssemblies(); |
|||
} |
|||
} |
|||
Binary file not shown.
Loading…
Reference in new issue