Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2017-03-10 08:08:39 +0300
committerGitHub <noreply@github.com>2017-03-10 08:08:39 +0300
commitb1865ea0847a7a86baefe8378b772ecf0b785681 (patch)
treeeb6bbc30cdc46cdf67d9f052dba727c7d4db4371 /src/System.DirectoryServices
parent322e87ff68dcb2561bf99244aca193fcc98a06b9 (diff)
Enable Pinvoke checker and baseline violations (#16704)
* Fix UWP Pinvoke checker condition * analyzer baselines * Remove redundant local define * Remove redundant CA lines * Special case Registry * Fix BlockReflectionAttribute * Replace NETNATIVE with uap define * baselines * Disable Pinvoke scan on specific projects * Disable BlockReflectionAttribute on ilproj * Revive 2 baselines * Disable UWP validation on SQlClient * Convert some defines to `uwp` * Fix S.N.Primitives baseline * Remove dead baselines * Clean up NET_NATIVE defines * Remove FEATURE_CORECLR except from shared sources * Change Threading.Thread defines to just uapaot * Fix comment * Fix comment 2 * Change serialization uap defines to uapaot * Rename EnableWinRT to UWPCompatible * Fix UAP build for Console * Fix uap condition in XML csproj * Fix condition in XmlSerializer project * Replace netcore50 * Remove dead #if * Redundant console condition * Redundant console condition2 * Trim baseline * Revert Console baseline to pre UAP * Fix MemoryMappedFiles uap build * Fix S.Linq.Expressions build for UAP by temporarily disabling it * Fix S.N.Sockets build for uap * No plans to put SQLClient in UWP * Fix RuntimeInformation build * Fix MemoryMappedFiles build for Unix * Add UWPCompatible to all netstandard versions * Add EnablePinvokeAnalyzer to disable Pinvoke checking entirely for some reason * Remove dead System.Xml.XmlSerializer.Tests.settings.targets * Fix interop services build * Remove last uap/uapaot define in Xml tests * PInvoke check doc * Fix PInvoke casing * PInvoke file is case sensitive * Remove unnecessary references to uapaot from projects that don't have uapaot configs * Remove unnecessary uapaot from S.R.I.RI * Replace UWPCompatible for TargetGroup in csproj conditions * Reverse FileSystem edit as not ready to build for UWP
Diffstat (limited to 'src/System.DirectoryServices')
-rw-r--r--src/System.DirectoryServices/src/System.DirectoryServices.csproj2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.DirectoryServices/src/System.DirectoryServices.csproj b/src/System.DirectoryServices/src/System.DirectoryServices.csproj
index d86ca449b1..ffc0a619bf 100644
--- a/src/System.DirectoryServices/src/System.DirectoryServices.csproj
+++ b/src/System.DirectoryServices/src/System.DirectoryServices.csproj
@@ -6,6 +6,8 @@
<AssemblyName>System.DirectoryServices</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>$(NoWarn);0649</NoWarn>
+ <!-- Although we have a netstandard configuration, we know we are not currently UAP compatible-->
+ <UWPCompatible>false</UWPCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Windows_NT-Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Windows_NT-Release|AnyCPU'" />