-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopyPaste.Listener.Tests.csproj
More file actions
25 lines (23 loc) · 1.17 KB
/
CopyPaste.Listener.Tests.csproj
File metadata and controls
25 lines (23 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows10.0.22621.0</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<!-- CA1707: Underscores in identifiers are the project-wide naming convention -->
<!-- CA1054: Tests use string URLs to verify parsing behavior -->
<!-- CA1515: xUnit requires public test classes for discovery/reflection -->
<!-- S4144: Test methods intentionally share similar structure with different data -->
<NoWarn>IDE0022;CA1707;CA1054;CA1515;S4144</NoWarn>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" PrivateAssets="all" />
<PackageReference Include="coverlet.collector" Version="6.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CopyPaste.Listener\CopyPaste.Listener.csproj" />
<ProjectReference Include="..\CopyPaste.Core\CopyPaste.Core.csproj" />
</ItemGroup>
</Project>