2018-07-29 14:43:42 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-08 01:44:42 -05:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2018-07-29 14:43:42 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-04-08 01:44:42 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
2018-04-22 15:04:18 -05:00
|
|
|
|
<Version>2.1.0</Version>
|
2018-04-08 01:44:42 -05:00
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
2018-04-19 00:48:14 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-08 01:44:42 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-05-03 00:25:49 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Migrations\20180502195240_Update.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-08 01:44:42 -05:00
|
|
|
|
<ItemGroup>
|
2018-09-04 12:40:29 -05:00
|
|
|
|
<PackageReference Include="Jint" Version="2.11.58" />
|
2018-09-07 22:29:42 -05:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.2" />
|
|
|
|
|
<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 01:44:42 -05:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
2018-09-07 22:29:42 -05:00
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.2" />
|
2018-04-08 01:44:42 -05:00
|
|
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-23 16:03:50 -05:00
|
|
|
|
<ItemGroup>
|
2018-08-22 20:25:34 -05:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" />
|
2018-04-23 16:03:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-10 20:08:14 -05:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2018-09-12 19:53:11 -05:00
|
|
|
|
<Exec Command="if not exist "$(ProjectDir)..\BUILD" (
md "$(ProjectDir)..\BUILD"
)
if not exist "$(ProjectDir)..\BUILD\Plugins" (
md "$(ProjectDir)..\BUILD\Plugins"
)" />
|
2018-04-10 20:08:14 -05:00
|
|
|
|
</Target>
|
|
|
|
|
|
2018-04-08 01:44:42 -05:00
|
|
|
|
</Project>
|