Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upUnable to open System.Private.CoreLib.sln in Mac with "not support framework" error message #20300
Comments
jkotas
added
the
area-Build
label
Oct 8, 2018
This comment has been minimized.
This comment has been minimized.
kaby76
commented
Feb 2, 2019
I don't know if you solved this problem, but I had a similar problem just on Windows. I could not find any instructions on how to open the .sln file in VS 2017 IDE from a straight clone from the Git repository. Reading the build scripts, a solution that works requires two steps: (a) do a "./build" of the code in Coreclr. This is required to generate files. (b) set PYTHON to the full path of the Python executable, which you can check with "command -v python from within Bash". This is because the .csproj uses $(PYTHON). With that, I can open the .sln file, do critical navigation, evaluation, and changes of the code for my port of System.Private.CoreLib. Building within the IDE doesn't work, but ./build does so NBD. |
leoninez commentedOct 8, 2018
Environment Information:
OS : Mac OS 10.13.6
Visual Studio : Visual Studio for Mac Community version 7.6.8 (build 38)
.Net SDK : dotnet-sdk-2.1.402-osx-x64
Coreclr code : Master branch with latest commit as: 6f66b1e
Actions
Error Message
Need help
Thank you very much