Skip to content

Commit

Permalink
Disable run/debug commands for Dart projects
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Oct 15, 2014
1 parent 74ef0d4 commit 70f4637
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions DanTup.DartVS.Vsix/ProjectSystem/DartProjectConfig.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace DanTup.DartVS.ProjectSystem
{
using Microsoft.VisualStudio;
using Microsoft.VisualStudio.Project;

public class DartProjectConfig : ProjectConfig
Expand All @@ -21,5 +22,11 @@ public override void Invalidate()
{
base.Invalidate();
}

public override int QueryDebugLaunch(uint flags, out int fCanLaunch)
{
fCanLaunch = 0;
return VSConstants.S_OK;
}
}
}

0 comments on commit 70f4637

Please sign in to comment.