forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNuGet.MSSigning.Extensions.FuncTest.csproj
More file actions
27 lines (22 loc) · 1.29 KB
/
NuGet.MSSigning.Extensions.FuncTest.csproj
File metadata and controls
27 lines (22 loc) · 1.29 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
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'NuGet.sln'))\build\common.test.props" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFrameworks>$(NETFXTargetFramework)</TargetFrameworks>
<TargetFrameworks Condition=" '$(IsXPlat)' == 'true' "></TargetFrameworks>
<Description>A functional (end-to-end) test suite for NuGet.MSSigning.Extensions.</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="$(NuGetClientsSrcDirectory)NuGet.MSSigning.Extensions\NuGet.MSSigning.Extensions.csproj" />
<ProjectReference Include="..\..\NuGet.Clients.Tests\NuGet.CommandLine.Test\NuGet.CommandLine.Test.csproj" />
<ProjectReference Include="..\..\TestUtilities\Test.Utility\Test.Utility.csproj" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<Target Name="CopyFinalNuGetExeToOutputPath" AfterTargets="Build" Condition="'$(SkipILMergeOfNuGetExe)' != 'true'">
<Copy SourceFiles="$(ArtifactsDirectory)$(VsixOutputDirName)\NuGet.exe"
DestinationFolder="$(OutputPath)NuGet\" />
</Target>
<Import Project="$(BuildCommonDirectory)common.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>