2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-09 15:17:10 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-04-09 15:17:10 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Plugins.Welcome</PackageId>
|
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
|
|
|
|
<Product>Welcome Plugin for IW4MAdmin</Product>
|
|
|
|
|
<Description>Welcome plugin for IW4MAdmin welcomes clients to the server</Description>
|
|
|
|
|
<Copyright>2018</Copyright>
|
2018-04-19 01:48:14 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2020-11-27 22:52:52 -05:00
|
|
|
|
<LangVersion>Latest</LangVersion>
|
2018-04-09 15:17:10 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<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-09 15:17:10 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
<ItemGroup>
|
2022-01-08 17:56:40 -05:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2022.1.8.1" PrivateAssets="All" />
|
2021-03-22 12:09:25 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-09 15:17:10 -04:00
|
|
|
|
</Project>
|