Can files be nested in VS2017 Solution Explorer for .NET Core (non-ASP.NET Core) projects?
I have it working in one of my Microsoft.NET.Sdk-style projects using something similar to the following: <ItemGroup> <Compile Update=”LocalDateTest.*.cs”> <DependentUpon>LocalDateTest.cs</DependentUpon> </Compile> </ItemGroup> The trick here is to use Update instead of Include. This is because the implicit items are coming from a props file that is imported before the main project. An additional Include won’t … Read more