Skip to content

Instantly share code, notes, and snippets.

@murven
Created April 26, 2016 15:19
Show Gist options
  • Save murven/cd770c0d4630cc32554914d06fbe7e03 to your computer and use it in GitHub Desktop.
Save murven/cd770c0d4630cc32554914d06fbe7e03 to your computer and use it in GitHub Desktop.
Exclude files from deployment
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
...
<ExcludeFilesFromDeployment>File1.aspx;Folder2\File2.aspx</ExcludeFilesFromDeployment>
<ExcludeFilesFromDeployment>**\.svn\**\*.*</ExcludeFilesFromDeployment>
<ExcludeFoldersFromDeployment>Folder1;Folder2\Folder2a</ExcludeFoldersFromDeployment>
</PropertyGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment