From 7b04228513a82dca840ee5f9fc185503c9ea8109 Mon Sep 17 00:00:00 2001 From: Michael Kirschner Date: Tue, 11 Jul 2023 14:55:02 -0400 Subject: [PATCH] switch from net6 to net6all for bin diff (#14152) * switch from net6 to net6all * Update dynamoBinDiff.yml --- .github/workflows/dynamoBinDiff.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dynamoBinDiff.yml b/.github/workflows/dynamoBinDiff.yml index f6a1fe64ff3..325b97d26d6 100644 --- a/.github/workflows/dynamoBinDiff.yml +++ b/.github/workflows/dynamoBinDiff.yml @@ -103,12 +103,12 @@ jobs: - name: Disable problem matcher run: echo "::remove-matcher owner=csc::" - name: Install dependencies for windows runtime - run: dotnet restore $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\DynamoCore.net6.sln -p:Platform=NET60_Windows --runtime=win10-x64 + run: dotnet restore $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\Dynamo.All.Net6.sln -p:Platform=NET60_Windows --runtime=win10-x64 - name: Build Dynamo current branch with MSBuild for NET60-Windows run: | echo "***Continue with the build, Good luck developer!***" cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" - .\MSBuild.exe $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\DynamoCore.net6.sln /p:Configuration=Release /p:Platform=NET60_Windows + .\MSBuild.exe $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\Dynamo.All.Net6.sln /p:Configuration=Release /p:Platform=NET60_Windows - name: Navigate to Dynamo DotNet6 Windows Folder run: | cd "$Env:GITHUB_WORKSPACE\net60_Win_Dynamo\bin\NET60_Windows\Release" @@ -137,12 +137,12 @@ jobs: - name: Disable problem matcher run: echo "::remove-matcher owner=csc::" - name: Install dependencies for windows runtime - run: dotnet restore $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\DynamoCore.net6.sln -p:Platform=NET60_Windows --runtime=win10-x64 + run: dotnet restore $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\Dynamo.All.Net6.sln -p:Platform=NET60_Windows --runtime=win10-x64 - name: Build Dynamo master branch with MSBuild for NET60-Windows run: | echo "***Continue with the build, Good luck developer!***" cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" - .\MSBuild.exe $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\DynamoCore.net6.sln /p:Configuration=Release /p:Platform=NET60_Windows + .\MSBuild.exe $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\Dynamo.All.Net6.sln /p:Configuration=Release /p:Platform=NET60_Windows - name: Navigate to Dynamo DotNet6 Windows Folder run: | cd "$Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\bin\NET60_Windows\Release"