Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: devlooped/ThisAssembly
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: devlooped/ThisAssembly
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.3
Choose a head ref
  • 4 commits
  • 10 files changed
  • 1 contributor

Commits on Dec 11, 2020

  1. 🖫 Remove old fix that persisted files to disk

    This no longer needed since intellisense works just fine nowadays.
    
    In addition, if persisting the sources for inspection is required, the following two MSBuild properties can be used to persist them: `EmitCompilerGeneratedFiles` and (optionally) `CompilerGeneratedFilesOutputPath`. If no custom path is provided, files will be persisted to the `$(IntermediateOutputPath)/generated/[GeneratorAssembly]/[GeneratorTypeFullName]` folder.
    
    See also dotnet/roslyn#47047.
    kzu committed Dec 11, 2020
    Configuration menu
    Copy the full SHA
    65d43b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73286b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e68332a View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2020

  1. Ensure C# language version is 9.0+

    Instead of forcing `preview` as the lang version, we now detect the whole range of valid values for the `LangVersion` property that users might configure, as documented in https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/langversion-compiler-option, and show an error if it's not `preview`, `latest`, `latestMajor` or is less than `9.0`.
    
    Fixes #26
    kzu committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    8e66ac4 View commit details
    Browse the repository at this point in the history
Loading