mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-25 08:22:08 +00:00
Implement default logger providers that would use CV ILogsWriter for quick implementation of logs sink Co-authored-by: Alexandru Macocian <almacoci@microsoft.com>
24 lines
558 B
XML
24 lines
558 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SystemExtensions.NetStandard" Version="1.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WpfExtended\WpfExtended.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Images\Test.jpg">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|