在我的一些Visual Studio项目中,我有一个名为“info.txt”的文件
当我打开一个项目时,VS会记住上一个会话中的文件并恢复它们。
是否可以更改此设置,以便在打开项目时不会从之前的会话中恢复任何内容,而只会自动打开像“info.txt”这样的单个文件?
答案 0 :(得分:1)
您可以使用我的Visual Commander扩展程序执行此操作。
要Prevent Visual Studio from remembering last opened files,您订阅DTE.Events。 SolutionEvents.BeforeClosing 并调用 Window.CloseAllDocuments 。
要Open a file from the solution directory on opening a solution您订阅DTE.Events。 SolutionEvents.Opened 并调用 DTE.ItemOperations.OpenFile 。