Skip to content

Commit

Permalink
[deploy] updated to net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanloerwald committed Nov 16, 2023
1 parent 374e989 commit bbc65da
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-nuget.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Deploy nupkg

env:
dotnet_version: 6.0.x
dotnet_version: 8.0.x
project_name: "Grid/Blazor.Grids.csproj"

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: .NET Core deploy to GitHub pages

env:
dotnet_version: 6.0.x
dotnet_version: 8.0.x
project_name: "TestProject_ClientSide/TestProject_ClientSide.csproj"
base_href: /Blazor.Grids/

Expand Down
6 changes: 3 additions & 3 deletions Grid/Blazor.Grids.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<Import Project="package.csproj" Condition="Exists('package.csproj')" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Excubo.Blazor.Grids</PackageId>
<RootNamespace>Excubo.Blazor.Grids</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Excubo.Generators.Blazor" Version="1.14.13" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
Expand Down
2 changes: 1 addition & 1 deletion Grid/package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!--PackageId, Version-->
<PropertyGroup>
<PackageId>Excubo.Blazor.Grids</PackageId>
<Version>3.1.24</Version>
<Version>3.1.26</Version>
</PropertyGroup>
<!--Self Include-->
<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions TestProject_ClientSide/TestProject_ClientSide.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.24" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestProject_Components\TestProject_Components.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion TestProject_Components/TestProject_Components.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Grid\Blazor.Grids.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion TestProject_ServerSide/TestProject_ServerSide.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\TestProject_Components\TestProject_Components.csproj" />
Expand Down

0 comments on commit bbc65da

Please sign in to comment.