Skip to content

Commit

Permalink
Merge pull request #40 from dragonfruitnetwork/net7-update
Browse files Browse the repository at this point in the history
.NET 7 update
  • Loading branch information
aspriddell authored Nov 9, 2022
2 parents 7751be4 + 93062c6 commit 9395548
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/codequality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install .NET 6.0.x
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
dotnet-version: |
6.0.x
7.0.x
- name: Restore Tools
run: dotnet tool restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup .NET 6
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
dotnet-version: '7.0.x'

- name: Restore NuGet Packages
run: dotnet restore
Expand Down
14 changes: 7 additions & 7 deletions DragonFruit.Sakura/DragonFruit.Sakura.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DragonFruit.Data" Version="2022.916.0" />
<PackageReference Include="DragonFruit.Data.Serializers.SystemJson" Version="2022.916.0" />
<PackageReference Include="Markdig" Version="0.30.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.9" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.0.15" />
<PackageReference Include="Sentry.Serilog" Version="3.21.0" />
<PackageReference Include="Markdig" Version="0.30.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.0" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.0.18" />
<PackageReference Include="Sentry.Serilog" Version="3.23.1" />
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
<PackageReference Include="Serilog.Sinks.BrowserConsole" Version="1.0.0" />
Expand Down

0 comments on commit 9395548

Please sign in to comment.