Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[MemoryDemo] Make sure the same output path isn't used with multiple …
Browse files Browse the repository at this point in the history
…configurations. (#395)

Make sure the same output path isn't used with multiple configurations by
using the correct configuration name in the output path.
  • Loading branch information
rolfbjarne authored Dec 2, 2019
1 parent 74b7c18 commit 150f0e6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Profiling/MemoryDemo/MemoryDemo/MemoryDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
<OutputPath>bin\iPhoneSimulator\Before-Debug</OutputPath>
<DefineConstants>DEBUG;GREEDY;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -32,7 +32,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
<OutputPath>bin\iPhoneSimulator\After-Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -45,7 +45,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Before-Release|iPhoneSimulator' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<OutputPath>bin\iPhoneSimulator\Before-Release</OutputPath>
<DefineConstants>GREEDY;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -57,7 +57,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'After-Release|iPhoneSimulator' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<OutputPath>bin\iPhoneSimulator\After-Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
Expand All @@ -69,7 +69,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhone\Debug</OutputPath>
<OutputPath>bin\iPhone\Before-Debug</OutputPath>
<DefineConstants>DEBUG;GREEDY;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -83,7 +83,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhone\Debug</OutputPath>
<OutputPath>bin\iPhone\After-Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -96,7 +96,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Before-Release|iPhone' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<OutputPath>bin\iPhone\Before-Release</OutputPath>
<DefineConstants>GREEDY;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -108,7 +108,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'After-Release|iPhone' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<OutputPath>bin\iPhone\After-Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
Expand Down

0 comments on commit 150f0e6

Please sign in to comment.