Skip to content

Instantly share code, notes, and snippets.

@gulshan
Created October 20, 2016 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gulshan/98ac3d747d830e5391118690d61d5c15 to your computer and use it in GitHub Desktop.
Save gulshan/98ac3d747d830e5391118690d61d5c15 to your computer and use it in GitHub Desktop.
csproj without PropertyGroup and ItemGroup
<Project>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.0</TargetFramework>
<Compile Include="**\*.cs" />
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.0" />
<PackageReference Include="Microsoft.NET.SDK" Version="1.0.0" />
</Project>
@RehanSaeed
Copy link

The imports will be removed also.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment