-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBuildWithAspire.Web.UnitTests.csproj
More file actions
43 lines (38 loc) · 1.84 KB
/
Copy pathBuildWithAspire.Web.UnitTests.csproj
File metadata and controls
43 lines (38 loc) · 1.84 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
41
42
43
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>$(NoWarn);xUnit1013</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="AngleSharp" Version="1.5.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.10" />
<PackageReference Include="bunit" Version="1.40.0" />
<PackageReference Include="bunit.web" Version="1.40.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\BuildWithAspire.Web\BuildWithAspire.Web.csproj" />
</ItemGroup>
<PropertyGroup>
<!-- Exclude compiler-generated classes from code coverage -->
<CoverletOutputFormat>cobertura</CoverletOutputFormat>
<ExcludeByAttribute>Obsolete,GeneratedCode,CompilerGenerated</ExcludeByAttribute>
<ExcludeByFile>**/*.Designer.cs,**/*.g.cs,**/*.g.i.cs</ExcludeByFile>
<!-- Exclude specific compiler-generated class patterns -->
<Exclude>[*]*<>*,[*]*+<>*,[*]*DisplayClass*,[*]*d__*</Exclude>
</PropertyGroup>
</Project>