Skip to content

Commit

Permalink
Update .NET version to 8.0 for Custom Elements publish
Browse files Browse the repository at this point in the history
Changed the .NET target framework for the Custom Elements project from 7.0 to 8.0 in the GitHub workflow. This ensures compatibility with the latest runtime features and improvements.
  • Loading branch information
sfmskywalker committed Nov 5, 2024
1 parent 4de4bcd commit 5dca802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Pack nuget packages
run: dotnet pack Elsa.Studio.sln --configuration Release /p:Version=${VERSION} /p:PackageOutputPath=$(pwd)/packages/nuget
- name: Publish Custom Elements packages # This generates client assets that we then package as an NPM package.
run: dotnet publish ./src/hosts/Elsa.Studio.Host.CustomElements --configuration Release -o ./packages/wasm /p:Version=${VERSION} -f net7.0
run: dotnet publish ./src/hosts/Elsa.Studio.Host.CustomElements --configuration Release -o ./packages/wasm /p:Version=${VERSION} -f net8.0

# Pack npm wasm package
- name: Pack elsa-studio-wasm npm package
Expand Down

0 comments on commit 5dca802

Please sign in to comment.