Recreated plugin with new project template. Started implementing server system daemon
This commit is contained in:
@@ -1,69 +1,28 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Docker.DotNet" Version="3.125.15" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.9" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.2.0" />
|
||||
<PackageReference Include="MoonCore" Version="2.0.1" />
|
||||
<PackageReference Include="MoonCore.Extended" Version="1.4.0" />
|
||||
<PackageReference Include="MoonCore.Unix" Version="1.0.8" />
|
||||
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
||||
<PackageReference Include="Stateless" Version="5.19.0" />
|
||||
<PackageReference Include="Docker.DotNet.Enhanced" Version="3.132.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Http\Middleware\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MoonlightServers.DaemonShared\MoonlightServers.DaemonShared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="data\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Remove="data\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Remove="data\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="data\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\banned-ips.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\banned-players.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\ops.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\plugins\spark\config.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\usercache.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\version_history.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\2\whitelist.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\banned-ips.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\banned-players.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\ops.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\plugins\spark\config.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\usercache.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\version_history.json" />
|
||||
<_ContentIncludedByDefault Remove="volumes\3\whitelist.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\69\plugins\spark\config.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\banned-ips.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\banned-players.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\ops.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\plugins\spark\config.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\usercache.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\version_history.json" />
|
||||
<_ContentIncludedByDefault Remove="storage\volumes\6\whitelist.json" />
|
||||
<Compile Update="ServerSystem\Server.Power.cs">
|
||||
<DependentUpon>Server.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Update="ServerSystem\Server.Install.cs">
|
||||
<DependentUpon>Server.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Update="ServerSystem\Server.Restore.cs">
|
||||
<DependentUpon>Server.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Update="ServerSystem\Server.Delete.cs">
|
||||
<DependentUpon>Server.cs</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user