Skip to content

Commit

Permalink
⬆️ fix deps for net472
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKoell committed Oct 9, 2024
1 parent f4ae806 commit 1b3b8a9
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
<File Include="NativeMethods.txt" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Management" />
</ItemGroup>

<ItemGroup>
<None Include="lib\WinEmbed.x64.dll" Pack="true" PackagePath="runtimes\win-x64\native" />
<Content Include="lib\WinEmbed.x64.dll">
Expand All @@ -70,7 +66,12 @@
</Content>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows'">
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 1b3b8a9

Please sign in to comment.