App.Gateway.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <publish>Gateway</publish>
  4. <docker>sers-gateway</docker>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <OutputType>Exe</OutputType>
  8. <TargetFramework>net6.0</TargetFramework>
  9. <Version>2.1.19-preview8</Version>
  10. <PackageProjectUrl>https://github.com/serset/Sers</PackageProjectUrl>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <Content Include="appsettings.json">
  14. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  15. </Content>
  16. <Content Include="contentTypeMap.json">
  17. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  18. </Content>
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="Microsoft.AspNetCore.App" />
  22. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Ipc\Sers.CL.Ipc.SharedMemory\Sers.CL.Ipc.SharedMemory.csproj" />
  23. <ProjectReference Include="..\..\Library\Sers\Sers.CL\WebSocket\Sers.CL.WebSocket\Sers.CL.WebSocket.csproj" />
  24. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\FullDuplex\Sers.CL.Zmq.FullDuplex\Sers.CL.Zmq.FullDuplex.csproj" />
  25. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\ThreadWait\Sers.CL.ClrZmq.ThreadWait\Sers.CL.ClrZmq.ThreadWait.csproj" />
  26. <ProjectReference Include="..\..\Library\Sers\Sers.Gateway\Sers.Gateway\Sers.Gateway.csproj" />
  27. </ItemGroup>
  28. </Project>