Skip to content

Commit

Permalink
Only reference Microsoft.Extensions.PlatformAbstractions in .NET 6+ b…
Browse files Browse the repository at this point in the history
…uilds
  • Loading branch information
Numpsy committed Feb 14, 2024
1 parent 0c9d87f commit b41a106
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/NSwag.Commands/NSwag.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))" />
<PackageReference Include="NConsole" Version="3.12.6605.26941" />
</ItemGroup>

Expand Down
2 changes: 2 additions & 0 deletions src/NSwag.Commands/RuntimeUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
//-----------------------------------------------------------------------

using System;
#if !NETFRAMEWORK
using Microsoft.Extensions.PlatformAbstractions;
#endif

namespace NSwag.Commands
{
Expand Down

0 comments on commit b41a106

Please sign in to comment.