Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Last active August 29, 2015 14:06
Show Gist options
  • Save ThomasArdal/cd9073efa0780de55268 to your computer and use it in GitHub Desktop.
Save ThomasArdal/cd9073efa0780de55268 to your computer and use it in GitHub Desktop.
Debug Property Group With Experimental
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>Experimental</LangVersion>
</PropertyGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment