50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Docker.DotNet.Enhanced" Version="3.132.0" />
|
|
<PackageReference Include="Riok.Mapperly" Version="5.0.0-next.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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>
|
|
<Compile Update="ServerSystem\Server.Update.cs">
|
|
<DependentUpon>Server.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Helpers\SystemMetrics.Cpu.cs">
|
|
<DependentUpon>SystemMetrics.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Helpers\SystemMetrics.Memory.cs">
|
|
<DependentUpon>SystemMetrics.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Helpers\SystemMetrics.Network.cs">
|
|
<DependentUpon>SystemMetrics.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Helpers\SystemMetrics.Disk.cs">
|
|
<DependentUpon>SystemMetrics.cs</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MoonlightServers.DaemonShared\MoonlightServers.DaemonShared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|