Skip to content

Commit

Permalink
SolutionDir应该'\'结尾
Browse files Browse the repository at this point in the history
  • Loading branch information
mingkuang-Chuyu committed Jul 8, 2021
1 parent 446947e commit 9d0964b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build&Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ jobs:
$Env:PROCDUMP_PATH="$Env:GITHUB_WORKSPACE\Bin"
# 编译单元测试项目
&msbuild src\YY-Thunks.UnitTest\YY-Thunks.UnitTest.vcxproj "-p:Configuration=Release;Platform=Win32;SolutionDir=$Env:GITHUB_WORKSPACE\src"
&msbuild src\YY-Thunks.UnitTest\YY-Thunks.UnitTest.vcxproj "-p:Configuration=Release;Platform=Win32;SolutionDir=$Env:GITHUB_WORKSPACE\src\\"
if($lastexitcode -ne 0)
{
throw "YY-Thunks.UnitTest.vcxproj编译失败!退出代码:$lastexitcode"
}
&msbuild src\YY-Thunks.UnitTest\YY-Thunks.UnitTest.vcxproj "-p:Configuration=Release;Platform=x64;SolutionDir=$Env:GITHUB_WORKSPACE\src"
&msbuild src\YY-Thunks.UnitTest\YY-Thunks.UnitTest.vcxproj "-p:Configuration=Release;Platform=x64;SolutionDir=$Env:GITHUB_WORKSPACE\src\\"
if($lastexitcode -ne 0)
{
throw "YY-Thunks.UnitTest.vcxproj编译失败!退出代码:$lastexitcode"
Expand Down

0 comments on commit 9d0964b

Please sign in to comment.