public override int OnAfterRenameFiles(int cProjects, int cFiles, IVsProject[] projects, int[] firstIndices, string[] oldFileNames, string[] newFileNames, VSRENAMEFILEFLAGS[] flags) { if (!_project.IsRefreshing) { //Get the current value of the StartupFile Property string currentStartupFile = _project.GetProjectProperty(CommonConstants.StartupFile, true); string fullPathToStartupFile = CommonUtils.GetAbsoluteFilePath(_project.ProjectHome, currentStartupFile); //Investigate all of the oldFileNames if they are equal to the current StartupFile int index = 0; foreach (string oldfile in oldFileNames) { //Compare the files and update the StartupFile Property if the currentStartupFile is an old file if (CommonUtils.IsSamePath(oldfile, fullPathToStartupFile)) { //Get the newfilename and update the StartupFile property string newfilename = newFileNames[index]; CommonFileNode node = _project.FindNodeByFullPath(newfilename) as CommonFileNode; if (node == null) { throw new InvalidOperationException("Could not find the CommonFileNode object"); } //Startup file has been renamed _project.SetProjectProperty( CommonConstants.StartupFile, CommonUtils.GetRelativeFilePath(_project.ProjectHome, node.Url)); break; } index++; } } return(VSConstants.S_OK); }
public override int OnAfterRenameFiles(int cProjects, int cFiles, IVsProject[] projects, int[] firstIndices, string[] oldFileNames, string[] newFileNames, VSRENAMEFILEFLAGS[] flags) { if (!_project.IsRefreshing) { //Get the current value of the StartupFile Property string currentStartupFile = _project.GetProjectProperty(CommonConstants.StartupFile, true); if (string.IsNullOrEmpty(currentStartupFile)) { return(VSConstants.S_OK); } string fullPathToStartupFile = CommonUtils.GetAbsoluteFilePath(_project.ProjectHome, currentStartupFile); //Investigate all of the oldFileNames if they are equal to the current StartupFile int index = 0; foreach (string oldfile in oldFileNames) { FileNode node = null; if ((flags[index] & VSRENAMEFILEFLAGS.VSRENAMEFILEFLAGS_Directory) != 0) { if (CommonUtils.IsSubpathOf(oldfile, fullPathToStartupFile)) { // Get the newfilename and update the StartupFile property string newfilename = Path.Combine( newFileNames[index], CommonUtils.GetRelativeFilePath(oldfile, fullPathToStartupFile) ); node = _project.FindNodeByFullPath(newfilename) as FileNode; Debug.Assert(node != null); } } else if (CommonUtils.IsSamePath(oldfile, fullPathToStartupFile)) { //Get the newfilename and update the StartupFile property string newfilename = newFileNames[index]; node = _project.FindNodeByFullPath(newfilename) as FileNode; Debug.Assert(node != null); } if (node != null) { // Startup file has been renamed _project.SetProjectProperty( CommonConstants.StartupFile, CommonUtils.GetRelativeFilePath(_project.ProjectHome, node.Url)); break; } index++; } } return(VSConstants.S_OK); }
protected void SetProjectProperty(string propertyName, string propertyValue) { // SetProjectProperty's implementation will check whether the value // has changed. Project.SetProjectProperty(propertyName, propertyValue); }
public void SaveTo(CommonProjectNode proj) { proj.SetProjectProperty("OutputType", OutputTypeToString(OutputType)); proj.SetProjectProperty("CrateName", CrateName.ToString()); proj.SetProjectProperty("BuildDylib", BuildDylib.ToString()); proj.SetProjectProperty("BuildRlib", BuildRlib.ToString()); proj.SetProjectProperty("BuildStaticlib", BuildStaticlib.ToString()); }