-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTests.csproj
33 lines (29 loc) · 1.02 KB
/
Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Company>Belin.io</Company>
<Copyright>© Cédric Belin</Copyright>
<Product>LCOV Reports for .NET</Product>
<Version>1.0.1</Version>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AssemblyName>Belin.Lcov.Tests</AssemblyName>
<BaseOutputPath>obj</BaseOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutDir>../bin</OutDir>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
<PackageReference Include="MSTest" Version="3.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../src/Lcov.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting.Assert" Static="true" />
</ItemGroup>
</Project>