未验证 提交 7dac4a14 编写于 作者: S Sam Harwell 提交者: GitHub

Merge pull request #33106 from sharwell/require-dev16

Require dev16 for integration testing
...@@ -3,9 +3,7 @@ trigger: ...@@ -3,9 +3,7 @@ trigger:
- master - master
- master-vs-deps - master-vs-deps
- dev16.0-preview2 - dev16.0-preview2
- dev16.0-preview2-vs-deps
- dev16.0-preview3 - dev16.0-preview3
- dev16.0-preview3-vs-deps
- dev16.1-preview1 - dev16.1-preview1
- dev16.1-preview1-vs-deps - dev16.1-preview1-vs-deps
...@@ -16,9 +14,7 @@ pr: ...@@ -16,9 +14,7 @@ pr:
- features/* - features/*
- demos/* - demos/*
- dev16.0-preview2 - dev16.0-preview2
- dev16.0-preview2-vs-deps
- dev16.0-preview3 - dev16.0-preview3
- dev16.0-preview3-vs-deps
- dev16.1-preview1 - dev16.1-preview1
- dev16.1-preview1-vs-deps - dev16.1-preview1-vs-deps
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"tools": { "tools": {
"dotnet": "2.1.401", "dotnet": "2.1.401",
"vs": { "vs": {
"version": "15.8" "version": "16.0"
}, },
"xcopy-msbuild": "15.9.0-alpha" "xcopy-msbuild": "15.9.0-alpha"
}, },
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<userSettings> <userSettings>
<Microsoft.VisualStudio.IntegrationTest.Utilities.Settings> <Microsoft.VisualStudio.IntegrationTest.Utilities.Settings>
<setting name="VsProductVersion" serializeAs="String"> <setting name="VsProductVersion" serializeAs="String">
<value>15</value> <value>16</value>
</setting> </setting>
<setting name="VsRootSuffix" serializeAs="String"> <setting name="VsRootSuffix" serializeAs="String">
<value>RoslynDev</value> <value>RoslynDev</value>
......
...@@ -12,7 +12,7 @@ namespace Microsoft.VisualStudio.IntegrationTest.Utilities { ...@@ -12,7 +12,7 @@ namespace Microsoft.VisualStudio.IntegrationTest.Utilities {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
...@@ -25,7 +25,7 @@ internal sealed partial class Settings : global::System.Configuration.Applicatio ...@@ -25,7 +25,7 @@ internal sealed partial class Settings : global::System.Configuration.Applicatio
[global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("15")] [global::System.Configuration.DefaultSettingValueAttribute("16")]
public string VsProductVersion { public string VsProductVersion {
get { get {
return ((string)(this["VsProductVersion"])); return ((string)(this["VsProductVersion"]));
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<Profiles /> <Profiles />
<Settings> <Settings>
<Setting Name="VsProductVersion" Type="System.String" Scope="User"> <Setting Name="VsProductVersion" Type="System.String" Scope="User">
<Value Profile="(Default)">15</Value> <Value Profile="(Default)">16</Value>
</Setting> </Setting>
<Setting Name="VsRootSuffix" Type="System.String" Scope="User"> <Setting Name="VsRootSuffix" Type="System.String" Scope="User">
<Value Profile="(Default)">RoslynDev</Value> <Value Profile="(Default)">RoslynDev</Value>
......
...@@ -39,9 +39,9 @@ static VisualStudioInstanceFactory() ...@@ -39,9 +39,9 @@ static VisualStudioInstanceFactory()
{ {
var majorVsProductVersion = VsProductVersion.Split('.')[0]; var majorVsProductVersion = VsProductVersion.Split('.')[0];
if (int.Parse(majorVsProductVersion) < 15) if (int.Parse(majorVsProductVersion) < 16)
{ {
throw new PlatformNotSupportedException("The Visual Studio Integration Test Framework is only supported on Visual Studio 15.0 and later."); throw new PlatformNotSupportedException("The Visual Studio Integration Test Framework is only supported on Visual Studio 16.0 and later.");
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册