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