Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个插件框架并帮助开发,我正在将每个插件的输出路径更改为 shell 项目。但是,这样做会破坏该特定项目中任何 .cshtml 文件中的 razor intellesense。
有没有办法解决这个错误?
我将输出路径设置回默认值 (\bin)
并设置构建后事件
xcopy "$(ProjectDir)\bin" "$(SolutionDir)Frontline_UPF\Modules\$(ProjectName)" /i /s /y /q
我不能使用 $(TargetDir) 因为它在末尾添加了一个 \ 并且阻止了 xcopy 工作。