- CounterStrikeSharp 146
This commit is contained in:
Dawid Bepierszcz
2024-01-15 02:39:20 +01:00
parent 2d41a62b52
commit 8c4cb49d02
2 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ jobs:
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 7.0.x dotnet-version: 8.0.x
- name: Restore - name: Restore
run: dotnet restore run: dotnet restore
- name: Build - name: Build
@@ -42,7 +42,7 @@ jobs:
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 7.0.x dotnet-version: 8.0.x
- name: Restore - name: Restore
run: dotnet restore run: dotnet restore
- name: Build - name: Build

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net7.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<RootNamespace>CS2_SimpleAdmin</RootNamespace> <RootNamespace>CS2_SimpleAdmin</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
@@ -9,7 +9,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.142" /> <PackageReference Include="CounterStrikeSharp.API" Version="1.0.146" />
<PackageReference Include="Dapper" Version="*" /> <PackageReference Include="Dapper" Version="*" />
<PackageReference Include="MySqlConnector" Version="*" /> <PackageReference Include="MySqlConnector" Version="*" />
</ItemGroup> </ItemGroup>