6123a772ed
Former-commit-id: 4b7216ffda08448e562271ce733688e761120fc5
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<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>
|
|
|
|
<ItemGroup>
|
|
<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>
|