-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetorrent.Tests.csproj
More file actions
54 lines (54 loc) · 2.25 KB
/
Copy pathNetorrent.Tests.csproj
File metadata and controls
54 lines (54 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CSharpier.MsBuild" Version="1.2.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="TUnit" Version="1.12.65" />
<PackageReference Include="PublicApiGenerator" Version="11.5.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Netorrent\Netorrent.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Data\CorruptfileTest\Folder1\Folder2\test3.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Data\CorruptfileTest\Folder1\test2.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Data\CorruptfileTest\test.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Data\MultifileTest\Folder1\Folder2\test3.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\MultifileTest\Folder1\test2.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\MultifileTest\test.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\nosferatu.torrent">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="PublicApi\ApiTest.My_API_Has_No_Changes.approved.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="PublicApi\ApiTest.My_API_Has_No_Changes.received.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>