Conditionally include Inspector in debug builds only

This commit is contained in:
John Lewin 2017-09-19 08:57:48 -07:00
parent 80dd7a379b
commit 396b558579

View file

@ -143,10 +143,10 @@
<Compile Include="CustomWidgets\RadioImageWidget.cs" />
<Compile Include="CustomWidgets\RadioPanelWidget.cs" />
<Compile Include="CustomWidgets\ValueDisplayInfo.cs" />
<Compile Include="Utilities\InspectForm.cs">
<Compile Include="Utilities\InspectForm.cs" Condition="'$(Configuration)' == 'Debug'">
<SubType>Form</SubType>
</Compile>
<Compile Include="Utilities\InspectForm.Designer.cs">
<Compile Include="Utilities\InspectForm.Designer.cs" Condition="'$(Configuration)' == 'Debug'">
<DependentUpon>InspectForm.cs</DependentUpon>
</Compile>
<Compile Include="Library\ContentProviders\GCodeContentProvider.cs" />
@ -497,7 +497,7 @@
<EmbeddedResource Include="config.json">
<LogicalName>config.json</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Utilities\InspectForm.resx">
<EmbeddedResource Include="Utilities\InspectForm.resx" Condition="'$(Configuration)' == 'Debug'">
<DependentUpon>InspectForm.cs</DependentUpon>
</EmbeddedResource>
<None Include="App.config" />