Skip to content

Commit bd9e15c

Browse files
Update dependency Particular.PlatformSample.ServiceControl to 6.10.0 (#588)
* Update dependency Particular.PlatformSample.ServiceControl to 6.10.0 * Update global.json * Update workflows * Update TFM to net10.0 --------- Co-authored-by: dependencyupdates[bot] <218638057+dependencyupdates[bot]@users.noreply.github.com> Co-authored-by: Brandon Ording <bording@gmail.com>
1 parent 421266e commit bd9e15c

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup .NET SDK
3232
uses: actions/setup-dotnet@v5.1.0
3333
with:
34-
dotnet-version: 8.0.x
34+
global-json-file: global.json
3535
- name: Build
3636
run: dotnet build src --configuration Release
3737
- name: Upload packages

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET SDK
2121
uses: actions/setup-dotnet@v5.1.0
2222
with:
23-
dotnet-version: 8.0.x
23+
global-json-file: global.json
2424
- name: Build
2525
run: dotnet build src --configuration Release
2626
- name: Sign NuGet packages

global.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"sdk": {
3-
"version": "8.0.400",
3+
"version": "10.0.0",
4+
"allowPrerelease": false,
45
"rollForward": "latestFeature"
56
}
67
}

src/Particular.PlatformSample.Tests/Particular.PlatformSample.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
77
<NoWarn>$(NoWarn);CS8002</NoWarn>

src/Particular.PlatformSample/Particular.PlatformSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>..\NServiceBus.snk</AssemblyOriginatorKeyFile>
77
<Description>A package containing the Particular Service Platform for use in samples and tutorials</Description>
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Particular.Packaging" Version="4.5.0" PrivateAssets="All" />
13-
<PackageReference Include="Particular.PlatformSample.ServiceControl" Version="6.9.1" PrivateAssets="None" AutomaticVersionRange="false" />
13+
<PackageReference Include="Particular.PlatformSample.ServiceControl" Version="6.10.0" PrivateAssets="None" AutomaticVersionRange="false" />
1414
<PackageReference Include="Particular.PlatformSample.ServicePulse" Version="2.4.1" PrivateAssets="None" AutomaticVersionRange="false" />
1515
</ItemGroup>
1616

src/SmokeTest/SmokeTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)