1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

support hot reload of plugin code in debug configuration

This commit is contained in:
RaidMax
2024-08-27 10:10:58 -05:00
parent ac9c26817d
commit e956ab4d1a
6 changed files with 88 additions and 6 deletions

View File

@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Plugins\AutomessageFeed\AutomessageFeed.csproj" />
<ProjectReference Include="..\Plugins\LiveRadar\LiveRadar.csproj" />
<ProjectReference Include="..\Plugins\Login\Login.csproj" />
<ProjectReference Include="..\Plugins\Mute\Mute.csproj" />
<ProjectReference Include="..\Plugins\ProfanityDeterment\ProfanityDeterment.csproj" />
<ProjectReference Include="..\Plugins\Stats\Stats.csproj" />
<ProjectReference Include="..\Plugins\Welcome\Welcome.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,10 @@

namespace PluginDebugReference;
public static class StrongReferencesLoader
{
public static void Load()
{
// only for explicit reference
}
}