ASP.NET发布尝试复制不存在的文件

前端之家收集整理的这篇文章主要介绍了ASP.NET发布尝试复制不存在的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在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’.

FrançoisBreton的评论帮助我实现了解决方案.

这很简单:

使用文本编辑器打开.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.
原文链接:https://www.f2er.com/aspnet/249699.html

猜你在找的asp.Net相关文章