Browse Source

Replace string concatenation with Path.Combine

pull/190/head
Charles Lowell 8 years ago
parent
commit
1efa555825
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      cli-windows/build-bits-simple.ps1

+ 1
- 2
cli-windows/build-bits-simple.ps1 View File

@ -11,8 +11,7 @@ if ([string]::IsNullOrEmpty($rootPath)) {
}
Write-Host "Root path used is $rootPath" -ForegroundColor Yellow
$SolutionFilePath = $rootPath + "eShopOnContainers-ServicesAndWebApps.sln"
$SolutionFilePath = [IO.Path]::Combine($rootPath, "eShopOnContainers-ServicesAndWebApps.sln")
dotnet restore $SolutionFilePath


Loading…
Cancel
Save