Skip to content

Instantly share code, notes, and snippets.

@bjorn-ali-goransson
Created July 4, 2017 00:12
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 bjorn-ali-goransson/8d03e482d8d4748bbef4e48da782706c to your computer and use it in GitHub Desktop.
Save bjorn-ali-goransson/8d03e482d8d4748bbef4e48da782706c to your computer and use it in GitHub Desktop.
Sample csproj for classic .NET apps
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
<OutputTypeEx>library</OutputTypeEx>
<BuildOutputTargetFolder>lib\net461</BuildOutputTargetFolder>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment