123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <IsPublishable>false</IsPublishable>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="NLog.Extensions.Logging" Version="1.7.4" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\Framework\Edge.Core\Edge.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="nlog.config">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|