-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Milestone
Description
There were some additional discussions on what global imports should or should not be included in the base .NET SDK. Specifically, there were concerns about:
✅ = currently included
❌ = not currently included
- ✅ System.Net.Http: The contention is that this is used for web concerns so maybe it belongs in the Web SDK instead. However, it's also very frequently used in general, even console apps.
- ❌ System.Net: This is often used in combination with System.Net.Http. We should put this in where-ever we end up putting System.Net.Http
- ❌ System.Diagnostics: This has been used in some of the Web templates. Is this a common enough concern to be included in an SDK, be it the base .NET SDK or Web SDK?
- ❌ System.Text: This is another commonly used namespace that we can consider for the base .NET SDK. Historically, this has been used
In the interest of ensuring all discussion is happening in the same place, let's use this issue as much as possible to track discussions. @DamianEdwards @RussKie.
FYI @davidfowl @halter73 @KathleenDollard @pranavkm @terrajobst
Feel free to tag anyone else who would be interested in this dicsussion. I've only included folks who have had additional input on the current import list.