Skip to content

Commit

Permalink
fix warning NU1701 (#8904)
Browse files Browse the repository at this point in the history
  • Loading branch information
filzrev authored Jun 30, 2023
1 parent 02c14b4 commit f689ba1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 0 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
warning NU1507: There are 2 package sources defined in your configuration.
-->
<NoWarn>$(NoWarn);NU1507</NoWarn>

<NoWarn>$(NoWarn);NU1701</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand Down
6 changes: 5 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
<PackageVersion Include="Jint" Version="3.0.0-beta-2049" />
<PackageVersion Include="JsonSchema.Net" Version="4.1.5" />
<PackageVersion Include="Markdig" Version="0.31.0" />
<PackageVersion Include="Microsoft.Build" Version="17.6.3" />

<!-- "17.3.2" is the latest compatible version for .NET 6 -->
<PackageVersion Include="Microsoft.Build" Version="[17.3.2]" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageVersion Include="Microsoft.Build" Version="17.6.3" Condition="'$(TargetFramework)' != 'net6.0'" />

<PackageVersion Include="Microsoft.Build.Locator" Version="1.5.5" />
<PackageVersion Include="Microsoft.CodeAnalysis" Version="4.6.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="4.6.0" />
Expand Down

0 comments on commit f689ba1

Please sign in to comment.