diff --git a/NuGet.config b/NuGet.config
index 8381dc5bbb..40a4c9e60e 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -23,88 +23,35 @@
+
-
-
-
-
-
-
+
+
-
-
+
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -114,6 +61,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -128,60 +108,27 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
+
diff --git a/eng/Versions.props b/eng/Versions.props
index a352ca5a6f..ca7c4dec9a 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -73,10 +73,10 @@
16.10.57-preview1
- 1.0.1-beta1.21103.2
+ 1.1.2-beta1.22109.1
17.2.32330.158
- 17.3.37-preview
- 4.3.0-3.22303.4
+ 17.3.133-preview
+ 4.4.0-1.22369.1
17.3.2017
4.2.0-1.final
@@ -108,11 +108,11 @@
$(MicrosoftVisualStudioShellPackagesVersion)
$(MicrosoftVisualStudioShellPackagesVersion)
$(MicrosoftVisualStudioShellPackagesVersion)
- 17.2.31
+ 17.3.3-alpha
$(MicrosoftVisualStudioPackagesVersion)
$(MicrosoftVisualStudioPackagesVersion)
$(MicrosoftVisualStudioPackagesVersion)
- 17.2.32
+ 17.3.1-alpha
16.10.0-preview-1-31008-014
17.0.53
$(Tooling_HtmlEditorPackageVersion)
@@ -123,12 +123,13 @@
1.3.8
1.0.15
4.16.0
+ 13.0.1
2.8.57
4.8.0
0.19.5
$(OmniSharpExtensionsLanguageServerPackageVersion)
- 1.37.13
- 2.11.35
+ 1.39.1
+ 2.12.7-alpha
4.3.0
3.3.3
7.0.0-preview1.22116.1
diff --git a/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common/Microsoft.AspNetCore.Razor.Test.Common.csproj b/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common/Microsoft.AspNetCore.Razor.Test.Common.csproj
index fb3eed3965..5abe61e744 100644
--- a/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common/Microsoft.AspNetCore.Razor.Test.Common.csproj
+++ b/src/Razor/test/Microsoft.AspNetCore.Razor.Test.Common/Microsoft.AspNetCore.Razor.Test.Common.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/Razor/test/Microsoft.VisualStudio.Editor.Razor.Test/Completion/RazorDirectiveCompletionSourceTest.cs b/src/Razor/test/Microsoft.VisualStudio.Editor.Razor.Test/Completion/RazorDirectiveCompletionSourceTest.cs
index 352d8660f6..82e30e1dc7 100644
--- a/src/Razor/test/Microsoft.VisualStudio.Editor.Razor.Test/Completion/RazorDirectiveCompletionSourceTest.cs
+++ b/src/Razor/test/Microsoft.VisualStudio.Editor.Razor.Test/Completion/RazorDirectiveCompletionSourceTest.cs
@@ -49,7 +49,7 @@ namespace Microsoft.VisualStudio.Editor.Razor.Completion
async () => await completionSource.GetCompletionContextAsync(null, new CompletionTrigger(CompletionTriggerReason.Invoke, triggerLocation.Snapshot), triggerLocation, applicableSpan, CancellationToken.None));
// Assert
- Assert.Empty(completionContext.Items);
+ Assert.Empty(completionContext.ItemList);
}
[UIFact]
@@ -68,7 +68,7 @@ namespace Microsoft.VisualStudio.Editor.Razor.Completion
async () => await completionSource.GetCompletionContextAsync(null, new CompletionTrigger(CompletionTriggerReason.Invoke, triggerLocation.Snapshot), triggerLocation, applicableSpan, CancellationToken.None));
// Assert
- Assert.Empty(completionContext.Items);
+ Assert.Empty(completionContext.ItemList);
}
// This is more of an integration level test validating the end-to-end completion flow.
@@ -89,7 +89,7 @@ namespace Microsoft.VisualStudio.Editor.Razor.Completion
// Assert
Assert.Collection(
- completionContext.Items,
+ completionContext.ItemList,
item => AssertRazorCompletionItem(SectionDirective.Directive, item, completionSource),
item => AssertRazorCompletionItem(s_defaultDirectives[0], item, completionSource),
item => AssertRazorCompletionItem(s_defaultDirectives[1], item, completionSource),
diff --git a/src/Razor/test/Microsoft.VisualStudio.Razor.IntegrationTests/InProcess/LightBulbHelper.cs b/src/Razor/test/Microsoft.VisualStudio.Razor.IntegrationTests/InProcess/LightBulbHelper.cs
index 20bd3cf1ac..979eee5358 100644
--- a/src/Razor/test/Microsoft.VisualStudio.Razor.IntegrationTests/InProcess/LightBulbHelper.cs
+++ b/src/Razor/test/Microsoft.VisualStudio.Razor.IntegrationTests/InProcess/LightBulbHelper.cs
@@ -81,10 +81,10 @@ namespace Microsoft.VisualStudio.Razor.IntegrationTests.InProcess
if (asyncSession.IsDismissed)
tcs.TrySetCanceled(new CancellationToken(true));
- // Calling PopulateWithData ensures the underlying session will call SuggestedActionsUpdated at least once
+ // Calling PopulateWithDataAsync ensures the underlying session will call SuggestedActionsUpdated at least once
// with the latest data computed. This is needed so that if the lightbulb computation is already complete
// that we hear about the results.
- asyncSession.PopulateWithData(overrideRequestedActionCategories: null, operationContext: null);
+ await asyncSession.PopulateWithDataAsync(overrideRequestedActionCategories: null, operationContext: null).ConfigureAwait(false);
return await tcs.Task.WithCancellation(cancellationToken);
}