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>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-10-07 22:34:30 -04:00
|
|
|
|
<RuntimeFrameworkVersion>2.1.5</RuntimeFrameworkVersion>
|
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>
|
2018-04-09 15:17:10 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
|
<ItemGroup>
|
2018-10-07 22:34:30 -04:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.1.5" />
|
2018-04-23 17:03:50 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-09 15:17:10 -04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2018-10-08 22:15:59 -04:00
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
2018-04-09 15:17:10 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|