-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeadCode.Tests.csproj
More file actions
40 lines (34 loc) · 1.36 KB
/
DeadCode.Tests.csproj
File metadata and controls
40 lines (34 loc) · 1.36 KB
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
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="MSTest" Version="3.10.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Spectre.Console" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.50.0" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="Shouldly" />
<Using Include="NSubstitute" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DeadCode\DeadCode.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="TestFixtures\**\*.cs" />
<None Include="TestFixtures\**\*" />
</ItemGroup>
</Project>