msbuild项目具有以下aspnetcompiler项目
<AspNetCompiler
VirtualPath = "DeployTemp"
PhysicalPath = "..\src\external\Client1\"
TargetPath = "$(CompileOutputDir)\ClientPages\Client1\"
Force = "true"
Debug = "true"
Updateable = "true"
ToolPath="C:\Windows\Microsoft.NET\Framework\v4.0.30319\"/>
我的应用程序的工作方式是,用户可以上传图片。图片保存在名为* pet_pics *的文件夹中(与web.config处于同一级别)。
如果我使用上面的msbuild项目重新部署,文件夹* pet_pics *将被删除,所有图片都将丢失。有没有办法配置msbuild,以便它部署项目文件并且不删除任何非项目文件?