tonerdo / readline

A Pure C# GNU-Readline like library for .NET/.NET Core
MIT License
810 stars 77 forks source link

Support .Net Framework #10

Closed sergiorykov closed 7 years ago

sergiorykov commented 7 years ago

You can't install nuget package for .Net Framework, unless you will explicitly specify it.

image

tonerdo commented 7 years ago

@sergiorykov this is expected as .NET Framework 4.5.2 doesn't support netstandard1.3. Although from the looks of things it seems adding net45 to the list of frameworks in the project.json should do the trick (although I don't currently have access to a Windows machine so I can't verify this). Is it possible you clone this repo and try it out? If it works I look forward to a PR :)

tonerdo commented 7 years ago

Fixed in #11