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>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
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>
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</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>
|
2018-04-10 20:36:28 -04:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2017-06-05 22:49:26 -04:00
|
|
|
|
</ItemGroup>
|
2018-04-10 20:36:28 -04:00
|
|
|
|
|
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-10 20:36:28 -04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|