App.Gover.Gateway.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <publish>Gover</publish>
  4. <docker>sers-gover</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. <Compile Include="..\..\Gateway\App.Gateway\Program.cs" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Include="appsettings.json">
  17. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  18. </Content>
  19. <Content Include="contentTypeMap.json">
  20. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  21. </Content>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Microsoft.AspNetCore.App" />
  25. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Ipc\Sers.CL.Ipc.SharedMemory\Sers.CL.Ipc.SharedMemory.csproj" />
  26. <ProjectReference Include="..\..\Library\Sers\Sers.CL\WebSocket\Sers.CL.WebSocket\Sers.CL.WebSocket.csproj" />
  27. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\FullDuplex\Sers.CL.Zmq.FullDuplex\Sers.CL.Zmq.FullDuplex.csproj" />
  28. <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\ThreadWait\Sers.CL.ClrZmq.ThreadWait\Sers.CL.ClrZmq.ThreadWait.csproj" />
  29. <ProjectReference Include="..\..\Library\Sers\Sers.Gateway\Sers.Gateway\Sers.Gateway.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Content Include="wwwroot\**">
  33. <Link>wwwroot\%(RecursiveDir)%(Filename)%(Extension)</Link>
  34. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  35. </Content>
  36. </ItemGroup>
  37. </Project>