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

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


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.


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"