Skip to content

Commit

Permalink
Updates for .NET 8 (#6981)
Browse files Browse the repository at this point in the history
Co-authored-by: internalautomation[bot] <85681268+internalautomation[bot]@users.noreply.github.com>
  • Loading branch information
particularbot and internalautomation[bot] committed Mar 20, 2024
1 parent f0ae530 commit 93a90e8
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 14 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -25,16 +25,13 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: |
8.0.x
7.0.x
6.0.x
dotnet-version: 8.0.x
- name: Build
run: dotnet build src --configuration Release
- name: Upload packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Setup .NET SDK
Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
</PropertyGroup>

Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<DefineConstants>$(DefineConstants);ROSLYN3</DefineConstants>
</PropertyGroup>

Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<DefineConstants>$(DefineConstants);ROSLYN4</DefineConstants>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/NServiceBus.Core.Tests/NServiceBus.Core.Tests.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
<LangVersion>10.0</LangVersion>
Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
</PropertyGroup>

Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
<LangVersion>10.0</LangVersion>
Expand Down
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net481;net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 93a90e8

Please sign in to comment.