-
Notifications
You must be signed in to change notification settings - Fork 407
Closed
Labels
Feature-WinFormsFeatures related to bringing up the Windows Forms designer and related features.Features related to bringing up the Windows Forms designer and related features.Parity-Legacy-FeatureMissing features from the legacy project system.Missing features from the legacy project system.Resolution-DuplicateThe bug is a duplicate of another bug in this or another repo.The bug is a duplicate of another bug in this or another repo.
Milestone
Description
I was not able to tell if this issue was already tracked.
Start with this .csproj (15.0.26014.0):
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net452</TargetFramework>
<RuntimeIdentifier>win</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" />
<EmbeddedResource Include="**\*.resx" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
</Project>Select Windows Form in Add New Item and see Form1.cs and Form1.designer.cs nodes are siblings in Solution Explorer, and this is the .csproj:
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net452</TargetFramework>
<RuntimeIdentifier>win</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" />
<EmbeddedResource Include="**\*.resx" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Form1.Designer.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>Metadata
Metadata
Assignees
Labels
Feature-WinFormsFeatures related to bringing up the Windows Forms designer and related features.Features related to bringing up the Windows Forms designer and related features.Parity-Legacy-FeatureMissing features from the legacy project system.Missing features from the legacy project system.Resolution-DuplicateThe bug is a duplicate of another bug in this or another repo.The bug is a duplicate of another bug in this or another repo.