123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Configurations>Debug;Release;Test;DebugDev</Configurations>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Core.System.Configuration.Install" Version="1.1.0" />
- <PackageReference Include="Core.System.ServiceProcess" Version="2.0.1" />
- <PackageReference Include="GenHTTP.Core" Version="8.4.1" />
- <PackageReference Include="System.Drawing.Common" Version="8.0.6" />
- <PackageReference Include="System.Management" Version="8.0.0" />
- <PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Logging\InABox.Logging.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Server\InABox.Server.csproj" />
- <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="PRSInstaller.cs" />
- <Compile Update="PRSService.cs" />
- </ItemGroup>
- </Project>
|