32 lines
979 B
XML
32 lines
979 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Docker.DotNet.Enhanced" Version="3.132.0" />
|
|
</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>
|
|
</ItemGroup>
|
|
|
|
</Project>
|