-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.NET 9 update to target framework and package versions
Updated all projects to target net9.0. Updated package versions: - Api.csproj: Microsoft.AspNetCore.OpenApi to 9.0.0, Swashbuckle.AspNetCore to 7.0.0 - AppHost.csproj: Aspire.AppHost.Sdk to 9.0.0 - MyWeatherHub.csproj: Microsoft.AspNetCore.Components.QuickGrid to 9.0.0, Microsoft.Extensions.ApiDescription.Client to 9.0.0 - ServiceDefaults.csproj: OpenTelemetry.Exporter.OpenTelemetryProtocol to 1.10.0, OpenTelemetry.Extensions.Hosting to 1.10.0
- Loading branch information
1 parent
186a052
commit 0bb142d
Showing
4 changed files
with
11 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.Extensions.ApiDescription.Client" Version="8.0.8"> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.ApiDescription.Client" Version="9.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\ServiceDefaults\ServiceDefaults.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters