Guest |
Login
Support Home
FAQ
Tutorials
Manuals
Downloads
Circulars
Blog
Tickets
ASP.NET
When Publishing an application using Visual Studio 2010, file permissions are altered. Why?
By default, Visual Studio 2010, sets ACLs upon deployment which can cause issues for your application/website. To set VS 2010 to not set ACLs, please follow the instructions below -
http://blogs.iis.net/msdeploy/archive/2010/10/04/skipping-setting-an-acl-in-a-visual-studio-2010-deployment-package.aspx<.a>
Reiterated, they are -
Edit the .csproj file and set
False
msbuild.exe myproject.csproj /p:IncludeSetAclProviderOnDestination=False
This should stop VS 2010 from altering permissions.