Updated my VS 2017 to the newest version (was notified) and now my project won't build. Getting an error.
Severity Code Description Project File Line Suppression State
Error NU1202 Package Xamarin.Forms 2.3.4.267 is not compatible with netstandard1.3 (.NETStandard,Version=v1.3). Package Xamarin.Forms 2.3.4.267 supports:
- monoandroid10 (MonoAndroid,Version=v1.0)
- portable-monoandroid10+net45+win+win81+wp8+wpa81+xamarinios10+xamarinmac20 (.NETPortable,Version=v0.0,Profile=win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20)
- uap10.0 (UAP,Version=v10.0)
- win81 (Windows,Version=v8.1)
- wp8 (WindowsPhone,Version=v8.0)
- wpa81 (WindowsPhoneApp,Version=v8.1)
- xamarinios10 (Xamarin.iOS,Version=v1.0)
My project.json has this in it, which has always been there when it was working:
"frameworks": {
"netstandard1.3": {
"imports": "portable-net45+win8+wpa81+wp8"
}
}
Any clue why it would stop building?