Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/net8.0 #1657

Merged
merged 2 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions .build/Build.CI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

[GitHubActionsSteps(
"ci-ignore",
// GitHubActionsImage.WindowsLatest,
GitHubActionsImage.UbuntuLatest,
AutoGenerate = false,
On = new[] { RocketSurgeonGitHubActionsTrigger.Push },
Expand All @@ -19,8 +18,6 @@
)]
[GitHubActionsSteps(
"ci",
// GitHubActionsImage.MacOsLatest,
// GitHubActionsImage.WindowsLatest,
GitHubActionsImage.UbuntuLatest,
AutoGenerate = false,
On = new[] { RocketSurgeonGitHubActionsTrigger.Push },
Expand All @@ -46,11 +43,11 @@
[UploadLogs]
[TitleEvents]
[ContinuousIntegrationConventions]
public partial class Pipeline

Check warning on line 46 in .build/Build.CI.cs

View workflow job for this annotation

GitHub Actions / build

The type name Pipeline conflicts in whole or in part with the namespace name 'Azure.Core.Pipeline'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)
{
public static RocketSurgeonGitHubActionsConfiguration CiIgnoreMiddleware(RocketSurgeonGitHubActionsConfiguration configuration)
{
( (RocketSurgeonsGithubActionsJob)configuration.Jobs[0] ).Steps = new List<GitHubActionsStep>
((RocketSurgeonsGithubActionsJob)configuration.Jobs[0]).Steps = new List<GitHubActionsStep>
{
new RunStep("N/A")
{
Expand All @@ -69,21 +66,12 @@
.Jobs.OfType<RocketSurgeonsGithubActionsJob>()
.First(z => z.Name.Equals("build", StringComparison.OrdinalIgnoreCase));
job
.UseDotNetSdks("6.0", "7.0")
.UseDotNetSdks("6.0", "8.0")
.AddNuGetCache()
// .ConfigureForGitVersion()
.ConfigureStep<CheckoutStep>(step => step.FetchDepth = 0)
.PublishLogs<Pipeline>()
.FailFast = false;

// job.Steps.Insert(
// GetCheckStepIndex(job)+1, new RunStep("Create branch for tag (gitversion)")
// {
// If = "(github.ref_type == 'tag')",
// Run = "git checkout -b ${{ github.ref_name }}"
// }
// );

return configuration;
}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ jobs:
uses: actions/[email protected]
with:
dotnet-version: '6.0.x'
- name: 🔨 Use .NET Core 7.0 SDK
- name: 🔨 Use .NET Core 8.0 SDK
uses: actions/[email protected]
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
- name: 🎁 dotnet tool restore
run: |
dotnet tool restore
Expand Down
42 changes: 21 additions & 21 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@
<PackageVersion Include="StrawberryShake.Blazor" Version="14.0.0-p.9" />
<PackageVersion Include="StrawberryShake.Razor" Version="14.0.0-p.9" />
<PackageVersion Include="MediatR" Version="12.1.1" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="7.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" />
<PackageVersion Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageVersion Include="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.13" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="7.0.13" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="7.0.13" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" Version="7.0.13" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="7.0.1" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="8.0.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" />
<PackageVersion Include="Microsoft.Reactive.Testing" Version="6.0.0" />
Expand Down Expand Up @@ -100,7 +100,7 @@
<PackageVersion Include="Rocket.Surgery.WebAssembly.Hosting" Version="12.9.0" />
<PackageVersion Include="Scrutor" Version="4.2.2" />
<PackageVersion Include="Serilog" Version="3.1.1" />
<PackageVersion Include="Serilog.AspNetCore" Version="7.0.0" />
<PackageVersion Include="Serilog.AspNetCore" Version="8.0.0" />
<PackageVersion Include="Serilog.Enrichers.Demystify" Version="1.0.0-dev-00019" />
<PackageVersion Include="Serilog.Exceptions" Version="8.4.0" />
<PackageVersion Include="Serilog.Enrichers.Environment" Version="2.3.0" />
Expand All @@ -117,16 +117,16 @@
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageVersion Include="Swashbuckle.AspNetCore.ReDoc" Version="6.5.0" />
<PackageVersion Include="SimplerSoftware.EntityFrameworkCore.SqlServer.NodaTime" Version="6.0.1" />
<PackageVersion Include="System.Collections.Immutable" Version="7.0.0" />
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0" />
<PackageVersion Include="System.Interactive" Version="6.0.1" />
<PackageVersion Include="System.Interactive.Async" Version="6.0.1" />
<PackageVersion Include="System.Reactive" Version="6.0.0" />
<PackageVersion Include="System.Reactive.Observable.Aliases" Version="6.0.0" />
<PackageVersion Include="System.Text.Json" Version="7.0.3" />
<PackageVersion Include="System.Net.Http.Json" Version="7.0.1" />
<PackageVersion Include="System.Net.Http.Json" Version="8.0.0" />
<PackageVersion Include="NSwag.ApiDescription.Client" Version="13.20.0" />
<PackageVersion Include="Microsoft.Extensions.ApiDescription.Client" Version="7.0.13" />
<PackageVersion Include="Microsoft.Extensions.ApiDescription.Server" Version="7.0.13" />
<PackageVersion Include="Microsoft.Extensions.ApiDescription.Client" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.ApiDescription.Server" Version="8.0.0" />
<PackageVersion Include="OpenTelemetry" Version="1.6.0" />
<PackageVersion Include="OpenTelemetry.Api" Version="1.6.0" />
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.6.0" />
Expand Down
11 changes: 11 additions & 0 deletions Directory.Packages.support.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,16 @@
<PackageVersion Update="Microsoft.AspNetCore.Components.Web" Version="6.0.24" />
<PackageVersion Update="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.24" />
<PackageVersion Update="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.24" />
<PackageVersion Update="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.13" />
<PackageVersion Update="Microsoft.EntityFrameworkCore" Version="7.0.13" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageVersion Update="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.13" />
<PackageVersion Update="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.13" />
<PackageVersion Update="Microsoft.AspNetCore.Components.Web" Version="7.0.13" />
<PackageVersion Update="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.13" />
<PackageVersion Update="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.13" />
<PackageVersion Update="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.13" />
<PackageVersion Update="Microsoft.EntityFrameworkCore" Version="7.0.13" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion sample/Sample.BlazorServer/Sample.BlazorServer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

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

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.BlazorWasm/Sample.BlazorWasm.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<OpenApiGenerateDocumentsOnBuild>true</OpenApiGenerateDocumentsOnBuild>
<IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Command/Sample.Command.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Foundation\Rocket.Surgery.LaunchPad.Foundation.csproj" />
Expand Down
10 changes: 6 additions & 4 deletions sample/Sample.Core/Domain/LaunchRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ namespace Sample.Core.Domain;
public class LaunchRecord // : ILaunchRecord
{
public LaunchRecordId Id { get; set; }
[StringLength(1000)]
public string? Partner { get; set; }
[StringLength(1000)]
public string? Payload { get; set; }
[StringLength(1000)] public string? Partner { get; set; }
[StringLength(1000)] public string? Payload { get; set; }
public long PayloadWeightKg { get; set; }
public DateTimeOffset? ActualLaunchDate { get; set; }
public DateTimeOffset ScheduledLaunchDate { get; set; }
Expand All @@ -27,7 +25,11 @@ public void Configure(EntityTypeBuilder<LaunchRecord> builder)
builder.HasKey(x => x.Id);
builder.Property(z => z.Id)
.ValueGeneratedOnAdd()
#if NET8_0_OR_GREATER
.HasValueGenerator((property, @base) => StronglyTypedIdValueGenerator.Create(LaunchRecordId.New)(property, @base.ContainingEntityType));
#else
.HasValueGenerator(StronglyTypedIdValueGenerator.Create(LaunchRecordId.New));
#endif
}
}
}
Expand Down
7 changes: 5 additions & 2 deletions sample/Sample.Core/Domain/ReadyRocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ namespace Sample.Core.Domain;
public class ReadyRocket // : IReadyRocket
{
public RocketId Id { get; set; }
[StringLength(30)]
public string SerialNumber { get; set; } = null!;
[StringLength(30)] public string SerialNumber { get; set; } = null!;
public RocketType Type { get; set; }

public IEnumerable<LaunchRecord> LaunchRecords { get; set; } = null!;
Expand All @@ -25,7 +24,11 @@ public void Configure(EntityTypeBuilder<ReadyRocket> builder)
builder.HasKey(x => x.Id);
builder.Property(z => z.Id)
.ValueGeneratedOnAdd()
#if NET8_0_OR_GREATER
.HasValueGenerator((property, @base) => StronglyTypedIdValueGenerator.Create(RocketId.New)(property, @base.ContainingEntityType));
#else
.HasValueGenerator(StronglyTypedIdValueGenerator.Create(RocketId.New));
#endif
builder.ToTable("Rockets");
}
}
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Core/Sample.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Function/Sample_Function.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions sample/Sample.Graphql/Sample.Graphql.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<AssemblyName>Sample.Graphql.Executable</AssemblyName>
</PropertyGroup>

Expand All @@ -17,7 +17,7 @@
<PackageReference Include="HotChocolate.Types.CursorPagination" />
<PackageReference Include="HotChocolate.Types.OffsetPagination" />
<PackageReference Include="HotChocolate.Types.Analyzers" />

<PackageReference Include="HotChocolate.Types.Spatial" />
<PackageReference Include="HotChocolate.Data.Spatial" />

Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Grpc/Sample.Grpc.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

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

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Pages/Sample.Pages.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\AspNetCore\Rocket.Surgery.LaunchPad.AspNetCore.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Restful.Client/Sample.Restful.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<OpenApiGenerateCodeOnBuild>true</OpenApiGenerateCodeOnBuild>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Restful/Sample.Restful.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<OpenApiGenerateDocumentsOnBuild>true</OpenApiGenerateDocumentsOnBuild>
<IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
Expand Down
2 changes: 1 addition & 1 deletion sample/Sample.Worker/Sample.Worker.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
<RootNamespace>Rocket.Surgery.LaunchPad.AspNetCore</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
<RootNamespace>Rocket.Surgery.LaunchPad.AspNetCore</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/AspNetCore/Rocket.Surgery.LaunchPad.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
<OpenApiGenerateDocumentsOnBuild>false</OpenApiGenerateDocumentsOnBuild>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
<RootNamespace>Rocket.Surgery.LaunchPad.Foundation</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion src/Foundation/Rocket.Surgery.LaunchPad.Foundation.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Grpc/Rocket.Surgery.LaunchPad.Grpc.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
<OpenApiGenerateDocuments>false</OpenApiGenerateDocuments>
Expand Down
2 changes: 1 addition & 1 deletion src/Hosting/Rocket.Surgery.LaunchPad.Hosting.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageDescription />
<PackageTags>$(PackageTags)</PackageTags>
</PropertyGroup>
Expand Down
Loading
Loading