ProcessServer.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.nlog\qdr.fnd.core.nlog.csproj" />
  12. <ProjectReference Include="..\Common\qdr.fnd.core.qconsole\qdr.fnd.core.qconsole.csproj" />
  13. <ProjectReference Include="..\Common\qdr.fnd.core\qdr.fnd.core.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Folder Include="Commands\Base\" />
  17. <Folder Include="Scenarios\" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="NLog" Version="4.7.13" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <None Update="processServer-nlog.config">
  24. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  25. </None>
  26. <None Update="processServer.json">
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </None>
  29. <None Update="Scenarios\scenario-dummy.cmd">
  30. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  31. </None>
  32. <None Update="Scenarios\scenario-fail.cmd">
  33. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  34. </None>
  35. </ItemGroup>
  36. </Project>