Remove FX_NO_CUSTOMATTRIBUTEDATA, this is silverlight specific.

This commit is contained in:
7sharp9 2014-07-30 11:52:17 +01:00
Родитель 04b8c81bdb
Коммит 2692e9a55f
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -12,14 +12,9 @@ module ProvidedTypes =
type CustomAttributeDataExt =
static member Make(ctorInfo, ?args, ?namedArgs) =
#if FX_NO_CUSTOMATTRIBUTEDATA
{ new IProvidedCustomAttributeData with
#else
{ new CustomAttributeData() with
#endif
member __.Constructor = ctorInfo
member __.ConstructorArguments = defaultArg args [||] :> IList<_>
member __.NamedArguments = defaultArg namedArgs [||] :> IList<_> }
type Type with