问题描述
我在 WPF (PropertyChanged) 中有一个非常简单的项目——一个视图、一个视图模型和一个模型.在这个项目中,我使用包 PropertyChanged.Fody.当我想在 10 秒后构建这个项目时,我收到两条错误消息:
I have very simple project in WPF (PropertyChanged)- one view, one view model and one model. In this project I use package PropertyChanged.Fody. When I want to build this project after 10 second I get two error message:
- 无法将obj\Debug\PropertyChanged.exe"复制到bin\Debug\PropertyChanged.exe".重试次数超过 10.失败.
- 无法将文件obj\Debug\PropertyChanged.exe"复制到bin\Debug\PropertyChanged.exe".该进程无法访问文件bin\Debug\PropertyChanged.exe",因为它正被另一个进程使用.
唯一的解决办法是:
- 卸载项目
- 删除文件夹 bin 和 obj
- 重新加载项目
很不舒服,但我真的很想用 PropertyChanged.Fody
It is very unconfortable, but I relly want to use PropertyChanged.Fody
推荐答案
有时 Visual Studio Hosting Process
会引起麻烦.转到项目 Properties >调试启用 Visual Studio 托管进程
并取消选中它.
Sometimes the Visual Studio Hosting Process
causes troubles. Go to the project Properties > Debug > Enable the Visual Studio Hosting Process
and un-check it.
这篇关于使用 PropertyChanged.Fody 构建应用程序时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!