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>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-04-09 15:17:10 -04:00
|
|
|
|
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
|
2018-04-08 14:48:40 -04:00
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Application</PackageId>
|
2020-11-11 19:53:23 -05:00
|
|
|
|
<Version>2020.0.0.0</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>
|
2020-05-04 17:50:02 -04:00
|
|
|
|
<Copyright>2020</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>
|
2023-06-08 16:16:42 -04:00
|
|
|
|
<PackageReference Include="Jint" Version="3.0.0-beta-2049" />
|
2022-04-19 19:43:58 -04:00
|
|
|
|
<PackageReference Include="MaxMind.GeoIP2" Version="5.1.0" />
|
2022-09-09 10:45:46 -04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.8">
|
2019-10-02 19:58:23 -04:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
2022-09-09 10:45:46 -04:00
|
|
|
|
<PackageReference Include="RestEase" Version="1.5.7" />
|
2023-05-30 15:58:17 -04:00
|
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
|
|
|
|
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.4.0-alpha.22272.1" />
|
2022-01-26 11:32:16 -05:00
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
|
2018-04-18 16:46:53 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-05-17 19:31:58 -04:00
|
|
|
|
<PropertyGroup>
|
2023-05-30 15:58:17 -04:00
|
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
2019-07-24 20:15:07 -04:00
|
|
|
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
2018-08-22 21:25:34 -04:00
|
|
|
|
<TieredCompilation>true</TieredCompilation>
|
2020-08-17 22:21:11 -04:00
|
|
|
|
<LangVersion>Latest</LangVersion>
|
2018-05-17 19:31:58 -04:00
|
|
|
|
</PropertyGroup>
|
2018-05-03 01:25:49 -04:00
|
|
|
|
|
2019-11-18 09:08:09 -05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Prerelease|AnyCPU'">
|
|
|
|
|
<ErrorReport>none</ErrorReport>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
<ItemGroup>
|
2021-06-03 11:51:03 -04:00
|
|
|
|
<ProjectReference Include="..\Integrations\Cod\Integrations.Cod.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Integrations\Source\Integrations.Source.csproj" />
|
2018-04-08 17:50:58 -04:00
|
|
|
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
</ProjectReference>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<ProjectReference Include="..\WebfrontCore\WebfrontCore.csproj" />
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-05-09 21:00:00 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="DefaultSettings.json">
|
2021-03-23 11:16:27 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2019-05-09 21:00:00 -04:00
|
|
|
|
</None>
|
2020-11-11 18:31:26 -05:00
|
|
|
|
<None Update="Configuration\LoggingConfiguration.json">
|
2021-03-23 11:16:27 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2020-11-11 18:31:26 -05:00
|
|
|
|
</None>
|
2022-04-19 19:43:58 -04:00
|
|
|
|
<None Update="Resources\GeoLite2-Country.mmdb">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2019-05-09 21:00:00 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<Exec Command="if $(ConfigurationName) == Debug 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>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<Exec Command="if $(ConfigurationName) == Debug call $(ProjectDir)BuildScripts\PostBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir) %25(CurrentAssembly.Version)" />
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
2018-04-16 16:31:14 -04:00
|
|
|
|
<Target Name="PostPublish" AfterTargets="Publish">
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<Exec Command="if $(ConfigurationName) == Debug 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>
|