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 (#4785)
  • Loading branch information
Numpsy authored Jul 1, 2024
1 parent ba5d286 commit 2cbbeba
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 @@ -40,7 +40,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 2cbbeba

Please sign in to comment.