Skip to content

Commit 26a20d7

Browse files
Disable Optimizations for Debug configuration, and remove superfluous solution configuration in samples solution
1 parent cac2d55 commit 26a20d7

File tree

10 files changed

+19
-127
lines changed

10 files changed

+19
-127
lines changed

Listener/Listener.csproj

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<PlatformTarget>x86</PlatformTarget>
4040
<DebugSymbols>true</DebugSymbols>
4141
<DebugType>full</DebugType>
42-
<Optimize>true</Optimize>
42+
<Optimize>false</Optimize>
4343
<OutputPath>bin\Debug\</OutputPath>
4444
<DefineConstants>DEBUG</DefineConstants>
4545
<ErrorReport>prompt</ErrorReport>
@@ -59,26 +59,11 @@
5959
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
6060
<UseVSHostingProcess>false</UseVSHostingProcess>
6161
</PropertyGroup>
62-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == '3M4|x86'">
63-
<DebugSymbols>true</DebugSymbols>
64-
<OutputPath>bin\x86\3M4\</OutputPath>
65-
<DefineConstants>DEBUG;TRACE</DefineConstants>
66-
<DebugType>full</DebugType>
67-
<PlatformTarget>x86</PlatformTarget>
68-
<CodeAnalysisLogFile>bin\Debug\videoView.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
69-
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
70-
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
71-
<ErrorReport>prompt</ErrorReport>
72-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
73-
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
74-
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
75-
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
76-
</PropertyGroup>
7762
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
7863
<DebugSymbols>true</DebugSymbols>
7964
<OutputPath>bin\Debug\</OutputPath>
8065
<DefineConstants>DEBUG</DefineConstants>
81-
<Optimize>true</Optimize>
66+
<Optimize>false</Optimize>
8267
<DebugType>full</DebugType>
8368
<PlatformTarget>AnyCPU</PlatformTarget>
8469
<CodeAnalysisLogFile>bin\Debug\videoView.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
@@ -108,21 +93,6 @@
10893
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
10994
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
11095
</PropertyGroup>
111-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == '3M4|AnyCPU'">
112-
<DebugSymbols>true</DebugSymbols>
113-
<OutputPath>bin\3M4\</OutputPath>
114-
<DefineConstants>DEBUG;TRACE</DefineConstants>
115-
<DebugType>full</DebugType>
116-
<PlatformTarget>AnyCPU</PlatformTarget>
117-
<CodeAnalysisLogFile>bin\Debug\videoView.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
118-
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
119-
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
120-
<ErrorReport>prompt</ErrorReport>
121-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
122-
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
123-
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
124-
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
125-
</PropertyGroup>
12696
<ItemGroup>
12797
<Reference Include="Messages, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
12898
<SpecificVersion>False</SpecificVersion>

ROS_Comm/ROS_C-Sharp.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
3232
<UseApplicationTrust>false</UseApplicationTrust>
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
34-
<TargetFrameworkProfile></TargetFrameworkProfile>
34+
<TargetFrameworkProfile>
35+
</TargetFrameworkProfile>
3536
</PropertyGroup>
3637
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
3738
<DebugSymbols>true</DebugSymbols>
@@ -74,7 +75,7 @@
7475
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
7576
<DebugSymbols>true</DebugSymbols>
7677
<OutputPath>bin\Debug\</OutputPath>
77-
<DefineConstants>DEBUG</DefineConstants>
78+
<DefineConstants>TRACE;DEBUG</DefineConstants>
7879
<Optimize>false</Optimize>
7980
<DebugType>full</DebugType>
8081
<PlatformTarget>AnyCPU</PlatformTarget>

ROS_ImageUtils/ROS_ImageWPF.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
5353
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
5454
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
55-
<Optimize>true</Optimize>
55+
<Optimize>false</Optimize>
5656
<UseVSHostingProcess>false</UseVSHostingProcess>
5757
</PropertyGroup>
5858
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
@@ -77,7 +77,7 @@
7777
<DebugSymbols>true</DebugSymbols>
7878
<OutputPath>bin\Debug\</OutputPath>
7979
<DefineConstants>DEBUG</DefineConstants>
80-
<Optimize>true</Optimize>
80+
<Optimize>false</Optimize>
8181
<DebugType>full</DebugType>
8282
<PlatformTarget>AnyCPU</PlatformTarget>
8383
<CodeAnalysisLogFile>bin\Debug\ROS_ImageWPF.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>

