Skip to content

Commit

Permalink
.net 8 update
Browse files Browse the repository at this point in the history
  • Loading branch information
michielpost committed Nov 15, 2023
1 parent 13c6d6a commit 537a0b5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ShareServer/ShareServer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SkyDocs.Blazor/ShareService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public string GetShareUrl(DocumentSummary sum, bool readOnly)
var pubString = BitConverter.ToString(sum.PublicKey).Replace("-", "");
var privString = sum.PrivateKey != null ? BitConverter.ToString(sum.PrivateKey).Replace("-", "") : null;

var query = new Dictionary<string, string> {
var query = new Dictionary<string, string?> {
{ "id", sum.Id.ToString() },
{ "pub", pubString },
{ "c", sum.ContentSeed },
Expand Down
17 changes: 9 additions & 8 deletions SkyDocs.Blazor/SkyDocs.Blazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable;CS8600;CS8601;CS8602;CS8603;CS8625;CS8613;CS8610</WarningsAsErrors>
<VersionPrefix>3.0.0</VersionPrefix>
Expand All @@ -19,15 +19,16 @@
<PackageReference Include="Blazored.LocalStorage" Version="4.4.0" />
<PackageReference Include="Dfinity.Blazor" Version="0.2.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.54" />
<PackageReference Include="MetaMask.Blazor" Version="1.9.1" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="MetaMask.Blazor" Version="1.9.2" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Nethereum.ABI" Version="4.17.1" />
<PackageReference Include="Radzen.Blazor" Version="4.19.0" />
<PackageReference Include="Radzen.Blazor" Version="4.21.1" />
<PackageReference Include="SiaSkynet" Version="3.6.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.13" PrivateAssets="all" />
<PackageReference Include="System.Net.Http.Json" Version="7.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
<PackageReference Include="TheGraph" Version="0.9.0" />
</ItemGroup>

Expand Down

0 comments on commit 537a0b5

Please sign in to comment.