forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSystem.Runtime.Extensions.Tests.csproj
More file actions
103 lines (100 loc) · 6.16 KB
/
System.Runtime.Extensions.Tests.csproj
File metadata and controls
103 lines (100 loc) · 6.16 KB
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
100
101
102
103
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TestRuntime>true</TestRuntime>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<EnableLibraryImportGenerator>true</EnableLibraryImportGenerator>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-unix;$(NetCoreAppCurrent)-browser</TargetFrameworks>
<!-- some tests require full ICU data, force it -->
<WasmIncludeFullIcuData>true</WasmIncludeFullIcuData>
</PropertyGroup>
<!-- DesignTimeBuild requires all the TargetFramework Derived Properties to not be present in the first property group. -->
<PropertyGroup>
<TargetPlatformIdentifier>$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)'))</TargetPlatformIdentifier>
<DefineConstants Condition="'$(TargetPlatformIdentifier)' == 'unix' or '$(TargetPlatformIdentifier)' == 'browser'">$(DefineConstants);Unix</DefineConstants>
</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.IsPrivilegedProcess.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.FromHexString.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.ToHexString.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.GetHostName.cs" Condition="'$(TargetPlatformIdentifier)' == 'unix' or '$(TargetPlatformIdentifier)' == 'browser'" Link="Common\Interop\Unix\System.Native\Interop.GetHostName.cs" />
<Compile Include="$(CommonPath)Interop\Unix\Interop.Libraries.cs" Link="Common\Interop\Unix\Interop.Libraries.cs" />
<Compile Include="$(CommonTestPath)System\Diagnostics\DebuggerAttributes.cs" Link="Common\System\Diagnostics\DebuggerAttributes.cs" />
<Compile Include="$(CommonTestPath)System\IO\PathFeatures.cs" Link="Common\System\IO\PathFeatures.cs" />
<Compile Include="$(CommonTestPath)System\ShouldNotBeInvokedException.cs" Link="Common\System\ShouldNotBeInvokedException.cs" />
<Compile Include="$(CommonTestPath)System\Security\Cryptography\ByteUtils.cs" Link="Common\System\Security\Cryptography\ByteUtils.cs" />
</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" />
<TrimmerRootDescriptor Include="$(MSBuildThisFileDirectory)ILLink.Descriptors.xml" />
</ItemGroup>
</Project>