Looking for a http://schemas.microsoft.com/developer/msbuild/2003 schema props reference.
Microsoft.NET.Sdk has it: https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props
But I cant find the reference for the .NET Framework. So, things like:
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D68C89E8-3517-421B-9B0C-4AFBD697E0FC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Something</RootNamespace>
<AssemblyName>Something</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
The complete list of optional properties.