-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNetProjectPackageExtractor.Tests.csproj
More file actions
62 lines (56 loc) · 2.55 KB
/
NetProjectPackageExtractor.Tests.csproj
File metadata and controls
62 lines (56 loc) · 2.55 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
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Company>Starion Group S.A.</Company>
<Authors>Sam Gerené, Alexander van Delft, Anh Toan Bui Long</Authors>
<Copyright>Copyright 2022-2025 Starion Group S.A.</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit.Console" Version="3.18.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Commands\" />
<Folder Include="Root\SubFolder1\Subfolder1.1\" />
<Folder Include="Root\SubFolder1\Subfolder1.2\SubsubFolder1.2.1\SubSubSubFolder1.2.1.1\" />
</ItemGroup>
<ItemGroup>
<None Include="Root\root.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Root\SubFolder1\Subfolder1.2\SubFolder1.2.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Root\SubFolder1\Subfolder1.2\SubsubFolder1.2.1\SubSubSubFolder1.2.1.1\SubSubSubFolder1.2.1.1.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Root\SubFolder1\Subfolder1.2\Directory.Packages.props">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="root\subfolder1\subfolder1.2\subsubfolder1.2.1\SubSubFolder1.2.1.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Root\SubFolder1\SubFolder1.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Root\SubFolder1\Subfolder1.1\SubFolder1.1.csproj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetProjectPackageExtractor\NetProjectPackageExtractor.csproj" />
</ItemGroup>
</Project>