App.ServiceCenter.csproj 1.6 KB

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