fsprojects / FsLexYacc

Lexer and parser generators for F#
http://fsprojects.github.io/FsLexYacc/
MIT License
203 stars 68 forks source link

Update FsLexYacc.targets #149

Closed FriedrichGretz closed 3 years ago

FriedrichGretz commented 3 years ago

Removed conditions that require the MSBuildRuntimeType to be 'Core'.

This prevents build run issues in Visual Studio 2019 as discussed in #142.

The conditions were useful in previous versions to distinguish a build on a .Net Core system from a build on a Windows net46 system. Now that there are no alternatives since 10.2.0 you need dotnet any way and this extra conditions only causes the mentioned erratic behaviour in Visual Studio 2019.

This resolved #142

dsyme commented 3 years ago

Thanks!

sergey-tihon commented 2 years ago

@FriedrichGretz this change released in v11.0.0-beta1. Feel free to test that it works for you.