2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-08 02:44:42 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2019-10-08 17:47:36 -04:00
|
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
2019-02-15 23:19:59 -05:00
|
|
|
|
<Version>2.2.0</Version>
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
2018-04-19 01:48:14 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-05-02 23:33:38 -04:00
|
|
|
|
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-06-13 20:10:08 -04:00
|
|
|
|
<PackageTags>IW4MAdmin</PackageTags>
|
|
|
|
|
<RepositoryUrl>https://github.com/RaidMax/IW4M-Admin/</RepositoryUrl>
|
|
|
|
|
<PackageProjectUrl>https://www.raidmax.org/IW4MAdmin/</PackageProjectUrl>
|
|
|
|
|
<PackageIconUrl>https://www.raidmax.org/IW4MAdmin/img/iw4adminicon-3.png</PackageIconUrl>
|
|
|
|
|
<Copyright>2019</Copyright>
|
|
|
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2018-04-08 02:44:42 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-11-27 19:31:48 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Migrations\20181126232438_AddEndpointToEFServer.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20181126233300_AddEndpointToEFServer.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20181127143920_AddEndpointToEFServerUpdateServerIdType.cs" />
|
2019-02-22 20:06:51 -05:00
|
|
|
|
<Compile Remove="Migrations\20190222234606_AddIndexToEFMeta-KeyAndClientId.cs" />
|
2019-02-22 20:35:03 -05:00
|
|
|
|
<Compile Remove="Migrations\20190223012312_SetMaxLengthForMetaKey.cs" />
|
2018-11-27 19:31:48 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<ItemGroup>
|
2018-09-04 13:40:29 -04:00
|
|
|
|
<PackageReference Include="Jint" Version="2.11.58" />
|
2019-05-03 21:13:51 -04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.4">
|
2018-12-19 20:24:31 -05:00
|
|
|
|
<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" />
|
2019-07-24 20:15:07 -04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
2018-12-19 20:24:31 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.2.0" />
|
2019-05-03 21:13:51 -04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
2019-09-09 18:37:57 -04:00
|
|
|
|
<PackageReference Include="Npgsql" Version="4.0.9" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.2.4" />
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.2.0" />
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
|
|
|
</ItemGroup>
|
2019-10-08 17:47:36 -04:00
|
|
|
|
|
2018-04-10 21:08:14 -04:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2018-09-12 20:53:11 -04:00
|
|
|
|
<Exec Command="if not exist "$(ProjectDir)..\BUILD" (
md "$(ProjectDir)..\BUILD"
)
if not exist "$(ProjectDir)..\BUILD\Plugins" (
md "$(ProjectDir)..\BUILD\Plugins"
)" />
|
2018-04-10 21:08:14 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
</Project>
|