Skip to content

Commit

Permalink
update projects to .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Nov 18, 2023
1 parent 379458b commit 1768bc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Worker">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
Expand All @@ -14,17 +14,17 @@
<PackageReference Include="DnsClient" Version="1.7.0"/>
<PackageReference Include="DragonFruit.Data.Serializers.SystemJson" Version="2023.727.0"/>
<PackageReference Include="DragonFruit.OnionFruit.Web.Worker.Native" Version="0.2.0"/>
<PackageReference Include="Google.Protobuf" Version="3.25.0" />
<PackageReference Include="Google.Protobuf" Version="3.25.1" />
<PackageReference Include="Grpc.Tools" Version="2.59.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="IPAddressRange" Version="6.0.0"/>
<PackageReference Include="JetBrains.Annotations" Version="2023.2.0"/>
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="libloc.Access" Version="2023.1024.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1"/>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Redis.OM" Version="0.5.4" />
<PackageReference Include="Sentry.Extensions.Logging" Version="3.40.1" />
<PackageReference Include="Sentry.Extensions.Logging" Version="3.41.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions DragonFruit.OnionFruit.Web/DragonFruit.OnionFruit.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

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

<ItemGroup>
<PackageReference Include="JsonPath.Net" Version="0.6.7" />
<PackageReference Include="libloc.Access" Version="2023.1024.1" />
<PackageReference Include="System.Text.Json" Version="8.0.0-rc.2.23479.6" />
<PackageReference Include="System.Text.Json" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 1768bc0

Please sign in to comment.