Visual Studio Extension Reload Project

2019-08-19 01:24发布

I created a simple visual studio 2015 extension that adds a class to the current project.

Project p = (Project) ProjectsComboBox.SelectedItem;

string projectLocation = Path.GetDirectoryName(p.FileName);
// I load the project where I want to Add file
var projectCurrent = new Microsoft.Build.Evaluation.Project(p.FileName);


string relativeNewPath = "\\Model\\DAL\\" + ViewNameTexBox.Text + "DAO.cs";
string newPath = projectLocation + relativeNewPath;

projectCurrent.AddItem("Compile", relativeNewPath);
projectCurrent.Save();

// Once class added to my project I edit text inside newly create class
string text = File.ReadAllText("Templates/DAO.cs.txt");
text = text.Replace("$viewName$", ViewNameTexBox.Text);
File.WriteAllText(newPath, text);

The file is included to the project and modified but visual studio prompt a message asking to reload project. When I do so, the project won't reload.

the project has been modified outside the environment

I would like to dispose currentProject but project is not IDisposable. Setting currentProject to null has no effect.

How can I tell my code to free currentProject and let Visual Studio reload it ?

1条回答
劫难
2楼-- · 2019-08-19 01:51

You can unload the project before add files to project, then load project again, The following code for your reference.

Microsoft.Build.Evaluation.ProjectCollection projectCollection = new Microsoft.Build.Evaluation.ProjectCollection();

var projectCurrent = projectCollection.LoadProject(projectPath);
projectCollection.UnloadProject(projectCurrent);

string relativeNewPath = "\\Model\\DAL\\DAO.cs";
string newPath = projectPath + relativeNewPath;
projectCurrent.AddItem("Compile", relativeNewPath);
projectCurrent.Save();
projectCollection.LoadProject(projectPath);

enter image description here

查看更多
登录 后发表回答