<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<!-- This dependency is shared with 10-15 other projects. -->
<ProjectReference Include="Project1.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SOME_PACKAGE" Version="SOME_VERSION" />
<!-- ... many more packages. All of these are private to this executable. -->
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<!-- This dependency is shared with 10-15 other projects. -->
<ProjectReference Include="Project1.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SOME_PACKAGE" Version="SOME_VERSION" />
<!-- ... many more packages. All of these are private to this executable. -->
</ItemGroup>