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

Commit 150f0e6

Browse files
authored
[MemoryDemo] Make sure the same output path isn't used with multiple configurations. (#395)
Make sure the same output path isn't used with multiple configurations by using the correct configuration name in the output path.
1 parent 74b7c18 commit 150f0e6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Profiling/MemoryDemo/MemoryDemo/MemoryDemo.csproj

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
21-
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
21+
<OutputPath>bin\iPhoneSimulator\Before-Debug</OutputPath>
2222
<DefineConstants>DEBUG;GREEDY;</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
@@ -32,7 +32,7 @@
3232
<DebugSymbols>true</DebugSymbols>
3333
<DebugType>full</DebugType>
3434
<Optimize>false</Optimize>
35-
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
35+
<OutputPath>bin\iPhoneSimulator\After-Debug</OutputPath>
3636
<DefineConstants>DEBUG;</DefineConstants>
3737
<ErrorReport>prompt</ErrorReport>
3838
<WarningLevel>4</WarningLevel>
@@ -45,7 +45,7 @@
4545
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Before-Release|iPhoneSimulator' ">
4646
<DebugType>none</DebugType>
4747
<Optimize>true</Optimize>
48-
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
48+
<OutputPath>bin\iPhoneSimulator\Before-Release</OutputPath>
4949
<DefineConstants>GREEDY;</DefineConstants>
5050
<ErrorReport>prompt</ErrorReport>
5151
<WarningLevel>4</WarningLevel>
@@ -57,7 +57,7 @@
5757
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'After-Release|iPhoneSimulator' ">
5858
<DebugType>none</DebugType>
5959
<Optimize>true</Optimize>
60-
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
60+
<OutputPath>bin\iPhoneSimulator\After-Release</OutputPath>
6161
<ErrorReport>prompt</ErrorReport>
6262
<WarningLevel>4</WarningLevel>
6363
<ConsolePause>false</ConsolePause>
@@ -69,7 +69,7 @@
6969
<DebugSymbols>true</DebugSymbols>
7070
<DebugType>full</DebugType>
7171
<Optimize>false</Optimize>
72-
<OutputPath>bin\iPhone\Debug</OutputPath>
72+
<OutputPath>bin\iPhone\Before-Debug</OutputPath>
7373
<DefineConstants>DEBUG;GREEDY;</DefineConstants>
7474
<ErrorReport>prompt</ErrorReport>
7575
<WarningLevel>4</WarningLevel>
@@ -83,7 +83,7 @@
8383
<DebugSymbols>true</DebugSymbols>
8484
<DebugType>full</DebugType>
8585
<Optimize>false</Optimize>
86-
<OutputPath>bin\iPhone\Debug</OutputPath>
86+
<OutputPath>bin\iPhone\After-Debug</OutputPath>
8787
<DefineConstants>DEBUG;</DefineConstants>
8888
<ErrorReport>prompt</ErrorReport>
8989
<WarningLevel>4</WarningLevel>
@@ -96,7 +96,7 @@
9696
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Before-Release|iPhone' ">
9797
<DebugType>none</DebugType>
9898
<Optimize>true</Optimize>
99-
<OutputPath>bin\iPhone\Release</OutputPath>
99+
<OutputPath>bin\iPhone\Before-Release</OutputPath>
100100
<DefineConstants>GREEDY;</DefineConstants>
101101
<ErrorReport>prompt</ErrorReport>
102102
<WarningLevel>4</WarningLevel>
@@ -108,7 +108,7 @@
108108
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'After-Release|iPhone' ">
109109
<DebugType>none</DebugType>
110110
<Optimize>true</Optimize>
111-
<OutputPath>bin\iPhone\Release</OutputPath>
111+
<OutputPath>bin\iPhone\After-Release</OutputPath>
112112
<ErrorReport>prompt</ErrorReport>
113113
<WarningLevel>4</WarningLevel>
114114
<ConsolePause>false</ConsolePause>

0 commit comments

Comments
 (0)