-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathBlog.Test.csproj
More file actions
27 lines (22 loc) · 908 Bytes
/
Blog.Test.csproj
File metadata and controls
27 lines (22 loc) · 908 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Update="testsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\MyTested.AspNetCore.Mvc.Universe\MyTested.AspNetCore.Mvc.Universe.csproj" />
<ProjectReference Include="..\Blog.Web\Blog.Web.csproj" />
</ItemGroup>
</Project>