Skip to content

Commit 34b9cb3

Browse files
authored
DYN-8977 Fix git actions (#16260)
1 parent 4da62ba commit 34b9cb3

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/dynamo_bin_diff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
uses: microsoft/setup-msbuild@v2
2828
- name: Install dependencies for windows runtime
2929
run: |
30-
dotnet restore ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release --runtime=win-x64 -p:DotNet=net8.0
30+
dotnet restore ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release --runtime=win-x64
3131
- name: Build Dynamo with MSBuild
3232
run: |
3333
Write-Output "***Continue with the build, Good luck developer!***"
34-
msbuild ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release /p:DotNet=net8.0
34+
msbuild ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release
3535
- name: Look for DynamoCLI.exe
3636
run: |
3737
Write-Output "***Locating DynamoCLI.exe!***"

src/global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.410"
4+
}
5+
}

test/global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.410"
4+
}
5+
}

0 commit comments

Comments
 (0)