Skip to content

Commit

Permalink
Merge pull request #208 from gaelj/update-nugets
Browse files Browse the repository at this point in the history
Update nugets
  • Loading branch information
gaelj authored Dec 11, 2024
2 parents 00d1656 + 59f7a04 commit 95db142
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: 🛠️ Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: 📥 Restore dependencies
run: dotnet restore $SOLUTION
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/depoloy-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: 🛠️ Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: 📥 Restore dependencies
run: dotnet restore $SOLUTION
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Examples.BlazorServer/bin/Debug/net8.0/Examples.BlazorServer.dll",
"program": "${workspaceFolder}/Examples.BlazorServer/bin/Debug/net9.0/Examples.BlazorServer.dll",
"args": [],
"cwd": "${workspaceFolder}/Examples.BlazorServer",
"stopAtEntry": false,
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.9.1 - 2024-12-11

### 🐛 Fix a bug

- Fix CI with dotnet 9

## 0.9.0 - 2024-12-11

No change - new release to run the CI again after disabling CodeQL which fails with net9.0
Expand Down
2 changes: 1 addition & 1 deletion CodeMirror6/CodeMirror6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>GaelJ.BlazorCodeMirror6</AssemblyName>
<IsPackable>true</IsPackable>
<PackageId>GaelJ.BlazorCodeMirror6</PackageId>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion Examples.BlazorServer/Examples.BlazorServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="4.13.0" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.BlazorWasm/Examples.BlazorWasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser-wasm" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.Common/Examples.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
4 changes: 3 additions & 1 deletion NEW_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
No change - new release to run the CI again after disabling CodeQL which fails with net9.0
### 🐛 Fix a bug

- Fix CI with dotnet 9

0 comments on commit 95db142

Please sign in to comment.