forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.Packaging.Test.csproj
More file actions
31 lines (28 loc) · 1.44 KB
/
NuGet.Packaging.Test.csproj
File metadata and controls
31 lines (28 loc) · 1.44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TargetFrameworksExeForSigning)</TargetFrameworks>
<UseParallelXunit>true</UseParallelXunit>
<Description>Unit tests for NuGet.Packaging.</Description>
<!-- remove warnings for obsolete types and methods: SYSLIB0023: RNGCryptoServiceProvider, SYSLIB0026: X509Certificate2() blank constructor -->
<NoWarn>$(NoWarn);SYSLIB0023;SYSLIB0026</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\TestUtilities\Test.Utility\Test.Utility.csproj" />
<ProjectReference Include="..\NuGet.Configuration.Test\NuGet.Configuration.Test.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == '$(NETFXTargetFramework)' ">
<Reference Include="System.IO.Compression" />
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == '$(NETCoreTargetFramework)' ">
<!--
For .netcoreapp3.0 a different version of System.Configuration.ConfigurationManager and System.Security.Cryptography.ProtectedData are used
which causes assembly resolution conflicts
-->
<PackageReference Include="System.Configuration.ConfigurationManager" ExcludeAssets="Compile" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" ExcludeAssets="Compile" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>