Skip to content

Commit 497e658

Browse files
committed
FIXUP: Solution path is bad?
1 parent 4ef6311 commit 497e658

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if ($env:APPVEYOR -ne $null) {
99
dotnet --info
1010
}
1111

12-
task SetupDotNet -Before Clean, Build, BuildHost, Test, TestPowerShellApi {
12+
task SetupDotNet -Before Restore, Clean, Build, BuildHost, Test, TestPowerShellApi {
1313

1414
# Bail out early if we've already found the exe path
1515
if ($script:dotnetExe -ne $null) { return }
@@ -62,11 +62,11 @@ task SetupDotNet -Before Clean, Build, BuildHost, Test, TestPowerShellApi {
6262
}
6363

6464
task Restore {
65-
exec { & dotnet restore -v:m .\PowerShellEditorServices.sln }
65+
exec { & dotnet restore }
6666
}
6767

6868
task Clean {
69-
exec { & dotnet clean .\PowerShellEditorServices.sln }
69+
exec { & dotnet clean }
7070
}
7171

7272
function BuildForPowerShellVersion($version) {

0 commit comments

Comments
 (0)