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

System.Runtime.Extensions.Tests.csproj « tests « System.Runtime.Extensions « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acbfb09b86d240c187e4f9040b403edc0eeacbf2 (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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)'==''">Windows_Debug</Configuration>
  </PropertyGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>System.Runtime.Extensions.Tests</RootNamespace>
    <AssemblyName>System.Runtime.Extensions.Tests</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <DefineConstants Condition="'$(TargetGroup)'=='netstandard1.7'">$(DefineConstants);netstandard17</DefineConstants>
    <NugetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.5</NugetTargetMoniker>
  </PropertyGroup>
  <!-- Folder logic needs moved into common targets: https://github.com/dotnet/corefx/issues/11468 -->
  <ItemGroup Condition="'$(TargetGroup)'=='netstandard1.7'">
    <TestNugetTargetMoniker Include="$(NugetTargetMoniker)">
      <Folder>ns1.7-netcoreapp1.1</Folder>
    </TestNugetTargetMoniker>
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='netcoreapp1.1'">
    <TestNugetTargetMoniker Include="$(NugetTargetMoniker)">
      <Folder>netcoreapp1.1</Folder>
    </TestNugetTargetMoniker>
  </ItemGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'netstandard1.7_Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'netstandard1.7_Release|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'netcoreapp1.1_Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'netcoreapp1.1_Release|AnyCPU' " />
  <ItemGroup Condition="'$(TargetGroup)'=='netstandard1.7' or '$(TargetGroup)'=='netcoreapp1.1'">
    <Compile Include="System\IO\PathTests.netstandard1.7.cs" />
    <Compile Include="System\Convert.netstandard1.7.cs" />
    <Compile Include="System\EnvironmentTests.cs" />
    <Compile Include="System\Math.netstandard1.7.cs" />
    <Compile Include="System\StringComparer.netstandard1.7.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='netcoreapp1.1'">
    <Compile Include="System\IO\Path.GetRelativePath.cs" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="System\AppDomainTests.cs" Condition="'$(TargetGroup)'=='netstandard1.7'" />
    <Compile Include="System\Diagnostics\Stopwatch.cs" />
    <Compile Include="System\Environment.MachineName.cs" />
    <Compile Include="System\IO\Path.Combine.cs" />
    <Compile Include="System\Runtime\Versioning\FrameworkName.cs" />
    <Compile Include="System\IO\PathTests.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="$(CommonPath)\Interop\Unix\System.Native\Interop.GetNodeName.cs">
      <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\Diagnostics\AssertWithCallerAttributes.cs">
      <Link>Common\tests\System\Diagnostics\AssertWithCallerAttributes.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Diagnostics\RemoteExecutorTestBase.cs">
      <Link>Common\System\Diagnostics\RemoteExecutorTestBase.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\IO\FileCleanupTestBase.cs">
      <Link>Common\System\IO\FileCleanupTestBase.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\ShouldNotBeInvokedException.cs">
      <Link>Common\System\ShouldNotBeInvokedException.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\PlatformDetection.cs">
      <Link>Common\System\PlatformDetection.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\System.Runtime\pkg\System.Runtime.pkgproj" />
    <ProjectReference Include="..\..\System.Diagnostics.Debug\pkg\System.Diagnostics.Debug.pkgproj" />
    <ProjectReference Include="..\pkg\System.Runtime.Extensions.pkgproj">
      <Project>{1e689c1b-690c-4799-bde9-6e7990585894}</Project>
      <Name>System.Runtime.Extensions.CoreCLR</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\System.Private.Uri\pkg\System.Private.Uri.pkgproj" />
    <ProjectReference Include="$(CommonTestPath)\System\Diagnostics\RemoteExecutorConsoleApp\RemoteExecutorConsoleApp.csproj">
      <Project>{69e46a6f-9966-45a5-8945-2559fe337827}</Project>
      <Name>RemoteExecutorConsoleApp</Name>
    </ProjectReference>
    <ProjectReference Include="VoidMainWithExitCodeApp\VoidMainWithExitCodeApp.csproj">
      <Project>{9F312D76-9AF1-4E90-B3B0-815A1EC6C346}</Project>
      <Name>VoidMainWithExitCodeApp</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>