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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-12-13 17:35:31 +0300
committerJan Kotas <jkotas@microsoft.com>2017-12-13 19:05:31 +0300
commitfb17c5fa11f780e72090f2c987c82c541a0741b0 (patch)
tree05209f20b7f4cd4abab9786a59ce45296e6bf34f /src/Test.CoreLib
parenta35ffd1884680b254e6cfb48c695f47fdbf8bf27 (diff)
Adding Unsafe APIs that are used by System.Memory - CoreRT specific part
Diffstat (limited to 'src/Test.CoreLib')
-rw-r--r--src/Test.CoreLib/src/System/Object.cs2
-rw-r--r--src/Test.CoreLib/src/Test.CoreLib.csproj6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/Test.CoreLib/src/System/Object.cs b/src/Test.CoreLib/src/System/Object.cs
index 60777622e..f402679ff 100644
--- a/src/Test.CoreLib/src/System/Object.cs
+++ b/src/Test.CoreLib/src/System/Object.cs
@@ -17,6 +17,8 @@ using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
+using Internal.Runtime.CompilerServices;
+
// TODO: remove when m_pEEType becomes EETypePtr
using EEType = Internal.Runtime.EEType;
using ObjHeader = Internal.Runtime.ObjHeader;
diff --git a/src/Test.CoreLib/src/Test.CoreLib.csproj b/src/Test.CoreLib/src/Test.CoreLib.csproj
index 85eb0a94a..8c90d00cc 100644
--- a/src/Test.CoreLib/src/Test.CoreLib.csproj
+++ b/src/Test.CoreLib/src/Test.CoreLib.csproj
@@ -175,9 +175,6 @@
<Compile Include="..\..\Runtime.Base\src\System\Runtime\CompilerServices\IsByRefLikeAttribute.cs">
<Link>Runtime.Base\src\System\Runtime\CompilerServices\IsByRefLikeAttribute.cs</Link>
</Compile>
- <Compile Include="..\..\Runtime.Base\src\System\Runtime\CompilerServices\Unsafe.cs">
- <Link>System\Runtime\CompilerServices\Unsafe.cs</Link>
- </Compile>
<Compile Include="..\..\Runtime.Base\src\System\Runtime\EETypePtr.cs">
<Link>System\EETypePtr.cs</Link>
</Compile>
@@ -229,6 +226,9 @@
<Compile Include="..\..\Runtime.Base\src\System\Void.cs">
<Link>System\Void.cs</Link>
</Compile>
+ <Compile Include="..\..\Runtime.Base\src\Internal\Runtime\CompilerServices\Unsafe.cs">
+ <Link>Internal\Runtime\CompilerServices\Unsafe.cs</Link>
+ </Compile>
<Compile Include="System\Runtime\CompilerServices\ClassConstructorRunner.cs" />
<Compile Include="System\Runtime\CompilerServices\StaticClassConstructionContext.cs" />
<Compile Include="System\Runtime\RuntimeImports.cs" />