PRSServices.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <Configurations>Debug;Release;Test;DebugDev</Configurations>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Core.System.Configuration.Install" Version="1.1.0" />
  11. <PackageReference Include="Core.System.ServiceProcess" Version="2.0.1" />
  12. <PackageReference Include="GenHTTP.Core" Version="8.4.1" />
  13. <PackageReference Include="System.Drawing.Common" Version="8.0.6" />
  14. <PackageReference Include="System.Management" Version="8.0.0" />
  15. <PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
  19. <ProjectReference Include="..\..\inabox\InABox.Logging\InABox.Logging.csproj" />
  20. <ProjectReference Include="..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  21. <ProjectReference Include="..\..\inabox\InABox.Server\InABox.Server.csproj" />
  22. <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Compile Update="PRSInstaller.cs" />
  26. <Compile Update="PRSService.cs" />
  27. </ItemGroup>
  28. </Project>