Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netstandard1.0 and uap10.0 support #2596

Merged
merged 13 commits into from
Oct 21, 2020
Prev Previous commit
Next Next commit
PR fix.
  • Loading branch information
Haplois committed Oct 20, 2020
commit bf279e42cf6120b6d828c89c7824944687c15ef4
2 changes: 1 addition & 1 deletion src/Microsoft.TestPlatform.ObjectModel/Framework.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static Framework FromString(string frameworkString)

case "frameworkcore10":
name = CommonFrameworks.NetCoreApp10.DotNetFrameworkName;
version = CommonFrameworks.Net35.Version.ToString();
version = CommonFrameworks.NetCoreApp10.Version.ToString();
break;

case "frameworkuap10":
Expand Down