InABox.Server.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  9. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  10. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Fleck" Version="1.2.0" />
  14. <PackageReference Include="GenHTTP.Core" Version="8.4.1" />
  15. <PackageReference Include="GenHTTP.Modules.Practices" Version="8.4.0" />
  16. <PackageReference Include="H.Formatters.MessagePack" Version="15.0.0" />
  17. <PackageReference Include="H.Pipes" Version="15.0.0" />
  18. <PackageReference Include="H.Pipes.AccessControl" Version="15.0.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />
  22. <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />
  23. <ProjectReference Include="..\InABox.IPC.Shared\InABox.IPC.Shared.csproj" />
  24. <ProjectReference Include="..\InABox.Logging.Shared\InABox.Logging.Shared.csproj" />
  25. <ProjectReference Include="..\InABox.Mailer.Exchange\InABox.Mailer.Exchange.csproj" />
  26. <ProjectReference Include="..\InABox.Mailer.IMAP\InABox.Mailer.IMAP.csproj" />
  27. <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  28. <ProjectReference Include="..\InABox.WebSocket.Shared\InABox.WebSocket.Shared.csproj" />
  29. </ItemGroup>
  30. <Import Project="..\InABox.Remote.Shared\InABox.Remote.Shared.projitems" Label="Shared" />
  31. </Project>