Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support VS Mac 17.x #131

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft

Support VS Mac 17.x #131

wants to merge 3 commits into from

Commits on Jun 2, 2022

  1. Allow text templating to work in Visual Studio for Mac

    Running the text templating engine within Visual Studio for Mac fails
    since the RuntimeInfo fails to find any SDK directory.
    
    When using the Roslyn code compiler there is now no exception if no
    SDK is found. The SDK location is not needed for the Roslyn compiler
    since there is no external csc.dll to run.
    
    Also use a better default C# lang version for the Roslyn code compiler
    instead of 7.0
    mrward committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    7f010d8 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. Roslyn compiler was not using the best supported C# lang version

    The CSharpParseOptions was not using the best language version. The
    CSharpParseOptions was created but no language version was used from
    the RuntimeInfo nor the language version specified by the Roslyn code
    compiler.
    mrward committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    d84065e View commit details
    Browse the repository at this point in the history
  2. Remove unused DefaultMaxSupportedLangVersion property

    Not needed on the RuntimeInfo class anymore.
    mrward committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    c411b6a View commit details
    Browse the repository at this point in the history