I am working with custom project creation for Visual Studio 2012 and 2013 and creating our own VS package with project type *.myproj
It is working fine with VS 2013. But in VS 2012 my code for the below method is only calling for the first time, once I have closed the application and reopened the below method is not called.
public void BuildEvents_OnBuildBegin(EnvDTE.vsBuildScope Scope, EnvDTE.vsBuildAction Action)
{}
Any suggestions are welcomed. I struggle at this place since this is my first attempt on creating custom project.