You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of #88 we support frameworks like .NET 3.5 when imported from NuGet packages, but we can't compile anything (if you dep on @net packages... which you do by default). Once Microsoft adds .NET 3.5 to their package we should wire it up.
The text was updated successfully, but these errors were encountered:
Because net35 is still in support and net40 and net20 are not, and this targeting pack includes net20 and net40 but not net35, and because I'm familiar with the pain of not having the choice to stop supporting net35, I created a community package to go along with these:
There doesn't seem to be any technical limitation distinguishing this package from the Microsoft packages, and my integration tests show this working fine:
This solves the problem of having to use VSWhere to find MSBuild when compiling for net35 on Windows and the problem of having to use Mono's MSBuild when compiling for net35 on macOS and Linux. dotnet build all the way. Here's to less infrastructure fighting. Happy coding!
See dotnet/installer#2022
As of #88 we support frameworks like .NET 3.5 when imported from NuGet packages, but we can't compile anything (if you dep on
@net
packages... which you do by default). Once Microsoft adds .NET 3.5 to their package we should wire it up.The text was updated successfully, but these errors were encountered: