mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
update cookie to last 3 months add configuration option to limit # of rss feed items prevent database tracking of bots if ignore bots requested add last map and last server played to profile
52 lines
2.6 KiB
XML
52 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
|
<Version>2.2.0</Version>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Migrations\20181126232438_AddEndpointToEFServer.cs" />
|
|
<Compile Remove="Migrations\20181126233300_AddEndpointToEFServer.cs" />
|
|
<Compile Remove="Migrations\20181127143920_AddEndpointToEFServerUpdateServerIdType.cs" />
|
|
<Compile Remove="Migrations\20190222234606_AddIndexToEFMeta-KeyAndClientId.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jint" Version="2.11.58" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
<PackageReference Include="Npgsql" Version="4.0.4" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.2.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.2.0" />
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="if not exist "$(ProjectDir)..\BUILD" (
md "$(ProjectDir)..\BUILD"
)
if not exist "$(ProjectDir)..\BUILD\Plugins" (
md "$(ProjectDir)..\BUILD\Plugins"
)" />
|
|
</Target>
|
|
|
|
</Project>
|