-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathProject.UnitTest.csproj
31 lines (25 loc) · 1 KB
/
Project.UnitTest.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Project.API\Project.API.csproj" />
<ProjectReference Include="..\Project.Core\Project.Core.csproj" />
<ProjectReference Include="..\Project.Infrastructure\Project.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="API\" />
</ItemGroup>
</Project>