9fc33b19c4
added bower and nuget package
57 lines
2.1 KiB
XML
57 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</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 />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="bower.json" />
|
|
<Content Remove="bundleconfig.json" />
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="bower.json" />
|
|
<None Include="bundleconfig.json" />
|
|
<None Include="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Bower" Version="1.3.11" />
|
|
<PackageReference Include="BuildBundlerMinifier" Version="2.6.375" />
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
<Private></Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="WebfrontSettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties WebfrontSettings_1json__JSONSchema="http://json.schemastore.org/appsettings" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|