Mark Barto's Blog
Technical Blog about the Microsoft .NET Platform and everything that surrounds it such as .Net, C#, BizTalk, WCF, ASP.NET, SQL, Silverlight, IIS ...VS: Turn off repairing file when user delete/modify file
Visual studio creates advertised shortcuts so that when you are starting the application it will check first of existence for each file and repair the file automatically if it is modified or deleted. But sometimes you don't want to have this behavior for each file so how to deal with that ?
- Select the File in the setup project;
- Change the condition in the file properties to NOT REINSTALL
- Set the Transitive property to TRUE
For more information: http://msdn.microsoft.com/en-us/library/kz0ke5xt.aspx
Leave a comment