From e06d586da7c89b270b3a6a1419f0a2660e33b5ed Mon Sep 17 00:00:00 2001 From: Sergey M Date: Mon, 20 Jan 2020 18:09:15 -0500 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b1ae51a..b63fc8e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,16 +18,16 @@ jobs: uses: warrenbuckley/Setup-Nuget@v1 - name: Restore Nuget Packages - run: nuget restore $_Solution + run: nuget restore ${_Solution} - name: Setup MSBuild.exe uses: warrenbuckley/Setup-MSBuild@v1 - name: Build Solution - run: msbuild $_Solution -verbosity:minimal -p:Configuration=$_Config -p:DeployExtension=false -p:AzureVsixVersion=true + run: msbuild ${_Solution} -verbosity:minimal -p:Configuration=${_Config} -p:DeployExtension=false -p:AzureVsixVersion=true - name: Setup VS2019 uses: richardo2016/Setup-MSBuild@releases/clangcl_x_2017/v1 - name: Run Tests - uses: $VSINSTALLDIR\Common7\IDE\Extensions\TestPlatform\vstest.console.exe DPackRx.Tests/bin/$_Config/DPackRx.Tests.dll + uses: ${VSINSTALLDIR}\Common7\IDE\Extensions\TestPlatform\vstest.console.exe DPackRx.Tests/bin/${_Config}/DPackRx.Tests.dll