-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathbunit.testassets.csproj
More file actions
28 lines (25 loc) · 1.16 KB
/
bunit.testassets.csproj
File metadata and controls
28 lines (25 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<RootNamespace>Bunit.TestAssets</RootNamespace>
<AssemblyName>Bunit.TestAssets</AssemblyName>
<OutputType>Library</OutputType>
<IsPackable>false</IsPackable>
<Nullable>annotations</Nullable>
<SonarQubeTestProject>false</SonarQubeTestProject>
<IsTestProject>false</IsTestProject>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.Expressions" />
<PackageReference Include="xunit.v3.extensibility.core" />
<PackageReference Include="xunit.v3.assert" />
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" />
<PackageReference Include="Microsoft.AspNetCore.Components" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" />
<PackageReference Include="Serilog.Extensions.Logging" />
</ItemGroup>
</Project>