This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathSystem.Runtime.Extensions.Tests.csproj
99 lines (98 loc) · 5.37 KB
/
System.Runtime.Extensions.Tests.csproj
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants Condition="'$(TargetsUnix)' == 'true'">$(DefineConstants);Unix</DefineConstants>
<TestRuntime>true</TestRuntime>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<Configurations>netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release</Configurations>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\ApplicationIdTests.cs" />
<Compile Include="System\Convert.cs" />
<Compile Include="System\EnvironmentTests.cs" />
<Compile Include="System\IO\PathTests.cs" />
<Compile Include="System\IO\PathTests_Windows.cs" />
<Compile Include="System\IO\PathTests_Unix.cs" />
<Compile Include="System\IO\PathTests_Join.cs" />
<Compile Include="System\OperatingSystemTests.cs" />
<Compile Include="System\Runtime\Versioning\VersioningHelperTests.cs" />
<Compile Include="System\AppDomainTests.cs" />
<Compile Include="System\Reflection\AssemblyNameProxyTests.cs" />
<Compile Include="System\MarshalByRefObjectTest.cs" />
<Compile Include="TestHelpers.cs" />
<Compile Include="System\BitConverterSpan.cs" />
<Compile Include="System\IO\Path.GetRelativePath.cs" />
<Compile Include="System\MathF.cs" />
<Compile Include="System\Numerics\BitOperationsTests.cs" />
<Compile Include="System\UnloadingAndProcessExitTests.cs" />
<Compile Include="System\IO\Path.IsPathFullyQualified.cs" />
<Compile Include="System\BitConverterArray.cs" />
<Compile Include="System\BitConverterBase.cs" />
<Compile Include="System\Environment.UserDomainName.cs" />
<Compile Include="System\Environment.UserName.cs" />
<Compile Include="System\Diagnostics\Stopwatch.cs" />
<Compile Include="System\Environment.MachineName.cs" />
<Compile Include="System\IO\PathTests_Combine.cs" />
<Compile Include="System\Runtime\Versioning\FrameworkName.cs" />
<Compile Include="System\IO\PathTestsBase.cs" />
<Compile Include="System\Net\WebUtility.cs" />
<Compile Include="System\BitConverter.cs" />
<Compile Include="System\Convert.BoxedObjectCheck.cs" />
<Compile Include="System\Convert.FromBase64.cs" />
<Compile Include="System\Convert.TestBase.cs" />
<Compile Include="System\Convert.ToBase64CharArray.cs" />
<Compile Include="System\Convert.ToBase64String.cs" />
<Compile Include="System\Convert.ToBoolean.cs" />
<Compile Include="System\Convert.ToByte.cs" />
<Compile Include="System\Convert.ToChar.cs" />
<Compile Include="System\Convert.ToDateTime.cs" />
<Compile Include="System\Convert.ToDecimal.cs" />
<Compile Include="System\Convert.ToDouble.cs" />
<Compile Include="System\Convert.ToInt16.cs" />
<Compile Include="System\Convert.ToInt32.cs" />
<Compile Include="System\Convert.ToInt64.cs" />
<Compile Include="System\Convert.ToSByte.cs" />
<Compile Include="System\Convert.ToSingle.cs" />
<Compile Include="System\Convert.ToString.cs" />
<Compile Include="System\Convert.ToUInt16.cs" />
<Compile Include="System\Convert.ToUInt32.cs" />
<Compile Include="System\Convert.ToUInt64.cs" />
<Compile Include="System\Environment.ExpandEnvironmentVariables.cs" />
<Compile Include="System\Environment.GetEnvironmentVariable.cs" />
<Compile Include="System\Environment.GetCommandLineArgs.cs" />
<Compile Include="System\Environment.NewLine.cs" />
<Compile Include="System\Environment.ProcessorCount.cs" />
<Compile Include="System\Environment.SetEnvironmentVariable.cs" />
<Compile Include="System\Environment.StackTrace.cs" />
<Compile Include="System\Environment.TickCount.cs" />
<Compile Include="System\Environment.Exit.cs" />
<Compile Include="System\Math.cs" />
<Compile Include="System\Progress.cs" />
<Compile Include="System\Random.cs" />
<Compile Include="System\StringComparer.cs" />
<Compile Include="System\Runtime\ProfileOptimization.cs" />
<Compile Include="System\Runtime\CompilerServices\SwitchExpressionExceptionTests.cs" />
<Compile Include="$(CommonPath)\Interop\Unix\System.Native\Interop.GetNodeName.cs" Condition="'$(TargetsUnix)' == 'true'">
<Link>Common\Interop\Unix\System.Native\Interop.GetNodeName.cs</Link>
</Compile>
<Compile Include="$(CommonPath)\Interop\Unix\Interop.Libraries.cs">
<Link>Common\Interop\Unix\Interop.Libraries.cs</Link>
</Compile>
<Compile Include="$(CommonTestPath)\System\IO\PathFeatures.cs">
<Link>Common\System\IO\PathFeatures.cs</Link>
</Compile>
<Compile Include="$(CommonTestPath)\System\ShouldNotBeInvokedException.cs">
<Link>Common\System\ShouldNotBeInvokedException.cs</Link>
</Compile>
<Compile Include="$(CommonTestPath)\System\Security\Cryptography\ByteUtils.cs">
<Link>Common\System\Security\Cryptography\ByteUtils.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="AssemblyResolveTestApp\AssemblyResolveTestApp.csproj" />
<ProjectReference Include="TestAppOutsideOfTPA\TestAppOutsideOfTPA.csproj" />
<ProjectReference Include="VoidMainWithExitCodeApp\VoidMainWithExitCodeApp.csproj" />
<ProjectReference Include="TestApp\TestApp.csproj" />
<ProjectReference Include="TargetFrameworkNameTestApp\TargetFrameworkNameTestApp.csproj" Condition="'$(TargetsNetCoreApp)' == 'true'" />
</ItemGroup>
</Project>