我试图在VS2010中发布一个ASP.NET项目,并得到以下错误:
Copying file bin\CKFinder.pdb to obj\Release\Package\PackageTmp\bin\CKFinder.pdb Failed. Could not find file ‘bin\CKFinder.pdb’.
我试过使用CKFinder的试用版(用CKEditor),但是我支持它.我删除了对CKFinder的所有引用,包括文件夹和引用 – 或者我想.
我试着看这个错误,并且空出来了.这让人很沮丧.
为什么会出现这个错误?想法?
提前致谢 . . .
解决方法
我也碰到了这个问题.我正在收到以下错误,当试图发布MVCForum 1.7:
Copying file App_Data\NuGetBackup\Hello.txt to obj\Release\Package\PackageTmp\App_Data\NuGetBackup\Hello.txt Failed. Could not find file ‘App_Data\NuGetBackup\Hello.txt’.
这很简单:
使用文本编辑器打开.csproj文件(记事本,记事本; Visual Studio将其作为项目打开
按Ctrl F并搜索问题的文件.在我的情况下,文件是“Hello.txt”,不带逗号.
在ItemGroup下,它驻留:
<ItemGroup> <Content Include="App_Data\NuGetBackup\Hello.txt" /> <Content Include="Content\admin\Admin.css"> <DependentUpon>Admin.scss</DependentUpon> </Content> ...More code omitted due to brevity.
我删除了一行,瞧瞧! Visual Studio允许我在发布之前预览!
它会像这样结束:
<ItemGroup> <Content Include="Content\admin\Admin.css"> <DependentUpon>Admin.scss</DependentUpon> </Content> ...More code omitted due to brevity.