Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandy Armstrong <sandy@xamarin.com>2019-09-26 18:08:44 +0300
committerSandy Armstrong <sandy@xamarin.com>2019-09-26 18:08:44 +0300
commit992329b4de7af86bcbbda23ee449a48b55313155 (patch)
tree347d8630915ed3eae59e3b6958742039948a21aa
parent5341b46ac14c229ab14a67095b904c479d68d123 (diff)
Sync with vs-editor-core@bc4f649ce
-rw-r--r--Directory.Build.props2
-rw-r--r--src/Editor/Text/Def/TextUI/Commanding/Commands/GoToBaseCommandArgs.cs (renamed from src/Editor/Text/Def/TextUI/Commanding/Commands/Navigation/GoToBaseMemberCommandArgs.cs)10
2 files changed, 6 insertions, 6 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index 0daedbe..0d99441 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -20,7 +20,7 @@
</PropertyGroup>
<PropertyGroup>
- <NuGetVersionRoslyn>3.3.1-beta3-19454-05</NuGetVersionRoslyn>
+ <NuGetVersionRoslyn>3.4.0-beta1-19462-14</NuGetVersionRoslyn>
<NuGetVersionVSEditor Condition="$(NuGetVersionVSEditor) == ''">16.0.379-g4a55b0e4f2</NuGetVersionVSEditor>
</PropertyGroup>
diff --git a/src/Editor/Text/Def/TextUI/Commanding/Commands/Navigation/GoToBaseMemberCommandArgs.cs b/src/Editor/Text/Def/TextUI/Commanding/Commands/GoToBaseCommandArgs.cs
index 2d8c4d9..dddb11b 100644
--- a/src/Editor/Text/Def/TextUI/Commanding/Commands/Navigation/GoToBaseMemberCommandArgs.cs
+++ b/src/Editor/Text/Def/TextUI/Commanding/Commands/GoToBaseCommandArgs.cs
@@ -1,5 +1,5 @@
//
-// GoToBaseMemberCommandArgs.cs
+// GoToBaseCommandArgs.cs
// Copyright (c) 2019 Microsoft
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,12 +20,12 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
-namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands.Navigation
+namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
{
- public sealed class GoToBaseMemberCommandArgs : EditorCommandArgs
+ public sealed class GoToBaseCommandArgs : EditorCommandArgs
{
- public GoToBaseMemberCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
+ public GoToBaseCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
{
}
}
-} \ No newline at end of file
+}