-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathTest.csproj
39 lines (38 loc) · 1.69 KB
/
Test.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
32
33
34
35
36
37
38
39
<!--
Copyright 2005 Tamir Gal <[email protected]>
Copyright 2008-2009 Phillip Lemon <[email protected]>
Copyright 2008-2011 Chris Morgan <[email protected]>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net48</TargetFrameworks>
<TestTfmsInParallel>false</TestTfmsInParallel>
<CoverletOutputFormat>opencover</CoverletOutputFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Mono.Posix" Version="7.1.0-final.1.21458.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.6.0" />
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="JunitXml.TestLogger" Version="6.0.0" />
<PackageReference Include="SemanticVersion" Version="2.1.0" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpPcap\SharpPcap.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="capture_files\*.pcap">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>