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

前端 未结 5 793
生来不讨喜
生来不讨喜 2021-02-04 05:52

Just downloaded Visual Studio Professional for Mac and I cannot seem to build anything as I always get the same error:

/Library/Frameworks/Mono.framework/Version         


        
相关标签:
5条回答
  • 2021-02-04 06:36

    I hope not to come too late, I did the following to solve the problem:

    1. Right click in the solution and select "Options",

    2. Select tab Build -> Configurations,

    3. In "Configuration A." select "Debug" and disable all builds marks and click accept,

    4. Clean, rebuild and execute project.

    I hope this helps.

    0 讨论(0)
  • 2021-02-04 06:42

    This is a bug that will be fixed shortly. Meanwhile, you can edit your csproj file to add

    <DebugType Condition="'$(OS)' != 'Windows_NT'">portable</DebugType>
    

    after the line with <DebugType>full</DebugType> or <DebugType>pdbonly</DebugType>

    Essentially, we want the DebugType property on Mac to be portable, which is supported by Roslyn's csc.exe on non-windows platforms, instead of pdb.

    0 讨论(0)
  • 2021-02-04 06:45

    After I deleted the line

    <DebugType>pdbonly</DebugType>
    

    from the .csproj file, the build became successful.

    0 讨论(0)
  • 2021-02-04 06:54

    I was able to work around this problem two ways:

    1. HACK By removing debug symbols from the build (in VS windows: Project Properties -> Build Tab -> Advanced button -> change "Debug Info" dropdown to "none" -- not sure what equivalent is in VS for Mac / Xamarin Studio) I did this for all configurations of affected project(s). Pulled back to macOS env, build now succeeds. No debug info of course, but it works without breaking any deps.

    2. NON-HACK Root cause is the use of Roslyn compiler/tools for ASP.NET Web projects, and this tool produces PDB files instead of MDB files, and the build fails trying to produce PDB files on macOS platform (er go "platform unsupported".) Knowing the root cause we can also remove the following nuget packages from the affected projects:

      <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" />
      

    It's unclear what is sacrificed by removing these two packages. This does allow me to build the affected projects with the debug info included. The affected projects only contained webapi endpoints, and no use of MVC nor Razor engine. It would be nice to hear the experiences of others if they had issues upstream from this change.

    HTH

    0 讨论(0)
  • 2021-02-04 06:56

    To solve this problem you need to do :

    1. Select project

    2. Right click and select options

    3. Select tab Build -> Compiler
    4. Debug information -> None

    It solved this error but gives me another one

    "System.IO.FileNotFoundException Could not find file "/Users/.../.../bin\roslyn\csc.exe"

    0 讨论(0)
提交回复
热议问题