From ec52905ab2995fade0463bc77b71ed6397fca655 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Thu, 15 Apr 2021 18:14:02 -0700 Subject: [PATCH 1/8] Use merged interops --- NuGet.config | 2 + eng/Versions.props | 77 ++++++++++--------- .../CommandLineArgumentsDataSource.cs | 4 +- .../Roslyn.ComponentDebugger.csproj | 16 ++-- .../Roslyn.SDK.Template.Wizard.csproj | 7 +- .../Roslyn.SDK/Roslyn.SDK.csproj | 2 +- .../Roslyn.SyntaxVisualizer.Control.csproj | 5 +- .../Roslyn.SyntaxVisualizer.Extension.csproj | 7 +- .../Roslyn.SDK.IntegrationTests.csproj | 7 +- 9 files changed, 58 insertions(+), 69 deletions(-) diff --git a/NuGet.config b/NuGet.config index 687b1bf8e..ecc226ea9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,7 +6,9 @@ + + diff --git a/eng/Versions.props b/eng/Versions.props index 2444a3f63..f5a7f0b8a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -16,47 +16,47 @@ + + 4.0.0-1.21215.26 + 17.0.0-preview-1-31214-1111 3.3.2 - 3.9.0 - 3.9.0 - 3.9.0 - 3.9.0 - 3.9.0 + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) - 8.0.0 - 8.0.1 - 2.7.100 - 16.8.239 - 16.8.239 - 16.8.239 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30329.63 - 16.8.239 - 16.7.9 - 16.7.30329.88 - 16.7.30329.88 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.7.30328.74 - 16.8.239 - 16.8.239 - 16.7.30328.74 - 16.8.239 - 16.8.55 + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + 2.7.2466 + 16.9.6-alpha + 17.0.30-g62d2639511 + 17.0.30-g62d2639511 + 17.0.30-g62d2639511 + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + 17.0.30-g62d2639511 + 16.9.2-alpha + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + 17.0.30-g62d2639511 + 17.0.30-g62d2639511 + $(MicrosoftVisualStudioShellPackagesVersion) + 17.0.30-g62d2639511 + 16.10.53-alpha 16.3.23 - 16.8.33 + 16.9.32 5.6.0 - 2.6.121 - 16.7.30508.193 - 12.0.4 + 2.7.67 + 17.0.0-preview-1-31214-1111 + 17.0.0-preview-1-31209-1111 + 5.0.0 + + 17.0.0-beta1-10413-02 + 17.0.0-beta1-10413-02 1.4.4 @@ -69,4 +69,9 @@ 2.9.8 1.2.0-beta.164 + + + + $(NoWarn);NU3027;NU3018 + diff --git a/src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs b/src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs index 64174d3a2..22d274bfd 100644 --- a/src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs +++ b/src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs @@ -50,7 +50,7 @@ protected override IDisposable LinkExternalInput(ITargetBlock>> PreprocessAsync(IProjectVersionedValue input, IProjectVersionedValue>? previousOutput) + protected override Task>?> PreprocessAsync(IProjectVersionedValue? input, IProjectVersionedValue>? previousOutput) { if (input is null) { @@ -58,7 +58,7 @@ protected override Task>> Preproce } var description = input.Value.ProjectChanges[Constants.CommandLineArgsRuleName]; - return Task.FromResult>>(new ProjectVersionedValue>(description.After.Items.Keys.ToImmutableArray(), input.DataSourceVersions)); + return Task.FromResult>?>(new ProjectVersionedValue>(description.After.Items.Keys.ToImmutableArray(), input.DataSourceVersions)); } protected override Task ApplyAsync(IProjectVersionedValue> value) diff --git a/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj b/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj index 44588ee00..41199d84d 100644 --- a/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj +++ b/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj @@ -7,17 +7,15 @@ net472 enable true - NU1603;NU1605 + $(NoWarn);NU1603;NU1605 - - + + - - - - - - + + + + diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj index b06da45af..ab9f114ae 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj @@ -10,15 +10,12 @@ - - - - + - + diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj index 370c4ea74..9288c32f9 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj @@ -129,6 +129,6 @@ - + diff --git a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/Roslyn.SyntaxVisualizer.Control.csproj b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/Roslyn.SyntaxVisualizer.Control.csproj index 6882f3400..a1924bb1a 100644 --- a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/Roslyn.SyntaxVisualizer.Control.csproj +++ b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/Roslyn.SyntaxVisualizer.Control.csproj @@ -22,10 +22,7 @@ - - - - + diff --git a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj index 9baf55972..377c9fb79 100644 --- a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj +++ b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj @@ -35,12 +35,7 @@ - - - - - - + diff --git a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj index 0c66af099..bb3bcb447 100644 --- a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj +++ b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj @@ -24,12 +24,7 @@ - - - - - - + From ebeb38861fc32fd287547b87e4e222b47c1bbcfd Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Fri, 16 Apr 2021 10:15:46 -0700 Subject: [PATCH 2/8] Authentication for intenral nuget feed --- .vsts-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 23eac359e..3fbdf7537 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -36,6 +36,10 @@ stages: - task: ms-vseng.MicroBuildTasks.32f78468-e895-4f47-962c-58a699361df8.MicroBuildSwixPlugin@1 displayName: Install Swix Plugin + # otherwise it'll complain about accessing an internal feed. + - task: NuGetAuthenticate@0 + displayName: 'Authenticate to AzDO Feeds' + - script: eng\common\CIBuild.cmd -configuration $(BuildConfiguration) /p:OfficialBuildId=$(Build.BuildNumber) From 521b38773af1f8c9dd870e362b8b709fb96e201b Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Fri, 16 Apr 2021 11:47:41 -0700 Subject: [PATCH 3/8] dev17 setup --- eng/Versions.props | 4 +++- src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj | 1 + .../Roslyn.SyntaxVisualizer.Extension.csproj | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index f5a7f0b8a..86f96bdf9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,7 +52,9 @@ 5.6.0 2.7.67 17.0.0-preview-1-31214-1111 - 17.0.0-preview-1-31209-1111 + 17.0.0-preview-1-31209-1111 + 17.0.63-dev17-g3f11f5ab + 1.1.33 5.0.0 17.0.0-beta1-10413-02 diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj index 9288c32f9..561bb83db 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj @@ -10,6 +10,7 @@ false Microsoft.CodeAnalysis.SDK + Neutral false diff --git a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj index 377c9fb79..a77a35289 100644 --- a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj +++ b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj @@ -15,6 +15,7 @@ Roslyn.SyntaxVisualizer.Extension false true + Neutral From 27860546f3f1e3a2751beb899466ea2a2087b5c4 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Fri, 16 Apr 2021 12:30:12 -0700 Subject: [PATCH 4/8] Version bump for dev17 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 86f96bdf9..1cdd582d2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ - 3.2.0 + 4.0.0 1.0.1 beta1 From ca6e48cd81afa137609eb8a0be55b3070c322197 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Tue, 20 Apr 2021 15:39:34 -0700 Subject: [PATCH 5/8] Use signed packages and remove internal feed --- .vsts-ci.yml | 4 ---- NuGet.config | 1 - eng/Versions.props | 24 ++++++++++-------------- 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 3fbdf7537..23eac359e 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -36,10 +36,6 @@ stages: - task: ms-vseng.MicroBuildTasks.32f78468-e895-4f47-962c-58a699361df8.MicroBuildSwixPlugin@1 displayName: Install Swix Plugin - # otherwise it'll complain about accessing an internal feed. - - task: NuGetAuthenticate@0 - displayName: 'Authenticate to AzDO Feeds' - - script: eng\common\CIBuild.cmd -configuration $(BuildConfiguration) /p:OfficialBuildId=$(Build.BuildNumber) diff --git a/NuGet.config b/NuGet.config index ecc226ea9..712e69220 100644 --- a/NuGet.config +++ b/NuGet.config @@ -8,7 +8,6 @@ - diff --git a/eng/Versions.props b/eng/Versions.props index 86f96bdf9..9c36d2a94 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -18,7 +18,8 @@ 4.0.0-1.21215.26 - 17.0.0-preview-1-31214-1111 + 17.0.0-preview-1-31216-036 + 17.0.30-g62d2639511 3.3.2 $(MicrosoftCodeAnalysisPackagesVersion) @@ -31,28 +32,28 @@ $(MicrosoftVisualStudioShellPackagesVersion) 2.7.2466 16.9.6-alpha - 17.0.30-g62d2639511 - 17.0.30-g62d2639511 - 17.0.30-g62d2639511 + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) - 17.0.30-g62d2639511 + $(MicrosoftVisualStudioEditorPackagesVersion) 16.9.2-alpha $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) - 17.0.30-g62d2639511 - 17.0.30-g62d2639511 + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) - 17.0.30-g62d2639511 + $(MicrosoftVisualStudioEditorPackagesVersion) 16.10.53-alpha 16.3.23 16.9.32 5.6.0 2.7.67 17.0.0-preview-1-31214-1111 - 17.0.0-preview-1-31209-1111 + 17.0.0-preview-1-30928-1111 17.0.63-dev17-g3f11f5ab 1.1.33 5.0.0 @@ -71,9 +72,4 @@ 2.9.8 1.2.0-beta.164 - - - - $(NoWarn);NU3027;NU3018 - From 6370c83e176d89f48421dfbcf6f6f5c91731ded5 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Tue, 20 Apr 2021 16:18:47 -0700 Subject: [PATCH 6/8] Fix --- eng/Versions.props | 3 ++- .../Roslyn.SDK.Template.Wizard.csproj | 2 ++ src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj | 3 +++ .../Roslyn.SyntaxVisualizer.Extension.csproj | 2 ++ .../Roslyn.SDK.IntegrationTests.csproj | 3 +++ .../Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj | 5 +++++ 6 files changed, 17 insertions(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 9c36d2a94..fcc9a71cc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -38,6 +38,7 @@ $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioEditorPackagesVersion) 16.9.2-alpha $(MicrosoftVisualStudioShellPackagesVersion) @@ -52,7 +53,7 @@ 16.9.32 5.6.0 2.7.67 - 17.0.0-preview-1-31214-1111 + $(MicrosoftVisualStudioShellPackagesVersion) 17.0.0-preview-1-30928-1111 17.0.63-dev17-g3f11f5ab 1.1.33 diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj index ab9f114ae..2fe38cd07 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj @@ -16,6 +16,8 @@ + + diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj index 561bb83db..4a2d50555 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj @@ -131,5 +131,8 @@ + + + diff --git a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj index a77a35289..929f2b548 100644 --- a/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj +++ b/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Roslyn.SyntaxVisualizer.Extension.csproj @@ -43,6 +43,8 @@ + + diff --git a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj index bb3bcb447..58cb4c865 100644 --- a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj +++ b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj @@ -31,6 +31,9 @@ + + + diff --git a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj index c9df85d6e..5d9ea5fe2 100644 --- a/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj +++ b/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj @@ -10,4 +10,9 @@ + + + + + From 31b3fe1879bfc96211989e7fdeaaca17d947b13c Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Thu, 13 May 2021 11:47:54 -0700 Subject: [PATCH 7/8] dev17 reference version bump --- eng/Versions.props | 14 +++++++------- .../Roslyn.SDK.Template.Wizard.csproj | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 8ef79331a..b74f7e3f0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,9 +17,9 @@ - 4.0.0-1.21215.26 - 17.0.0-preview-1-31216-036 - 17.0.30-g62d2639511 + 4.0.0-1.21258.8 + 17.0.0-previews-1-31312-464 + 17.0.58-geff255422b 3.3.2 $(MicrosoftCodeAnalysisPackagesVersion) @@ -30,7 +30,7 @@ $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) - 2.7.2466 + 2.8.2012 16.9.6-alpha $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioEditorPackagesVersion) @@ -48,14 +48,14 @@ $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioEditorPackagesVersion) - 16.10.53-alpha + 16.10.56 16.3.23 - 16.9.32 + 17.0.11-alpha 5.6.0 2.7.67 $(MicrosoftVisualStudioShellPackagesVersion) 17.0.0-preview-1-30928-1111 - 17.0.63-dev17-g3f11f5ab + 17.0.1056-Dev17PIAs-g9dffd635 1.1.33 5.0.0 diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj index 2fe38cd07..2c88df73e 100644 --- a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj +++ b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj @@ -16,6 +16,7 @@ + From addfc3dfaebd266efdfdfad28e9b17ee4c4bd60e Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Wed, 19 May 2021 11:47:47 -0700 Subject: [PATCH 8/8] Update VS SDK --- eng/Versions.props | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index b74f7e3f0..9358a5cd8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,9 +17,9 @@ - 4.0.0-1.21258.8 - 17.0.0-previews-1-31312-464 - 17.0.58-geff255422b + 4.0.0-1.21267.34 + 17.0.0-previews-1-31318-291 + 17.0.65-g6c25c21ba5 3.3.2 $(MicrosoftCodeAnalysisPackagesVersion) @@ -30,7 +30,7 @@ $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) - 2.8.2012 + 2.8.2018 16.9.6-alpha $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioEditorPackagesVersion) @@ -48,7 +48,7 @@ $(MicrosoftVisualStudioEditorPackagesVersion) $(MicrosoftVisualStudioShellPackagesVersion) $(MicrosoftVisualStudioEditorPackagesVersion) - 16.10.56 + 17.0.15-alpha 16.3.23 17.0.11-alpha 5.6.0