-
Notifications
You must be signed in to change notification settings - Fork 326
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
Object Model API #1251
Object Model API #1251
Conversation
@@ -68,6 +68,11 @@ public static class Constants | |||
public static readonly Architecture DefaultPlatform = XmlRunSettingsUtilities.OSArchitecture == Architecture.ARM ? Architecture.ARM : Architecture.X86; | |||
|
|||
/// <summary> | |||
/// Adding this for compatibility | |||
/// </summary> | |||
public const FrameworkVersion DefaultFramework = FrameworkVersion.Framework40; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Deprecated]
@@ -7,7 +7,7 @@ | |||
<Import Project="$(TestPlatformRoot)scripts/build/TestPlatform.Settings.targets" /> | |||
<PropertyGroup> | |||
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">Exe</OutputType> | |||
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks> | |||
<TargetFrameworks>net451;netcoreapp1.0</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change?
return this.frameworkVersion; | ||
} | ||
|
||
set |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set_TargetFramework
should set frameworkVersion
. Add test for same
Changes based on API scan.