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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs')
-rw-r--r--main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs12
1 files changed, 3 insertions, 9 deletions
diff --git a/main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs b/main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs
index cbdfed0257..f84173bdca 100644
--- a/main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs
+++ b/main/src/addins/AspNet/Commands/GoToViewCommandHandler.cs
@@ -26,7 +26,6 @@
using System;
using System.IO;
-using ICSharpCode.NRefactory.TypeSystem;
using MonoDevelop.Components.Commands;
using MonoDevelop.Core;
using MonoDevelop.Ide;
@@ -43,17 +42,12 @@ namespace MonoDevelop.AspNet.Commands
protected override void Run ()
{
var doc = IdeApp.Workbench.ActiveDocument;
- var currentLocation = doc.Editor.Caret.Location;
+ var method = MethodDeclarationAtCaret.Create (doc);
+ string controllerName = method.GetParentMvcControllerName ();
- var controller = doc.ParsedDocument.GetTopLevelTypeDefinition (currentLocation);
- string controllerName = controller.Name;
- int pos = controllerName.LastIndexOf ("Controller", StringComparison.Ordinal);
- if (pos > 0)
- controllerName = controllerName.Remove (pos);
-
var baseDirectory = doc.FileName.ParentDirectory.ParentDirectory;
- string actionName = doc.ParsedDocument.GetMember (currentLocation).Name;
+ string actionName = method.Name;
var viewFoldersPaths = new [] {
baseDirectory.Combine ("Views", controllerName),
baseDirectory.Combine ("Views", "Shared")