f0fd4c66e9
fix silly bug with no being able to claim ownership continue work on configuration via webfront
102 lines
5.1 KiB
XML
102 lines
5.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
|
<RazorCompileOnBuild Condition="'$(CONFIG)'!='Debug'">true</RazorCompileOnBuild>
|
|
<RazorCompiledOnPublish Condition="'$(CONFIG)'!='Debug'">true</RazorCompiledOnPublish>
|
|
<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 servers</Description>
|
|
<Copyright>2019</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\Components\TopPlayers\_List.cshtml" />
|
|
<Content Remove="Views\Plugins\Stats\Index.cshtml" />
|
|
<Content Remove="Views\Plugins\Stats\_MessageContext.cshtml" />
|
|
<Content Remove="Views\Plugins\Stats\_PenaltyInfo.cshtml" />
|
|
<Content Remove="Views\Plugins\_ViewImports.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="bower.json" />
|
|
<None Include="bundleconfig.json" />
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="Views\Plugins\Stats\Components\TopPlayers\_List.cshtml" />
|
|
<None Include="Views\Plugins\Stats\Index.cshtml" />
|
|
<None Include="Views\Plugins\Stats\_MessageContext.cshtml" />
|
|
<None Include="Views\Plugins\Stats\_PenaltyInfo.cshtml" />
|
|
<None Include="Views\Plugins\_ViewImports.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\**\*.*" CopyToPublishDirectory="Never" />
|
|
<Content Update="Views\*.*" 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" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.0" />
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
|
<PackageReference Update="Microsoft.AspNetCore" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
<Private></Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Views\Shared\EditorTemplates\" />
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
|
|
</Project>
|