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/Execution/XspOptionsPanel.cs')
-rw-r--r--main/src/addins/AspNet/Execution/XspOptionsPanel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/AspNet/Execution/XspOptionsPanel.cs b/main/src/addins/AspNet/Execution/XspOptionsPanel.cs
index 6bd97b965d..1565afca86 100644
--- a/main/src/addins/AspNet/Execution/XspOptionsPanel.cs
+++ b/main/src/addins/AspNet/Execution/XspOptionsPanel.cs
@@ -41,12 +41,12 @@ namespace MonoDevelop.AspNet.Execution
public override Widget CreatePanelWidget ()
{
- return panel = new XspOptionsPanelWidget ((AspNetAppProject) ConfiguredProject);
+ return panel = new XspOptionsPanelWidget (ConfiguredProject.GetService<AspNetFlavor> ());
}
public override void ApplyChanges ()
{
- panel.Store ((AspNetAppProject) ConfiguredProject);
+ panel.Store (ConfiguredProject.GetService<AspNetFlavor> ());
}
}
}