Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #382 from mjrousos/mjrousos/pcl-fix
Browse files Browse the repository at this point in the history
Fix a couple PCL-netstandard mappings to match docs
  • Loading branch information
cartermp authored Mar 2, 2021
2 parents ee03254 + 1db5691 commit abbf4ec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/MSBuild.Conversion.Facts/MSBuildFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,16 @@ public static class MSBuildFacts
/// </summary>
public static ImmutableDictionary<string, string> PCLToNetStandardVersionMapping => ImmutableDictionary.CreateRange(new Dictionary<string, string>
{
// https://github.com/dotnet/standard/blob/master/docs/versions.md#mapping-pcl-profiles-to-net-standard
{ "Profile7", "1.1" },
{ "Profile31", "1.0" },
{ "Profile32", "1.2" },
{ "Profile44", "1.2" },
{ "Profile49", "1.0" },
{ "Profile78", "1.0" },
{ "Profile84", "1.0" },
{ "Profile111", "1.0" },
{ "Profile151", "1.0" },
{ "Profile111", "1.1" },
{ "Profile151", "1.2" },
{ "Profile157", "1.0" },
{ "Profile259", "1.0" },
});
Expand Down

0 comments on commit abbf4ec

Please sign in to comment.