mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
The commit simplifies the WelcomeConfiguration class, removing unnecessary methods and interfaces. It also changes how the Welcome plugin registers dependencies and processes in-game announcements. Additionally, it enables nullable reference type checks in the project settings. These changes generally improve the code structure, readability, and maintainability, while preserving the overall functionality of the plugin.
25 lines
855 B
XML
25 lines
855 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net8.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>
|
|
<RootNamespace>IW4MAdmin.Plugins.Welcome</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2024.6.22.1" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|