Skip to content

Commit 8576f96

Browse files
authored
Merge pull request #849 from Particular/add-net6-support-63
Add support for .NET 6
2 parents e2e0dc0 + b8c44b8 commit 8576f96

File tree

45 files changed

+124
-1762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+124
-1762
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/setup-dotnet@v1.9.0
4747
with:
4848
dotnet-version: |
49-
5.0.x
49+
6.0.x
5050
3.1.x
5151
- name: Build
5252
run: dotnet build src --configuration Release

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup .NET SDK
2424
uses: actions/setup-dotnet@v1.9.0
2525
with:
26-
dotnet-version: 5.0.x
26+
dotnet-version: 6.0.x
2727
- name: Build
2828
run: dotnet build src --configuration Release
2929
- name: Install NuGetKeyVaultSignTool

src/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
PromotedSqlScripts/
2-
Integration/Directory.Build.props

src/AcceptanceTestHelper/AcceptanceTestHelper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="NServiceBus" Version="[7.4.1,)" />
16+
<PackageReference Include="NServiceBus" Version="7.6.0" />
1717
</ItemGroup>
1818

1919
</Project>
Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
<ToolCommandName>sql-persistence</ToolCommandName>
77
<PackAsTool>True</PackAsTool>
8-
<Description>.NET Core global tool to generate scripts for NServiceBus Sql persistence</Description>
8+
<Description>.NET tool for generating deployment scripts for the NServiceBus.Persistence.Sql package</Description>
99
<GenerateDocumentationFile>false</GenerateDocumentationFile>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
14-
<PackageReference Include="Particular.Packaging" Version="1.2.1" PrivateAssets="All" />
13+
<ProjectReference Include="..\ScriptBuilder\ScriptBuilder.csproj" />
1514
</ItemGroup>
1615

1716
<ItemGroup>
18-
<ProjectReference Include="..\ScriptBuilder\ScriptBuilder.csproj" />
17+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
18+
<PackageReference Include="Particular.Packaging" Version="1.4.0" PrivateAssets="All" />
1919
</ItemGroup>
20-
21-
<PropertyGroup>
22-
<PackageId>NServiceBus.Persistence.Sql.CommandLine</PackageId>
23-
<Description>Dotnet tool for generating deployment scripts for the NServiceBus.Persistence.Sql package</Description>
24-
</PropertyGroup>
2520

2621
</Project>

src/Integration/Directory.Build.targets

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/Integration/Integration.sln

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)