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" />
|
|
|
|
|
</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-07 23:29:42 -04: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 02:44:42 -04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.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">
|
|
|
|
|
<Exec Command="if not exist "$(SolutionDir)BUILD" (
md "$(SolutionDir)BUILD"
)
if not exist "$(SolutionDir)BUILD\Plugins" (
md "$(SolutionDir)BUILD\Plugins"
)" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
</Project>
|