mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>Microsoft.Tye.UnitTests</AssemblyName>
|
|
<IsTestProject>true</IsTestProject>
|
|
<IsUnitTestProject>true</IsUnitTestProject>
|
|
<IsPackable>false</IsPackable>
|
|
<TestRunnerName>XUnit</TestRunnerName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="1.0.1" />
|
|
<PackageReference Include="coverlet.collector" Version="1.0.1" />
|
|
<PackageReference Include="coverlet.msbuild" Version="2.8.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.Tye.Hosting\Microsoft.Tye.Hosting.csproj" />
|
|
<ProjectReference Include="..\..\src\Microsoft.Tye.Core\Microsoft.Tye.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\tye\tye.csproj" />
|
|
<ProjectReference Include="..\Test.Infrastructure\Test.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="testassets\envfile_a.env">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="testassets\envfile_b.env">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|
|
|