AArnott / CodeGeneration.Roslyn

Assists in performing Roslyn-based code generation during a build.
Microsoft Public License
408 stars 59 forks source link

Update Roslyn version to 2.9.0, require exact in NuGet #92

Closed amis92 closed 5 years ago

amis92 commented 5 years ago

Directory.Build.props gained RoslynNugetVersion with 2.* 2.9.0 value to always depend on latest Roslyn.

CodeGeneration.Roslyn has strict dependency on this version: Version="[$(RoslynNugetVersion)]"

Closes #77

amis92 commented 5 years ago

I've been misled by the MSBuild/deps.json cache to believe it could work with a floating version - it cannot. I've since fixed my error, and made the RoslynNugetVersion be exact, currently 2.9.0.

amis92 commented 5 years ago

@AArnott pinging for comment/review

AArnott commented 5 years ago

Thanks.