gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 11:07:58 31 4
gpt4 key购买 nike

我正在尝试在 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çois Breton's comment帮助我实现了解决方案。

这很简单:

打开您的 .csproj带有文本编辑器(记事本、 Notepad++ )的文件,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.

我删除了 <Content Include="App_Data\NuGetBackup\Hello.txt" />行,瞧! Visual Studio 允许我在发布前预览!

它会像这样结束:
<ItemGroup>
<Content Include="Content\admin\Admin.css">
<DependentUpon>Admin.scss</DependentUpon>
</Content>
...More code omitted due to brevity.

关于ASP.NET 发布尝试复制不存在的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10705550/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com