Knowledge Base
Categories: Third Party Applications
When Publishing an application using Visual Studio 2010, file permissions are altered
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 -
Reiterated, they are -
1) Edit the .csproj file and set <IncludeSetAclProviderOnDestination>False</IncludeSetAclProviderOnDestination>
2) msbuild.exe myproject.csproj /p:IncludeSetAclProviderOnDestination=False
This should stop VS 2010 from altering permissions.
* Your feedback is too short