diff --git a/NuGet.config b/NuGet.config index d92daf484..9680657aa 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,6 +6,7 @@ + diff --git a/eng/Versions.props b/eng/Versions.props index 2086dc554..edcfd0b8f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ - 3.2.0 + 4.0.0 1.1.1 beta1 @@ -17,60 +17,54 @@ + + 4.0.0-1.21267.34 + 17.0.0-previews-1-31318-291 + 17.0.65-g6c25c21ba5 3.3.2 - 3.9.0 - 3.9.0 - 3.9.0 - 3.9.0 - 3.9.0 + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) + $(MicrosoftCodeAnalysisPackagesVersion) 3.9.0 - 16.9.30921.233 - 16.8.30705.32 - 16.9.31023.347 - 16.9.30921.233 - 2.7.339 - 16.8.239 - 16.9.6-alpha - 16.8.239 - 16.8.239 - 16.8.30709.132 - 16.8.30705.32 - 16.8.30406.65-pre - 16.8.239 - 16.8.1-beta1-1008-05 - 16.8.1-beta1-1008-05 - 16.8.338-pre - 16.9.23-alpha - 16.7.9 - 16.7.30329.88 - 16.7.30329.88 - 16.9.30921.233 - 16.9.30921.233 - 16.7.30328.74 - 16.7.30328.74 - 16.9.30921.233 - 16.7.30328.74 - 16.9.30921.233 - 16.7.30328.74 - 16.9.31023.347 - 16.9.31023.347 - 16.7.30328.74 - 16.8.239 - 16.8.239 - 16.9.30921.233 - 16.8.239 - 16.8.55 + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + 2.8.2018 + 16.9.6-alpha + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + 16.9.2-alpha + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + $(MicrosoftVisualStudioShellPackagesVersion) + $(MicrosoftVisualStudioEditorPackagesVersion) + 17.0.15-alpha 16.3.23 - 16.8.33 - 5.8.0-preview.2.6776 - 5.8.0-preview.2.6776 - 1.1.0-beta3.20374.2 + 17.0.11-alpha + 5.6.0 2.7.67 - 16.7.30508.193 - 12.0.4 + $(MicrosoftVisualStudioShellPackagesVersion) + 17.0.0-preview-1-30928-1111 + 17.0.1056-Dev17PIAs-g9dffd635 + 1.1.33 + 5.0.0 + + 17.0.0-beta1-10413-02 + 17.0.0-beta1-10413-02 + 17.0.667-pre 1.5.0 4.3.4 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 70a284665..28f17264f 100644 --- a/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj +++ b/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj @@ -7,6 +7,7 @@ net472 enable true + $(NoWarn);NU1603;NU1605 @@ -22,24 +23,13 @@ - - - - - - - - - - - - - - - + + + + - + \ No newline at end of file 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..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 @@ -10,15 +10,15 @@ - - - - + - + + + + diff --git a/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj b/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj index 13601d250..8f82ad750 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 @@ -129,6 +130,9 @@ - + + + + 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..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 @@ -15,6 +15,7 @@ Roslyn.SyntaxVisualizer.Extension false true + Neutral @@ -35,18 +36,15 @@ - - - - - - + + + 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..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 @@ -24,18 +24,16 @@ - - - - - - + + + + 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 @@ + + + + +