2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-10 20:36:28 -04:00
|
|
|
|
|
2017-06-05 22:49:26 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-04-10 20:36:28 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Plugins.ProfanityDeterment</PackageId>
|
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
|
|
|
|
<Product>Profanity Determent for IW4MAdmin</Product>
|
|
|
|
|
<Description>Warns and kicks players for using profanity</Description>
|
|
|
|
|
<Copyright>2018</Copyright>
|
2018-04-19 01:48:14 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2022-01-08 17:56:40 -05:00
|
|
|
|
<LangVersion>Latest</LangVersion>
|
2017-06-05 22:49:26 -04:00
|
|
|
|
</PropertyGroup>
|
2018-04-10 20:36:28 -04:00
|
|
|
|
|
2017-06-05 22:49:26 -04:00
|
|
|
|
<ItemGroup>
|
2023-04-05 11:15:36 -04:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2023.4.5.1" PrivateAssets="All" />
|
2017-06-05 22:49:26 -04:00
|
|
|
|
</ItemGroup>
|
2018-04-10 20:36:28 -04:00
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
2018-04-10 20:36:28 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|