Fix casing of interop directories (dotnet/corert#6982)
authorJan Kotas <jkotas@microsoft.com>
Sun, 10 Feb 2019 02:45:30 +0000 (18:45 -0800)
committerJan Kotas <jkotas@microsoft.com>
Sun, 10 Feb 2019 06:40:56 +0000 (22:40 -0800)
Match convention introduced by https://github.com/dotnet/corefx/pull/35085

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs

index 406e4b0..c993519 100644 (file)
@@ -9,7 +9,7 @@ internal partial class Interop
 {
     internal partial class Kernel32
     {
-        [DllImport(Libraries.Kernel32, SetLastError = true)]
+        [DllImport(Libraries.Kernel32)]
         internal static extern IntPtr GetCurrentProcess();
     }
 }