ac64d8d3c1
enable preview of tiered compiliation (faster startup) ban events are sent to the API properly now add vpn except id configuration begin work on javascript plugin support
41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
|
<Version>2.1.0</Version>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Migrations\20180502195240_Update.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jint" Version="3.0.0-beta-1249" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" 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.Options.ConfigurationExtensions" Version="2.1.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.1" />
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="Microsoft.NETCore.App" />
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
</Project>
|