ROS_dotNET_ROS_SAMPLES.sln

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,13 @@ EndProject
3434
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Listener", "Listener\Listener.csproj", "{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}"
3535
EndProject
3636
Global
37-
GlobalSection(Performance) = preSolution
38-
HasPerformanceSessions = true
39-
EndGlobalSection
4037
GlobalSection(SolutionConfigurationPlatforms) = preSolution
41-
3M4|Any CPU = 3M4|Any CPU
42-
3M4|x86 = 3M4|x86
4338
Debug|Any CPU = Debug|Any CPU
4439
Debug|x86 = Debug|x86
4540
Release|Any CPU = Release|Any CPU
4641
Release|x86 = Release|x86
4742
EndGlobalSection
4843
GlobalSection(ProjectConfigurationPlatforms) = postSolution
49-
{D3688C9B-26CA-498B-A142-68F8050A590A}.3M4|Any CPU.ActiveCfg = Release|Any CPU
50-
{D3688C9B-26CA-498B-A142-68F8050A590A}.3M4|Any CPU.Build.0 = Release|Any CPU
51-
{D3688C9B-26CA-498B-A142-68F8050A590A}.3M4|x86.ActiveCfg = Release|Any CPU
5244
{D3688C9B-26CA-498B-A142-68F8050A590A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5345
{D3688C9B-26CA-498B-A142-68F8050A590A}.Debug|Any CPU.Build.0 = Debug|Any CPU
5446
{D3688C9B-26CA-498B-A142-68F8050A590A}.Debug|x86.ActiveCfg = Debug|x86
@@ -57,9 +49,6 @@ Global
5749
{D3688C9B-26CA-498B-A142-68F8050A590A}.Release|Any CPU.Build.0 = Release|Any CPU
5850
{D3688C9B-26CA-498B-A142-68F8050A590A}.Release|x86.ActiveCfg = Release|x86
5951
{D3688C9B-26CA-498B-A142-68F8050A590A}.Release|x86.Build.0 = Release|x86
60-
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.3M4|Any CPU.ActiveCfg = Release|Any CPU
61-
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.3M4|Any CPU.Build.0 = Release|Any CPU
62-
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.3M4|x86.ActiveCfg = Release|Any CPU
6352
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
6453
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
6554
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Debug|x86.ActiveCfg = Debug|x86
@@ -68,9 +57,6 @@ Global
6857
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Release|Any CPU.Build.0 = Release|Any CPU
6958
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Release|x86.ActiveCfg = Release|x86
7059
{1A913959-AF59-4EBE-A4EF-41D51F856EF0}.Release|x86.Build.0 = Release|x86
71-
{6D75A4F8-3C25-49FD-B713-9A5181082244}.3M4|Any CPU.ActiveCfg = Release|Any CPU
72-
{6D75A4F8-3C25-49FD-B713-9A5181082244}.3M4|Any CPU.Build.0 = Release|Any CPU
73-
{6D75A4F8-3C25-49FD-B713-9A5181082244}.3M4|x86.ActiveCfg = Release|Any CPU
7460
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7561
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Debug|Any CPU.Build.0 = Debug|Any CPU
7662
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Debug|x86.ActiveCfg = Debug|x86
@@ -79,9 +65,6 @@ Global
7965
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Release|Any CPU.Build.0 = Release|Any CPU
8066
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Release|x86.ActiveCfg = Release|x86
8167
{6D75A4F8-3C25-49FD-B713-9A5181082244}.Release|x86.Build.0 = Release|x86
82-
{A9E51467-A465-4D81-9412-25D9A9D424F9}.3M4|Any CPU.ActiveCfg = Release|Any CPU
83-
{A9E51467-A465-4D81-9412-25D9A9D424F9}.3M4|Any CPU.Build.0 = Release|Any CPU
84-
{A9E51467-A465-4D81-9412-25D9A9D424F9}.3M4|x86.ActiveCfg = Release|Any CPU
8568
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
8669
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
8770
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Debug|x86.ActiveCfg = Debug|x86
@@ -90,9 +73,6 @@ Global
9073
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Release|Any CPU.Build.0 = Release|Any CPU
9174
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Release|x86.ActiveCfg = Release|x86
9275
{A9E51467-A465-4D81-9412-25D9A9D424F9}.Release|x86.Build.0 = Release|x86
93-
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.3M4|Any CPU.ActiveCfg = Release|Any CPU
94-
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.3M4|Any CPU.Build.0 = Release|Any CPU
95-
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.3M4|x86.ActiveCfg = Release|Any CPU
9676
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
9777
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Debug|Any CPU.Build.0 = Debug|Any CPU
9878
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Debug|x86.ActiveCfg = Debug|x86
@@ -101,10 +81,6 @@ Global
10181
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Release|Any CPU.Build.0 = Release|Any CPU
10282
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Release|x86.ActiveCfg = Release|x86
10383
{6B80C4EB-9982-47C0-A127-AE46440E1F22}.Release|x86.Build.0 = Release|x86
104-
{0A642FA3-58AB-4DBD-94DD-87948062F559}.3M4|Any CPU.ActiveCfg = 3M4|Any CPU
105-
{0A642FA3-58AB-4DBD-94DD-87948062F559}.3M4|Any CPU.Build.0 = 3M4|Any CPU
106-
{0A642FA3-58AB-4DBD-94DD-87948062F559}.3M4|x86.ActiveCfg = 3M4|x86
107-
{0A642FA3-58AB-4DBD-94DD-87948062F559}.3M4|x86.Build.0 = 3M4|x86
10884
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10985
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Debug|Any CPU.Build.0 = Debug|Any CPU
11086
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Debug|x86.ActiveCfg = Debug|x86
@@ -113,9 +89,6 @@ Global
11389
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Release|Any CPU.Build.0 = Release|Any CPU
11490
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Release|x86.ActiveCfg = Release|x86
11591
{0A642FA3-58AB-4DBD-94DD-87948062F559}.Release|x86.Build.0 = Release|x86
116-
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.3M4|Any CPU.ActiveCfg = Release|Any CPU
117-
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.3M4|Any CPU.Build.0 = Release|Any CPU
118-
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.3M4|x86.ActiveCfg = Release|Any CPU
11992
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12093
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Debug|Any CPU.Build.0 = Debug|Any CPU
12194
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Debug|x86.ActiveCfg = Debug|x86
@@ -124,9 +97,6 @@ Global
12497
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Release|Any CPU.Build.0 = Release|Any CPU
12598
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Release|x86.ActiveCfg = Release|x86
12699
{684FFC24-B4C8-48B9-8195-1EE725F2312C}.Release|x86.Build.0 = Release|x86
127-
{669CB812-A371-4374-97DE-1857BF34A886}.3M4|Any CPU.ActiveCfg = Release|Any CPU
128-
{669CB812-A371-4374-97DE-1857BF34A886}.3M4|Any CPU.Build.0 = Release|Any CPU
129-
{669CB812-A371-4374-97DE-1857BF34A886}.3M4|x86.ActiveCfg = Release|Any CPU
130100
{669CB812-A371-4374-97DE-1857BF34A886}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
131101
{669CB812-A371-4374-97DE-1857BF34A886}.Debug|Any CPU.Build.0 = Debug|Any CPU
132102
{669CB812-A371-4374-97DE-1857BF34A886}.Debug|x86.ActiveCfg = Debug|x86
@@ -135,9 +105,6 @@ Global
135105
{669CB812-A371-4374-97DE-1857BF34A886}.Release|Any CPU.Build.0 = Release|Any CPU
136106
{669CB812-A371-4374-97DE-1857BF34A886}.Release|x86.ActiveCfg = Release|x86
137107
{669CB812-A371-4374-97DE-1857BF34A886}.Release|x86.Build.0 = Release|x86
138-
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.3M4|Any CPU.ActiveCfg = Release|Any CPU
139-
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.3M4|Any CPU.Build.0 = Release|Any CPU
140-
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.3M4|x86.ActiveCfg = Release|Any CPU
141108
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
142109
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Debug|Any CPU.Build.0 = Debug|Any CPU
143110
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Debug|x86.ActiveCfg = Debug|x86
@@ -146,9 +113,6 @@ Global
146113
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Release|Any CPU.Build.0 = Release|Any CPU
147114
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Release|x86.ActiveCfg = Release|x86
148115
{24AE8542-22EA-4D2A-B589-0882AF18E80B}.Release|x86.Build.0 = Release|x86
149-
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.3M4|Any CPU.ActiveCfg = Release|Any CPU
150-
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.3M4|Any CPU.Build.0 = Release|Any CPU
151-
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.3M4|x86.ActiveCfg = Release|Any CPU
152116
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
153117
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Debug|Any CPU.Build.0 = Debug|Any CPU
154118
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Debug|x86.ActiveCfg = Debug|x86
@@ -157,9 +121,6 @@ Global
157121
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Release|Any CPU.Build.0 = Release|Any CPU
158122
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Release|x86.ActiveCfg = Release|x86
159123
{E0E04AFE-E2CF-4A04-A331-76FE05DCC749}.Release|x86.Build.0 = Release|x86
160-
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.3M4|Any CPU.ActiveCfg = Release|Any CPU
161-
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.3M4|Any CPU.Build.0 = Release|Any CPU
162-
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.3M4|x86.ActiveCfg = Release|Any CPU
163124
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
164125
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Debug|Any CPU.Build.0 = Debug|Any CPU
165126
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Debug|x86.ActiveCfg = Debug|x86
@@ -168,9 +129,6 @@ Global
168129
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Release|Any CPU.Build.0 = Release|Any CPU
169130
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Release|x86.ActiveCfg = Release|x86
170131
{DC786B4E-091F-4C7F-8812-EF09D7BFE290}.Release|x86.Build.0 = Release|x86
171-
{31A64FAA-CC90-4549-A028-752002015E2C}.3M4|Any CPU.ActiveCfg = Release|Any CPU
172-
{31A64FAA-CC90-4549-A028-752002015E2C}.3M4|Any CPU.Build.0 = Release|Any CPU
173-
{31A64FAA-CC90-4549-A028-752002015E2C}.3M4|x86.ActiveCfg = Release|Any CPU
174132
{31A64FAA-CC90-4549-A028-752002015E2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
175133
{31A64FAA-CC90-4549-A028-752002015E2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
176134
{31A64FAA-CC90-4549-A028-752002015E2C}.Debug|x86.ActiveCfg = Debug|x86
@@ -179,9 +137,6 @@ Global
179137
{31A64FAA-CC90-4549-A028-752002015E2C}.Release|Any CPU.Build.0 = Release|Any CPU
180138
{31A64FAA-CC90-4549-A028-752002015E2C}.Release|x86.ActiveCfg = Release|x86
181139
{31A64FAA-CC90-4549-A028-752002015E2C}.Release|x86.Build.0 = Release|x86
182-
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.3M4|Any CPU.ActiveCfg = Release|x86
183-
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.3M4|x86.ActiveCfg = Release|x86
184-
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.3M4|x86.Build.0 = Release|x86
185140
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
186141
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
187142
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Debug|x86.ActiveCfg = Debug|x86
@@ -190,10 +145,6 @@ Global
190145
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Release|Any CPU.Build.0 = Release|Any CPU
191146
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Release|x86.ActiveCfg = Release|x86
192147
{3F4BE4AA-4BDE-4976-A69D-C2CCB848E3BB}.Release|x86.Build.0 = Release|x86
193-
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.3M4|Any CPU.ActiveCfg = 3M4|Any CPU
194-
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.3M4|Any CPU.Build.0 = 3M4|Any CPU
195-
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.3M4|x86.ActiveCfg = 3M4|x86
196-
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.3M4|x86.Build.0 = 3M4|x86
197148
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
198149
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
199150
{D6D6BC46-524E-4DE5-8B9D-9CD7E47DD4C6}.Debug|x86.ActiveCfg = Debug|x86

RosParamClient/RosParamClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PlatformTarget>x86</PlatformTarget>
2020
<DebugSymbols>true</DebugSymbols>
2121
<DebugType>full</DebugType>
22-
<Optimize>true</Optimize>
22+
<Optimize>false</Optimize>
2323
<OutputPath>bin\Debug\</OutputPath>
2424
<DefineConstants>DEBUG</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
@@ -41,7 +41,7 @@
4141
<DebugSymbols>true</DebugSymbols>
4242
<OutputPath>bin\Debug\</OutputPath>
4343
<DefineConstants>DEBUG</DefineConstants>
44-
<Optimize>true</Optimize>
44+
<Optimize>false</Optimize>
4545
<DebugType>full</DebugType>
4646
<PlatformTarget>AnyCPU</PlatformTarget>
4747
<CodeAnalysisLogFile>bin\Debug\rosparam.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>

ServiceClientSample/ServiceClientSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PlatformTarget>x86</PlatformTarget>
2222
<DebugSymbols>true</DebugSymbols>
2323
<DebugType>full</DebugType>
24-
<Optimize>true</Optimize>
24+
<Optimize>false</Optimize>
2525
<OutputPath>bin\Debug\</OutputPath>
2626
<DefineConstants>DEBUG</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
@@ -43,7 +43,7 @@
4343
<DebugSymbols>true</DebugSymbols>
4444
<OutputPath>bin\Debug\</OutputPath>
4545
<DefineConstants>DEBUG</DefineConstants>
46-
<Optimize>true</Optimize>
46+
<Optimize>false</Optimize>
4747
<DebugType>full</DebugType>
4848
<PlatformTarget>AnyCPU</PlatformTarget>
4949
<CodeAnalysisLogFile>bin\Debug\ServiceClientTest.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>

ServiceServerSample/ServiceServerSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PlatformTarget>x86</PlatformTarget>
2222
<DebugSymbols>true</DebugSymbols>
2323
<DebugType>full</DebugType>
24-
<Optimize>true</Optimize>
24+
<Optimize>false</Optimize>
2525
<OutputPath>bin\Debug\</OutputPath>
2626
<DefineConstants>DEBUG</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
@@ -43,7 +43,7 @@
4343
<DebugSymbols>true</DebugSymbols>
4444
<OutputPath>bin\Debug\</OutputPath>
4545
<DefineConstants>DEBUG</DefineConstants>
46-
<Optimize>true</Optimize>
46+
<Optimize>false</Optimize>
4747
<DebugType>full</DebugType>
4848
<PlatformTarget>AnyCPU</PlatformTarget>
4949
<CodeAnalysisLogFile>bin\Debug\ServiceServerTest.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>

SimplePublisher/SimplePublisher/SimplePublisher.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PlatformTarget>x86</PlatformTarget>
2222
<DebugSymbols>true</DebugSymbols>
2323
<DebugType>full</DebugType>
24-
<Optimize>true</Optimize>
24+
<Optimize>false</Optimize>
2525
<OutputPath>bin\Debug\</OutputPath>
2626
<DefineConstants>DEBUG</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
@@ -43,7 +43,7 @@
4343
<DebugSymbols>true</DebugSymbols>
4444
<OutputPath>bin\Debug\</OutputPath>
4545
<DefineConstants>DEBUG</DefineConstants>
46-
<Optimize>true</Optimize>
46+
<Optimize>false</Optimize>
4747
<DebugType>full</DebugType>
4848
<PlatformTarget>AnyCPU</PlatformTarget>
4949
<CodeAnalysisLogFile>bin\Debug\SimplePublisher.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>

SimpleSubscriber/SimpleSubscriber/SimpleSubscriber.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PlatformTarget>x86</PlatformTarget>
2222
<DebugSymbols>true</DebugSymbols>
2323
<DebugType>full</DebugType>
24-
<Optimize>true</Optimize>
24+
<Optimize>false</Optimize>
2525
<OutputPath>bin\Debug\</OutputPath>
2626
<DefineConstants>DEBUG</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
@@ -43,7 +43,7 @@
4343
<DebugSymbols>true</DebugSymbols>
4444
<OutputPath>bin\Debug\</OutputPath>
4545
<DefineConstants>DEBUG</DefineConstants>
46-
<Optimize>true</Optimize>
46+
<Optimize>false</Optimize>
4747
<DebugType>full</DebugType>
4848
<PlatformTarget>AnyCPU</PlatformTarget>
4949
<CodeAnalysisLogFile>bin\Debug\SimpleSubscriber.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>

0 commit comments

Comments
 (0)