initial commit
This commit is contained in:
commit
d701598350
67 changed files with 9351 additions and 0 deletions
25
Outnumbered/outnumbered.csproj
Normal file
25
Outnumbered/outnumbered.csproj
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<AssemblyName>outnumbered</AssemblyName>
|
||||
<RootNamespace>Outnumbered</RootNamespace>
|
||||
<WithSqlite Condition="'$(WithSqlite)'==''">true</WithSqlite>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(WithSqlite)'=='true'">
|
||||
<DefineConstants>$(DefineConstants);WITH_SQLITE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.369" ExcludeAssets="runtime" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" ExcludeAssets="runtime" />
|
||||
<PackageReference Include="Dapper" Version="2.1.72" />
|
||||
<PackageReference Include="Npgsql" Version="10.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(WithSqlite)'=='true'">
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.7" />
|
||||
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.11" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue