David Kean

Results 120 comments of David Kean

Just as a side note, that SDKs node is actually something different; "Extension SDKs" not be confused with "MSBuild SDKs". I think we should rename the former from "SDK ->...

Is there a general purpose version that comes with the MSBuild SDK itself (think like when the SDK comes from a package) that we can pull so we don't have...

@asbjornu Can you try the VS 15 Preview, and try this feature: ![image](https://cloud.githubusercontent.com/assets/1103906/15579267/b75ab6d2-2318-11e6-814f-6ad6809f2395.png) ![image](https://cloud.githubusercontent.com/assets/1103906/15579315/f729318a-2318-11e6-8dc8-d0e39d2c0d5e.png) It sounds like more what you are looking for.

XLarge right now because we don't know what the design is, or how it will work.

We're doing this as part of the language service hookup rewrite in 15.8. First part is in review, but we've only started on 15.8 this week. We're at least a...

Appreciate your patience here, but due to the nature of software development it is hard to give a timeframe especially given the feature it was blocked on, only got to...

Nice catch. I've briefly identified some issues that I know will affect this, but at the time I was thinking multiple projects sharing output/intermediate directories, I was not thinking about...

Hmm, it does the same thing for loops: ``` C# var list = new List(); list.Add(1); list.Add(2); list.Add(3); var count = 0; for (int i = 0; i < list.Count;...

That warning is too subtle - I'd be happier if was more prominent. Up and until this point, I've assumed all refactorings were safe without thought was to whether they...

The new project system currently drives the solution tree off the "active" configuration. The old project system drives the solution tree by ignoring conditions. They both have advantages/disadvantages. Under the...