Skip to content

Commit

Permalink
Ensure csproj is using dotnet 8
Browse files Browse the repository at this point in the history
  • Loading branch information
B3none committed Sep 2, 2024
1 parent 9495273 commit 01b2825
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion InstadefusePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace InstadefusePlugin;

[MinimumApiVersion(225)]
[MinimumApiVersion(220)]
public class InstadefusePlugin : BasePlugin
{
private const string Version = "2.0.0";
Expand Down
4 changes: 2 additions & 2 deletions InstadefusePlugin.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.198" />
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.220" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 01b2825

Please sign in to comment.