AArnott / CodeGeneration.Roslyn

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

Target netstandard2.0 and use Roslyn 3.0 #126

Closed amis92 closed 5 years ago

amis92 commented 5 years ago

So, since the project right now is completely independent of Visual Studio version, I've upgraded Roslyn to v3.0 and targeted netstandard2.0, and the tool itself now targets netcoreapp2.1.

The only requirements are:

Thanks to CodeGeneration.Roslyn not integrating with MSBuild now, the tool runs as a .NET Core app completely independent of all the other parts (VS, MSBuild, platform etc). The price is that we always use our own Roslyn version which we need to update manually.

Triggered by, and closes #124

amis92 commented 5 years ago

Also, @AArnott - after it's merged, can you create a release? :)