This repository was archived by the owner on May 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 61
61
pool :
62
62
vmImage : windows-2019
63
63
steps :
64
+ - task : CmdLine@2
65
+ displayName : ' Clear Local NuGet Cache' # https://github.com/actions/virtual-environments/issues/1090#issuecomment-748452120
66
+ inputs :
67
+ script : ' nuget locals all -clear'
68
+ - task : MSBuild@1
69
+ displayName : ' Clean Solution'
70
+ inputs :
71
+ solution : $(PathToSln)
72
+ msbuildArguments : ' /t:Clean'
64
73
- task : MSBuild@1
65
74
displayName : Build Solution
66
75
inputs :
88
97
inputs :
89
98
version : $(NETCORE_TEST_VERSION_2_1)
90
99
includePreviewVersions : false
100
+ - task : CmdLine@2
101
+ displayName : ' Clear Local NuGet Cache' # https://github.com/actions/virtual-environments/issues/1090#issuecomment-748452120
102
+ inputs :
103
+ script : ' nuget locals all -clear'
104
+ - task : MSBuild@1
105
+ displayName : ' Clean Solution'
106
+ inputs :
107
+ solution : $(PathToSln)
108
+ msbuildArguments : ' /t:Clean'
91
109
# if this is a tagged build, then update the version number
92
110
- powershell : |
93
111
$buildSourceBranch = "$(Build.SourceBranch)"
You can’t perform that action at this time.
0 commit comments