
This looks like a result of removing AssemblyInfo.cs :( @nguerrera
Got it back by adding <Folder Include="Properties"/> but we need to figure out what we're going to do if we have nothing under Properties by default.
TBH, I saw that and thought "by design". What value does it add with no children? Anything other than double click to get property pane?
@BillHiebert will launch profiles show up in solution explorer under Properties and will there always be a launch profile?
Okay, after a day of using .NET Core projects this has bothered me - it makes getting into Properties just a little bit harder so I want to tackle this.
Here's my proposal, we add an empty AssemblyInfo.cs that basically points the user to editing the project file, so that that anyone coming from traditional .NET projects get a pointer to the new way.
@srivatsn @nguerrera Any pushback on this?
Double-clicking on the node to open properties is convenient, but I'm inclined to think it's not worth the extra clutter in the solution tree. So my preference would be to leave it out.
@dsplaisted don't break people's muscle memory 馃槃
Here's my proposal, we add an empty AssemblyInfo.cs that basically points the user to editing the project file, so that that anyone coming from traditional .NET projects get a pointer to the new way.
Make it not empty? Just leave out the version info...
I would prefer to have the node, and not have a Properties folder or AssemblyInfo.cs. Deleting those would be the first thing I would do when creating a new project.
How about always having an empty double-clickable node regardless of project contents.
Does the folder include work if there's no properties folder on disk? Will it create the folder always or only if I add a file to it? If the latter could we put the include in our props somehow? (There's something else needed to get includes from imports isn't there?)
Yes the folder include works even if the folder doesn't exist. I remember @davkean had some reason why just adding a Folder include in the SDK targets wasn't good enough. Can't remember the reason.
The folder doesn't work - it appears it does, but you can't add items to it.
I'm going to play around with this - the experience I want, is that you can delete the folder and it disappears without adding anything to your project file.
Here are the requirements that I have in mind:
We've lived without this for many releases, I don't think we're going to change this.
Most helpful comment
Double-clicking on the node to open properties is convenient, but I'm inclined to think it's not worth the extra clutter in the solution tree. So my preference would be to leave it out.