2018-04-09 14:17:10 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-08 13:48:40 -05:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-02-12 20:34:29 -06:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2019-02-15 22:19:59 -06:00
|
|
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
2018-04-09 14:17:10 -05:00
|
|
|
|
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
|
2018-04-08 13:48:40 -05:00
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Application</PackageId>
|
2019-07-17 12:29:51 -05:00
|
|
|
|
<Version>2.2.8.1</Version>
|
2018-04-08 13:48:40 -05:00
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
|
|
|
|
<Product>IW4MAdmin</Product>
|
2019-02-16 15:04:40 -06:00
|
|
|
|
<Description>IW4MAdmin is a complete server administration tool for IW4x and most Call of Duty® dedicated servers</Description>
|
2019-01-02 18:32:39 -06:00
|
|
|
|
<Copyright>2019</Copyright>
|
2018-04-08 13:48:40 -05:00
|
|
|
|
<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 />
|
2018-04-09 14:17:10 -05:00
|
|
|
|
<AssemblyName>IW4MAdmin</AssemblyName>
|
2018-04-19 00:48:14 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-21 17:18:20 -05:00
|
|
|
|
<Win32Resource />
|
2018-04-26 01:13:04 -05:00
|
|
|
|
<RootNamespace>IW4MAdmin.Application</RootNamespace>
|
2019-05-02 22:33:38 -05:00
|
|
|
|
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
|
2018-04-08 13:48:40 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-18 15:46:53 -05:00
|
|
|
|
<ItemGroup>
|
2019-08-02 18:04:34 -05:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.6" />
|
2019-05-03 20:13:51 -05:00
|
|
|
|
<PackageReference Include="RestEase" Version="1.4.9" />
|
2019-02-12 20:34:29 -06:00
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.1" />
|
2018-04-18 15:46:53 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-05-17 18:31:58 -05:00
|
|
|
|
<PropertyGroup>
|
2019-07-24 19:15:07 -05:00
|
|
|
|
<ServerGarbageCollection>false</ServerGarbageCollection>
|
|
|
|
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
2018-08-22 20:25:34 -05:00
|
|
|
|
<TieredCompilation>true</TieredCompilation>
|
2019-07-17 12:29:51 -05:00
|
|
|
|
<AssemblyVersion>2.2.8.1</AssemblyVersion>
|
|
|
|
|
<FileVersion>2.2.8.1</FileVersion>
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-05-17 18:31:58 -05:00
|
|
|
|
</PropertyGroup>
|
2018-05-03 00:25:49 -05:00
|
|
|
|
|
2018-04-08 16:50:58 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\WebfrontCore\WebfrontCore.csproj">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-05-09 20:00:00 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="DefaultSettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-23 16:03:50 -05:00
|
|
|
|
<ItemGroup>
|
2019-02-12 20:34:29 -06:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
2018-04-23 16:03:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-08 16:50:58 -05:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2018-09-12 19:53:11 -05:00
|
|
|
|
<Exec Command="call $(ProjectDir)BuildScripts\PreBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir)" />
|
2018-04-08 16:50:58 -05:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2018-09-12 19:53:11 -05:00
|
|
|
|
<GetAssemblyIdentity AssemblyFiles="$(TargetPath)">
|
|
|
|
|
<Output TaskParameter="Assemblies" ItemName="CurrentAssembly" />
|
|
|
|
|
</GetAssemblyIdentity>
|
|
|
|
|
<Exec Command="call $(ProjectDir)BuildScripts\PostBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir) %(CurrentAssembly.Version)" />
|
2018-04-08 16:50:58 -05:00
|
|
|
|
</Target>
|
|
|
|
|
|
2018-04-16 15:31:14 -05:00
|
|
|
|
<Target Name="PostPublish" AfterTargets="Publish">
|
2018-10-12 18:59:17 -05:00
|
|
|
|
<Exec Command="call $(ProjectDir)BuildScripts\PostPublish.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(ConfigurationName)" />
|
2018-04-16 15:31:14 -05:00
|
|
|
|
</Target>
|
2018-04-08 13:48:40 -05:00
|
|
|
|
</Project>
|