This repository was archived by the owner on Jul 15, 2023. It is now read-only.
Commit 5f25121 1 parent 9224b83 commit 5f25121 Copy full SHA for 5f25121
File tree 3 files changed +14
-3
lines changed
Microsoft.Vsts.Authentication
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 93
93
<!-- Only download a new copy of nuget.exe if we don't have a copy available -->
94
94
<PropertyGroup >
95
95
<NugetPath >nuget.exe</NugetPath >
96
- <IsSigned >
97
- </IsSigned >
96
+ <IsSigned ></IsSigned >
98
97
<IsSigned Condition =" '$(SignType)' == '' Or '$(SignType)' == '*Undefined*' " >-unsigned</IsSigned >
99
98
<NugetWorkDir >$(OutputPath.TrimEnd('\'))</NugetWorkDir >
100
99
</PropertyGroup >
Original file line number Diff line number Diff line change 15
15
<Delete Files =" $(OutputPath)\*.*;$(IntermediateOutputPath)\*.*" />
16
16
<RemoveDir Directories =" $(IntermediateOutputPath);$(OutputPath)" />
17
17
</Target >
18
+ <Target Name =" CopySymbols" Condition =" '$(TestProjectType)' == '' Or '$(TestProjectType)' == '*Undefined*' " AfterTargets =" CopyFilesToOutputDirectory" >
19
+ <PropertyGroup >
20
+ <SymbolDir >$(SolutionDir)\Symbols</SymbolDir >
21
+ </PropertyGroup >
22
+ <ItemGroup >
23
+ <SymbolFiles Include =" $(OutputPath)\*.pdb" >
24
+ <InProject >false</InProject >
25
+ </SymbolFiles >
26
+ </ItemGroup >
27
+ <MakeDir Condition =" !Exists('$(SymbolDir)')" Directories =" $(SymbolDir)" />
28
+ <Copy SourceFiles =" @(SymbolFiles)" DestinationFolder =" $(SymbolDir)" />
29
+ </Target >
18
30
</Project >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project ToolsVersion =" 14 .0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
2
+ <Project ToolsVersion =" 15 .0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
<Import Project =" $(SolutionDir)build.targets" />
4
4
<Import Project =" $(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition =" Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
5
5
</Project >
You can’t perform that action at this time.
0 commit comments