除了将保留属性更改为 $(MSBuildBinPath) 之外,还有其他方法可以修复 Microsoft.CSharp.targets 的导入项目错误吗?

发布于 2024-08-20 00:24:16 字数 561 浏览 5 评论 0 原文

所以我收到错误:

导入的项目 “C:\Microsoft.CSharp.targets”不是 成立。确认路径中的 声明是正确的,并且 该文件存在于磁盘上。

当我运行此命令时:

%WINDIR%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe MyProject.csproj /target:publish

我发现其他人指出我应该在项目文件中更改以下内容:

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

为此:

<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

我已经尝试过此操作,但仍然遇到相同的错误。似乎两个保留属性都是空的或设置为“C:”有人有什么建议吗?

So I am getting the error:

The imported project
"C:\Microsoft.CSharp.targets" was not
found. Confirm that the path in the
declaration is correct, and
that the file exists on disk.

When I run this command:

%WINDIR%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe MyProject.csproj /target:publish

I found others stating that I should change the following in my project file:

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

To this:

<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

I have already tried this and am still getting the same error. It seems as if both reserved properties are empty or set to "C:" does any one have any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情徒 2024-08-27 00:24:16

您收到的错误可能表示 .NET Framework 安装问题。
创建简单的 MSBuild 文件,该文件将显示是否属于这种情况:


<项目 xmlns="http://schemas.microsoft.com/developer/ msbuild/2003">;
<目标名称=“PrintInfo”>


Errors you're receiving might indicate .NET framework installation issues.
Create simple MSBuild file which will show you if that's the case:

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">;
<Target Name="PrintInfo">
<Message Text="MSBuild tools path is:$(MSBuildToolsPath)" />
</Target>
</Project>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文