ProcessServer.csproj 857 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <ApplicationIcon>bo_procsrv.ico</ApplicationIcon>
  6. <RootNamespace>BO.ProcessServer</RootNamespace>
  7. <AssemblyName>BO.ProcessServer</AssemblyName>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\AppServer\Connector.PS\Connector.PS.csproj" />
  11. <ProjectReference Include="..\Common\qdr.fnd.core.qconsole\qdr.fnd.core.qconsole.csproj" />
  12. <ProjectReference Include="..\Common\qdr.fnd.core\qdr.fnd.core.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Folder Include="Commands\Base\" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="processServer.json">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. </ItemGroup>
  22. </Project>