2018-04-09 15:17:10 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.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>
|
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>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="MaxMind\GeoIP.dat">
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"
copy "$(ProjectDir)MaxMind\GeoIP.dat" "$(SolutionDir)BUILD\Plugins\GeoIP.dat"" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|