25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<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>
|