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
82 lines
3.8 KiB
XML
82 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<TypeScriptToolsVersion>2.6</TypeScriptToolsVersion>
|
|
<PackageId>RaidMax.IW4MAdmin.WebfrontCore</PackageId>
|
|
<Version>2.0.0</Version>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Product>IW4MAdmin</Product>
|
|
<Description>IW4MAdmin is a complete server administration tool for IW4x and most Call of Duty® dedicated server</Description>
|
|
<Copyright>2018</Copyright>
|
|
<PackageLicenseUrl>https://github.com/RaidMax/IW4M-Admin/blob/master/LICENSE</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://raidmax.org/IW4MAdmin</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/RaidMax/IW4M-Admin</RepositoryUrl>
|
|
<PackageIconUrl>https://raidmax.org/IW4MAdmin/img/iw4adminicon-3.png</PackageIconUrl>
|
|
<ApplicationIcon />
|
|
<OutputType>Exe</OutputType>
|
|
<StartupObject />
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<TieredCompilation>true</TieredCompilation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="bower.json" />
|
|
<Content Remove="bundleconfig.json" />
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="Views\Plugins\Stats\_RatingHistory.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="bower.json" />
|
|
<None Include="bundleconfig.json" />
|
|
<None Include="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\**\*.*" CopyToPublishDirectory="Never" />
|
|
<None Include="wwwroot\css\global.min.css" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\js\global.min.js" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\images\icon.png" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\images\icons\**\*.png" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\lib\open-iconic\font\fonts\open-iconic.ttf" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\lib\open-iconic\font\fonts\open-iconic.woff" CopyToPublishDirectory="Always" />
|
|
<None Include="wwwroot\lib\open-iconic\font\fonts\open-iconic.otf" CopyToPublishDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Bower" Version="1.3.11" />
|
|
<PackageReference Include="BuildBundlerMinifier" Version="2.8.391" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.1.1" />
|
|
<PackageReference Update="Microsoft.NETCore.App" />
|
|
<PackageReference Update="Microsoft.AspNetCore" Version="2.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
<Private></Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|