PRSServices.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  10. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Core.System.Configuration.Install" Version="1.1.0" />
  15. <PackageReference Include="Core.System.ServiceProcess" Version="2.0.1" />
  16. <PackageReference Include="GenHTTP.Core" Version="8.4.1" />
  17. <PackageReference Include="System.Drawing.Common" Version="8.0.6" />
  18. <PackageReference Include="System.Management" Version="8.0.0" />
  19. <PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
  23. <ProjectReference Include="..\..\inabox\InABox.Logging\InABox.Logging.csproj" />
  24. <ProjectReference Include="..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  25. <ProjectReference Include="..\..\inabox\InABox.Server\InABox.Server.csproj" />
  26. <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Update="PRSInstaller.cs" />
  30. <Compile Update="PRSService.cs" />
  31. </ItemGroup>
  32. </Project>