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

test.csproj « ILLink.Tasks.Tests « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05e25199b008130459eaf57010e066a43f4c05f2 (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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netcoreapp2.0</TargetFramework>

    <IsPackable>false</IsPackable>
    <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
  </PropertyGroup>

  <ItemGroup>
    <Content Include="MusicStoreReflection.xml">
      <!-- It doesn't seem to get copied unless we specify this
           explicitly. -->
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>

  <Target Name="CopyNuGetConfig"
          AfterTargets="AfterBuild">
    <Copy SourceFiles="nuget/NuGet.config" DestinationFolder="$(OutDir)" />
  </Target>

  <ItemGroup>
    <Compile Include="CommandRunner.cs" />
    <Compile Include="IntegrationTestBase.cs" />
    <Compile Include="TestContext.cs" />
    <Compile Include="MusicStoreTest.cs" />
    <Compile Include="HelloWorldTest.cs" />
    <Compile Include="WebApiTest.cs" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0-preview-20170628-02" />
    <PackageReference Include="xunit" Version="2.3.0" />
    <PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
    <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0" />
  </ItemGroup>

</Project>