Skip to content

Commit

Permalink
Bumping to .net 9
Browse files Browse the repository at this point in the history
  • Loading branch information
renemadsen committed Dec 30, 2024
1 parent 59113c5 commit 9e0faf8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 8.0
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand All @@ -24,10 +24,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 8.0
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: |
dotnet nuget locals all --clear
Expand All @@ -41,10 +41,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 8.0
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Install dependencies
run: dotnet restore
- name: Get the version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 8.0
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Setup .NET 8.0
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: |
dotnet nuget locals all --clear
Expand Down
8 changes: 4 additions & 4 deletions Rebus.CastleWindsor.Tests/Rebus.CastleWindsor.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Rebus.CastleWindsor.Tests</RootNamespace>
<AssemblyName>Rebus.CastleWindsor.Tests</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Authors>mookid8000</Authors>
<PackageLicenseUrl>https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE.md</PackageLicenseUrl>
Expand All @@ -16,9 +16,9 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Rebus.CastleWindsor\Rebus.CastleWindsor.csproj" />
<PackageReference Include="microsoft.net.test.sdk" Version="17.10.0" />
<PackageReference Include="Microting.Rebus" Version="8.0.5" />
<PackageReference Include="Microting.Rebus.Tests.Contracts" Version="8.0.5" />
<PackageReference Include="microsoft.net.test.sdk" Version="17.12.0" />
<PackageReference Include="Microting.Rebus" Version="9.0.0" />
<PackageReference Include="Microting.Rebus.Tests.Contracts" Version="9.0.0" />
<PackageReference Include="nunit" Version="3.14.0" />
<PackageReference Include="nunit3testadapter" Version="4.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions Rebus.CastleWindsor/Rebus.CastleWindsor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Rebus</RootNamespace>
<AssemblyName>Rebus.CastleWindsor</AssemblyName>
<PackageId>Microting.Rebus.Castle.Windsor</PackageId>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Authors>mookid8000</Authors>
<PackageLicenseUrl></PackageLicenseUrl>
Expand Down Expand Up @@ -42,7 +42,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Castle.Windsor" Version="6.0.0" />
<PackageReference Include="Microting.Rebus" Version="8.0.5" />
<PackageReference Include="Microting.Rebus" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\artwork\little_rebusbus2_copy-500x500.png">
Expand Down

0 comments on commit 9e0faf8

Please sign in to comment.