forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.CommandLine.FuncTest.csproj
More file actions
44 lines (39 loc) · 1.84 KB
/
NuGet.CommandLine.FuncTest.csproj
File metadata and controls
44 lines (39 loc) · 1.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
<Description>A functional (end-to-end) test suite for NuGet.CommandLine. Contains tests for every nuget.exe command.</Description>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="compiler\resources\*" />
</ItemGroup>
<ItemGroup>
<None Remove="compiler\resources\pc.packages.lock.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\TestUtilities\Test.Utility\Test.Utility.csproj" />
<ProjectReference Include="..\..\NuGet.Clients.Tests\NuGet.CommandLine.Test\NuGet.CommandLine.Test.csproj" />
<ProjectReference Include="..\..\NuGet.Core.Tests\NuGet.Configuration.Test\NuGet.Configuration.Test.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" />
</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>