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>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
2018-04-22 16:04:18 -04:00
|
|
|
|
<Version>2.1.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>
|
2018-04-08 02:44:42 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-05-03 01:25:49 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Migrations\20180502195240_Update.cs" />
|
2018-09-23 20:45:54 -04:00
|
|
|
|
<Compile Remove="Migrations\20180923025324_FixForPostgreSQL.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20180923025702_FixForPostgreSQL.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20180923030248_FixForPostgreSQL.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20180923030426_FixForPostgreSQL.cs" />
|
|
|
|
|
<Compile Remove="Migrations\20180923030528_FixForPostgreSQL.cs" />
|
2018-05-03 01:25:49 -04: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" />
|
2018-09-23 20:45:54 -04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.3" />
|
2018-09-07 23:29:42 -04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.1.1" />
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
2018-09-23 20:45:54 -04:00
|
|
|
|
<PackageReference Include="Npgsql" Version="4.0.3" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" />
|
2018-09-07 23:29:42 -04:00
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.2" />
|
2018-04-08 02:44:42 -04:00
|
|
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
|
<ItemGroup>
|
2018-08-22 21:25:34 -04:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" />
|
2018-04-23 17:03:50 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
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>
|