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

CoreFx.Private.TestUtilities.csproj « CoreFx.Private.TestUtilities « tests « Common « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 559cca7f20346b0d4faea6d95b39c0ee94d657c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <NoWarn>$(NoWarn);CS1573</NoWarn>
    <!--
      This assembly is referenced from rid agnostic configurations therefore we can't make it RID specific
      and instead use runtime checks.
    -->
    <TargetFrameworks>$(NetCoreAppCurrent);$(NetFrameworkCurrent)</TargetFrameworks>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="System\AdminHelpers.cs" />
    <Compile Include="System\AssertExtensions.cs" />
    <Compile Include="System\RetryHelper.cs" />
    <Compile Include="System\Buffers\BoundedMemory.cs" />
    <Compile Include="System\Buffers\BoundedMemory.Creation.cs" />
    <Compile Include="System\Buffers\BoundedMemory.Unix.cs" />
    <Compile Include="System\Buffers\BoundedMemory.Windows.cs" />
    <Compile Include="System\Buffers\PoisonPagePlacement.cs" />
    <Compile Include="System\IO\FileCleanupTestBase.cs" />
    <Compile Include="System\TestEnvironment.cs" />
    <Compile Include="System\ThreadCultureChange.cs" />
    <!-- We don't compile per but and instead use runtime platform checks. -->
    <Compile Include="System\PlatformDetection.cs" />
    <Compile Include="System\PlatformDetection.Unix.cs" />
    <Compile Include="System\PlatformDetection.Windows.cs" />
    <!-- 
      Interop.Library is not designed to support runtime checks therefore we are picking the Windows
      variant from the Common folder and adding the missing members manually.
    -->
    <Compile Include="Interop\Interop.Libraries.cs" />
  </ItemGroup>
  <!-- Windows imports -->
  <ItemGroup>
    <Compile Include="$(CommonPath)Interop\Windows\Kernel32\Interop.GetCurrentProcess_IntPtr.cs">
      <Link>Common\Interop\Windows\Kernel32\Interop.GetCurrentProcess_IntPtr.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\NtDll\Interop.RtlGetVersion.cs">
      <Link>Common\Interop\Windows\NtDll\Interop.RtlGetVersion.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Advapi32\Interop.OpenProcessToken_SafeAccessTokenHandle.cs">
      <Link>Common\Interop\Windows\Advapi32\Interop.OpenProcessToken_SafeAccessTokenHandle.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Interop.Libraries.cs">
      <Link>Common\Interop\Windows\Interop.Libraries.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Kernel32\Interop.CloseHandle.cs">
      <Link>Common\Interop\Windows\Kernel32\Interop.CloseHandle.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Advapi32\Interop.TOKEN_INFORMATION_CLASS.cs">
      <Link>Common\Interop\Windows\Advapi32\Interop.TOKEN_INFORMATION_CLASS.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Advapi32\Interop.GetTokenInformation_void.cs">
      <Link>Common\Interop\Windows\Advapi32\Interop.GetTokenInformation_void.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Advapi32\Interop.TOKEN_ELEVATION.cs">
      <Link>Common\Interop\Windows\Advapi32\Interop.TOKEN_ELEVATION.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Windows\Interop.BOOL.cs">
      <Link>Common\Interop\Windows\Interop.BOOL.cs</Link>
    </Compile>
  </ItemGroup>
  <!-- Unix imports -->
  <ItemGroup>
    <Compile Include="$(CommonPath)Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSslVersion.cs">
      <Link>Common\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSslVersion.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)Interop\Unix\System.Native\Interop.GetEUid.cs">
      <Link>Common\Interop\Unix\Interop.GetEUid.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.DotNet.XUnitExtensions" Version="$(MicrosoftDotNetXUnitExtensionsVersion)" />
    <PackageReference Include="xunit.core" Version="$(XUnitVersion)" ExcludeAssets="build" />
    <PackageReference Include="xunit.assert" Version="$(XUnitVersion)" />
    <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(MicrosoftDotNetPlatformAbstractionsVersion)" />
  </ItemGroup>
</Project>