Created
July 4, 2017 00:12
-
-
Save bjorn-ali-goransson/8d03e482d8d4748bbef4e48da782706c to your computer and use it in GitHub Desktop.
Sample csproj for classic .NET apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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