App.ServiceCenter.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.1</TargetFramework>
  5. <Version>2.1.1.323</Version>
  6. <Description>https://github.com/sersms/Sers/tree/2.1.1/release</Description>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Content Include="web.config">
  10. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  11. </Content>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\..\Sers\Sers.CL\Ipc\Sers.CL.Ipc.SharedMemory\Sers.CL.Ipc.SharedMemory.csproj" />
  15. <ProjectReference Include="..\..\..\Sers\Sers.CL\WebSocket\Sers.CL.WebSocket\Sers.CL.WebSocket.csproj" />
  16. <ProjectReference Include="..\..\..\Sers\Sers.CL\Zmq\FullDuplex\Sers.CL.Zmq.FullDuplex\Sers.CL.Zmq.FullDuplex.csproj" />
  17. <ProjectReference Include="..\..\..\Sers\Sers.CL\Zmq\ThreadWait\Sers.CL.ClrZmq.ThreadWait\Sers.CL.ClrZmq.ThreadWait.csproj" />
  18. <ProjectReference Include="..\..\..\Sers\Sers.Gateway\Sers.Gateway\Sers.Gateway.csproj" />
  19. <ProjectReference Include="..\..\..\Sers\Sers.ServiceCenter\Sers.Gover\Sers.Gover.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <None Update="appsettings.json">
  23. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  24. </None>
  25. <None Update="contentTypeMap.json">
  26. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  27. </None>
  28. </ItemGroup>
  29. <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
  30. <Exec Command="xcopy &quot;$(ProjectDir)..\App.Gover.Gateway\wwwroot&quot; &quot;$(TargetDir)\wwwroot&quot; /e /i /r /y" />
  31. </Target>
  32. </Project>