| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <ApplicationIcon>bo_procsrv.ico</ApplicationIcon>
- <RootNamespace>BO.ProcessServer</RootNamespace>
- <AssemblyName>BO.ProcessServer</AssemblyName>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\AppServer\Connector.PS\Connector.PS.csproj" />
- <ProjectReference Include="..\Common\qdr.fnd.core.nlog\qdr.fnd.core.nlog.csproj" />
- <ProjectReference Include="..\Common\qdr.fnd.core.qconsole\qdr.fnd.core.qconsole.csproj" />
- <ProjectReference Include="..\Common\qdr.fnd.core\qdr.fnd.core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Commands\Base\" />
- <Folder Include="Scenarios\" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="NLog" Version="4.7.13" />
- </ItemGroup>
- <ItemGroup>
- <None Update="processServer-nlog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="processServer.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Scenarios\scenario-dummy.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="Scenarios\scenario-fail.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|