Rename 'Profile' target in visual studio to 'Development'

* When I went to explain to someone why the target was named Profile and
  not Debug as you might expect, I realised the reasons were entirely
  opaque and historical. So instead, rename it to Development since that
  is really what it's for - any profiling would be done in Release mode.
This commit is contained in:
baldurk
2016-02-28 11:33:23 +01:00
parent a347b54be4
commit 0a42d3e4d7
20 changed files with 218 additions and 218 deletions
+2 -2
View File
@@ -23,8 +23,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Profile|AnyCPU'">
<OutputPath>bin\Profile\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
<OutputPath>bin\Development\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
+4 -4
View File
@@ -43,8 +43,8 @@
<PropertyGroup>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Profile|x86'">
<OutputPath>..\Win32\Profile\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|x86'">
<OutputPath>..\Win32\Development\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>false</Optimize>
<DebugType>pdbonly</DebugType>
@@ -64,8 +64,8 @@
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Profile|x64'">
<OutputPath>..\x64\Profile\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|x64'">
<OutputPath>..\x64\Development\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>