forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.Packaging.FuncTest.csproj
More file actions
39 lines (33 loc) · 1.41 KB
/
NuGet.Packaging.FuncTest.csproj
File metadata and controls
39 lines (33 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TargetFrameworksExeForSigning)</TargetFrameworks>
<UseParallelXunit>true</UseParallelXunit>
<Description>Integration tests for the more involved NuGet.Packaging functionality, such as signing.</Description>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == '$(NETFXTargetFramework)' ">
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup>
<Compile Remove="compiler\resources\*" />
<EmbeddedResource Include="compiler\resources\*" />
</ItemGroup>
<ItemGroup>
<None Remove="compiler\resources\UntrustedTimestampPackage.nupkg" />
<None Remove="compiler\resources\TimestampInvalidGenTimePackage.nupkg" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Include="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\NuGet.Core\NuGet.Packaging\NuGet.Packaging.csproj" />
<ProjectReference Include="..\..\NuGet.Core.Tests\NuGet.Configuration.Test\NuGet.Configuration.Test.csproj" />
<ProjectReference Include="..\..\TestUtilities\Test.Utility\Test.Utility.csproj" />
</ItemGroup>
</Project>