-
Notifications
You must be signed in to change notification settings - Fork 746
Expand file tree
/
Copy pathNuGet.MSSigning.Extensions.FuncTest.csproj
More file actions
37 lines (33 loc) · 1.75 KB
/
NuGet.MSSigning.Extensions.FuncTest.csproj
File metadata and controls
37 lines (33 loc) · 1.75 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
<Description>A functional (end-to-end) test suite for NuGet.MSSigning.Extensions.</Description>
<TestProjectType Condition="'$(IsXPlat)' != 'true'">Unit</TestProjectType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\NuGet.Clients\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" />
<PackageReference Include="Microsoft.Build.Framework" />
</ItemGroup>
<Target Name="CopyFinalNuGetExeToOutputPath"
AfterTargets="PrepareForRun"
Inputs="$(ArtifactsDirectory)$(VsixOutputDirName)\NuGet.exe"
Outputs="$(OutputPath)NuGet\NuGet.exe"
Condition="'$(SkipILMergeOfNuGetExe)' != 'true'">
<Copy SourceFiles="$(ArtifactsDirectory)$(VsixOutputDirName)\NuGet.exe"
DestinationFiles="$(OutputPath)NuGet\NuGet.exe"
SkipUnchangedFiles="$(SkipCopyUnchangedFiles)"
OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)"
Retries="$(CopyRetryCount)"
RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)"
UseHardlinksIfPossible="$(CreateHardLinksForCopyLocalIfPossible)"
UseSymboliclinksIfPossible="$(CreateSymbolicLinksForCopyLocalIfPossible)">
<Output TaskParameter="DestinationFiles"
ItemName="FileWritesShareable" />
<Output TaskParameter="CopiedFiles"
ItemName="ReferencesCopiedInThisBuild" />
</Copy>
</Target>
</Project>