Skip to content

Commit d9b7efa

Browse files
authored
DYN-9772 Update dotnet sdk (DynamoDS#16662)
1 parent 1fb5797 commit d9b7efa

File tree

5 files changed

+23
-31
lines changed

5 files changed

+23
-31
lines changed

.github/workflows/build_dynamo_all.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ jobs:
1919
- name: Setup dotnet
2020
uses: actions/setup-dotnet@v5
2121
with:
22-
dotnet-version: |
23-
8.0.x
24-
10.0.100-preview.5.25277.114
22+
dotnet-version: 8.0.x
23+
global-json-file: Dynamo/global.json
2524
- name: Disable problem matcher
2625
run: Write-Output "::remove-matcher owner=csc::"
2726
- name: Setup msbuild

.github/workflows/build_dynamo_core.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ jobs:
1919
- name: Setup dotnet
2020
uses: actions/setup-dotnet@v5
2121
with:
22-
dotnet-version: |
23-
8.0.x
24-
10.0.100-preview.5.25277.114
22+
dotnet-version: 8.0.x
23+
global-json-file: Dynamo/global.json
2524
- name: Disable problem matcher
2625
run: Write-Output "::remove-matcher owner=csc::"
2726
- name: Setup msbuild
@@ -50,9 +49,8 @@ jobs:
5049
- name: Setup dotnet
5150
uses: actions/setup-dotnet@v5
5251
with:
53-
dotnet-version: |
54-
8.0.x
55-
10.0.100-preview.5.25277.114
52+
dotnet-version: 8.0.x
53+
global-json-file: Dynamo/global.json
5654
- name: Disable problem matcher
5755
run: Write-Output "::remove-matcher owner=csc::"
5856
- name: Setup msbuild
@@ -80,9 +78,8 @@ jobs:
8078
- name: Setup dotnet
8179
uses: actions/setup-dotnet@v5
8280
with:
83-
dotnet-version: |
84-
8.0.x
85-
10.0.100-preview.5.25277.114
81+
dotnet-version: 8.0.x
82+
global-json-file: Dynamo/global.json
8683
- name: Disable problem matcher
8784
run: echo "::remove-matcher owner=csc::"
8885
- name: Install dependencies for linux runtime

.github/workflows/dynamo_bin_diff.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ jobs:
2020
- name: Setup dotnet
2121
uses: actions/setup-dotnet@v5
2222
with:
23-
dotnet-version: |
24-
8.0.x
25-
10.0.100-preview.5.25277.114
23+
dotnet-version: 8.0.x
24+
global-json-file: Dynamo/global.json
2625
- name: Disable problem matcher
2726
run: Write-Output "::remove-matcher owner=csc::"
2827
- name: Setup msbuild
@@ -59,9 +58,8 @@ jobs:
5958
- name: Setup dotnet
6059
uses: actions/setup-dotnet@v5
6160
with:
62-
dotnet-version: |
63-
8.0.x
64-
10.0.100-preview.5.25277.114
61+
dotnet-version: 8.0.x
62+
global-json-file: master/global.json
6563
- name: Disable problem matcher
6664
run: Write-Output "::remove-matcher owner=csc::"
6765
- name: Setup msbuild

README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,28 @@ Looking to learn or download Dynamo? Check out [dynamobim.org](https://dynamobim
2020

2121
## Develop
2222

23-
### Create a Node Library for Dynamo
24-
25-
If you're interested in developing a Node library for Dynamo, the easiest place to start is by browsing the [DynamoSamples](https://github.com/DynamoDS/DynamoSamples).
26-
These samples use the [Dynamo NuGet packages](https://www.nuget.org/packages?q=DynamoVisualProgramming) which can be installed using the NuGet package manager in Visual Studio.
27-
28-
[Documentation of the Dynamo API via Fuget.org](https://www.fuget.org/packages/DynamoVisualProgramming.Core/) with a searchable index of public API calls for core functionality in the dynamo nuget packages. *WIP*.
29-
30-
The [API Changes](https://github.com/DynamoDS/Dynamo/wiki/API-Changes) document explains changes made to the Dynamo API with every version.
31-
32-
You can learn more about developing libraries for Dynamo on the [Dynamo wiki](https://github.com/DynamoDS/Dynamo/wiki/Zero-Touch-Plugin-Development) or the [Developer page](https://developer.dynamobim.org/).
33-
3423
### Build Dynamo from Source
3524

3625
You will need the following to build the latest Dynamo on Windows:
3726

3827
- [Microsoft Visual Studio 2022](https://visualstudio.microsoft.com/downloads/) (any edition)
39-
- [Microsoft .NET Framework 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) (included with Visual Studio 2022)
28+
- [Microsoft .NET 10 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
4029
- [Node.js LTS](https://nodejs.org/en/download/) and npm
4130

4231
If you are working on legacy branches, you may need to install legacy .NET Framework versions through Visual Studio `Tools > Get Tools and Features...` or downloading from [the archive here](https://www.microsoft.com/net/download/archives).
4332

4433
The Dynamo user interface is Windows-only, but the Dynamo engine can be built for other platforms. [Directions for building Dynamo on Linux or OS X can be found here](https://github.com/DynamoDS/Dynamo/wiki/Dynamo-on-Linux,-Mac).
4534
Find more about how to build Dynamo at our [wiki](https://github.com/DynamoDS/Dynamo/wiki) and [Dynamo Developer Resources](https://developer.dynamobim.org/).
4635

36+
### Create a Node Library for Dynamo
37+
38+
If you're interested in developing a Node library for Dynamo, the easiest place to start is by browsing the [DynamoSamples](https://github.com/DynamoDS/DynamoSamples).
39+
These samples use the [Dynamo NuGet packages](https://www.nuget.org/packages?q=DynamoVisualProgramming) which can be installed using the NuGet package manager in Visual Studio.
40+
41+
The [API Changes](https://github.com/DynamoDS/Dynamo/wiki/API-Changes) document explains changes made to the Dynamo API with every version.
42+
43+
You can learn more about developing libraries for Dynamo on the [Dynamo wiki](https://github.com/DynamoDS/Dynamo/wiki/Zero-Touch-Plugin-Development) or the [Developer page](https://developer.dynamobim.org/).
44+
4745
## Contribute
4846

4947
Dynamo is an open source project and would be nothing without its community.

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"projects": ["src", "test"],
33
"sdk": {
4-
"version": "10.0.100-preview.5.25277.114",
4+
"version": "10.0.100-rc.2.25502.107",
55
"rollForward": "disable"
66
}
77
}

0 commit comments

Comments
 (0)