File tree 1 file changed +3
-3
lines changed
azure-pipelines-templates
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,17 +77,17 @@ steps:
77
77
78
78
Write-Output "VsWherePath is: $VsWherePath"
79
79
80
- $VsInstance = $(&$VSWherePath -latest -property displayName)
80
+ $VsInstance = & $VsWherePath -latest -property displayName
81
81
82
82
Write-Output "Latest VS is: $VsInstance"
83
83
84
84
# copy MDP file to msbuild location
85
- $VsPath = $(&$VsWherePath -latest -property installationPath)
85
+ $VsPath = & $VSWherePath -latest -property installationPath
86
86
87
87
Write-Debug "Copy MDP DLL to msbuild location"
88
88
89
89
$msbuildPath = $VsPath + "\MSBuild"
90
90
91
91
$extensionPath = $msbuildPath + "\nanoFramework\v1.0"
92
92
93
- Copy-Item -Path "$env:Pipeline_Workspace\mdp" -Destination $msbuildPath -Force -Verbose
93
+ Copy-Item -Path "$env:Pipeline_Workspace\mdp\* " -Destination $extensionPath -Force -Verbose
You can’t perform that action at this time.
0 commit comments