gpt4 book ai didi

mono - CSC : error CS0041: Unexpected error writing debug information -- 'Operation is not supported on this platform.'

转载 作者:行者123 更新时间:2023-12-03 23:24:23 32 4
gpt4 key购买 nike

刚刚下载了适用于 Mac 的 Visual Studio Professional,我似乎无法构建任何东西,因为我总是遇到相同的错误:

/Library/Frameworks/Mono.framework/Versions/4.8.0/lib/mono/xbuild/14.0/bin/Microsoft.CSharp.targets (CoreCompile target) ->

CSC: error CS0041: Unexpected error writing debug information -- 'Operation is not supported on this platform.'

19 Warning(s)
1 Error(s)

不知道要在我的项目上更改什么才能编译。

最佳答案

我可以通过两种方式解决这个问题:

  • 黑客 通过从构建中删除调试符号(在 VS 窗口中:项目属性 -> 构建选项卡 -> 高级按钮 -> 将“调试信息”下拉列表更改为“无”——不确定 VS for Mac/Xamarin Studio 中的等效项是什么)我对受影响项目的所有配置执行此操作。拉回 macOS 环境,现在构建成功。当然没有调试信息,但它可以在不破坏任何依赖的情况下工作。
  • 非黑客 根本原因是对 ASP.NET Web 项目使用 Roslyn 编译器/工具,该工具生成 PDB 文件而不是 MDB 文件,并且构建尝试在 macOS 平台上生成 PDB 文件失败(呃,“平台不受支持”。)根本原因我们还可以从受影响的项目中删除以下 nuget 包:
    <package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.0" targetFramework="net45" />
    <package id="Microsoft.Net.Compilers" version="1.0.0" targetFramework="net45" developmentDependency="true" />

  • 目前尚不清楚删除这两个包会牺牲什么。这确实允许我构建包含调试信息的受影响项目。受影响的项目仅包含 webapi 端点,并没有使用 MVC 和 Razor 引擎。如果他们在此更改的上游遇到问题,很高兴听到其他人的经验。

    HTH

    关于mono - CSC : error CS0041: Unexpected error writing debug information -- 'Operation is not supported on this platform.' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40639999/

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