Skip to content

Instantly share code, notes, and snippets.

@3F
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3F/9d91f1bb37887465a050 to your computer and use it in GitHub Desktop.
Save 3F/9d91f1bb37887465a050 to your computer and use it in GitHub Desktop.
Default Entry point for user code in vsSolutionBuildEvent - http://vssbe.r-eg.net/doc/Modes/CSharp/
using ICommand = net.r_eg.vsSBE.Actions.ICommand;
using ISolutionEvent = net.r_eg.vsSBE.Events.ISolutionEvent;
namespace vsSolutionBuildEvent
{
public class CSharpMode
{
public static int Init(ICommand cmd, ISolutionEvent evt)
{
return 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment