Skip to content

Commit

Permalink
Reduce required logging lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
DubyaDude committed Aug 27, 2023
1 parent d94c06b commit fc81423
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions WindowsMediaController/WindowsMediaController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net47' or '$(TargetFramework)' == 'net471' or '$(TargetFramework)' == 'net472' or '$(TargetFramework)' == 'net48' or '$(TargetFramework)' == 'net481'">
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.17763.1000" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.22" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' != 'net'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>
</Project>

0 comments on commit fc81423

Please sign in to comment.