27 lines
987 B
XML
27 lines
987 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<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>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
<LangVersion>Latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2023.4.5.1" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|