mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 00:16:36 -08:00
Co-authored-by: Frederik St-Onge <frederik.stonge@gmail.com> Co-authored-by: B3none <24966460+B3none@users.noreply.github.com>
17 lines
677 B
XML
17 lines
677 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\managed\CounterStrikeSharp.API\CounterStrikeSharp.API.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.1.24" />
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.14" />
|
|
</ItemGroup>
|
|
</Project>
|