Skip to content

Commit

Permalink
Add net461 and netstandard2.0 to default target frameworks (#6488)
Browse files Browse the repository at this point in the history
For the older track 1 data-plane libraries they used to only
support net452 and netstandard1.4 but in order to align the packages
with the newer platforms we are adding net461 and netstandard2.0
to the list of target frameworks.
  • Loading branch information
weshaggard authored Jun 5, 2019
1 parent 0761913 commit e7dc3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/Directory.Build.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<SupportsNetStandard20 Condition="'$(SupportsNetStandard20)' == '' and '$(IsClientLibrary)' == 'true'">true</SupportsNetStandard20>
<SupportsNetStandard20 Condition="'$(SupportsNetStandard20)' == ''">false</SupportsNetStandard20>

<RequiredTargetFrameworks>net452;netstandard1.4</RequiredTargetFrameworks>
<RequiredTargetFrameworks>net452;netstandard1.4;net461;netstandard2.0</RequiredTargetFrameworks>
<RequiredTargetFrameworks Condition="'$(SupportsNetStandard20)' == 'true'">net461;netstandard2.0</RequiredTargetFrameworks>
</PropertyGroup>

Expand Down

0 comments on commit e7dc3b4

Please sign in to comment.