TestComPortServer.csproj 604 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <IsPublishable>false</IsPublishable>
  6. <IsPackable>false</IsPackable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="NLog.Extensions.Logging" Version="1.7.4" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\..\Framework\Edge.Core\Edge.Core.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <None Update="nlog.config">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </None>
  18. </ItemGroup>
  19. </Project>