2020-01-26 13:37:54 +07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-09-15 23:36:09 +07:00
|
|
|
<TargetFrameworks>netcoreapp3.1;netcoreapp2.2</TargetFrameworks>
|
2020-01-26 13:37:54 +07:00
|
|
|
<RootNamespace>sample_csproj</RootNamespace>
|
2020-09-15 23:36:09 +07:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-01-26 13:37:54 +07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-09-15 23:36:09 +07:00
|
|
|
<!-- These packages will be downloaded over the network for testing proxy settings -->
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="1.2.0" />
|
2020-01-26 13:37:54 +07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|