From 08636d1b1851387778260f48939ef8f0186c4549 Mon Sep 17 00:00:00 2001 From: biwa <6475593+biwa@users.noreply.github.com> Date: Wed, 17 Jun 2020 22:57:49 +0200 Subject: [PATCH] Enabled PDB generation for all plugins in x64 release mode --- Source/Core/Builder.csproj | 2 ++ Source/Plugins/AutomapMode/AutomapMode.csproj | 2 ++ Source/Plugins/BuilderEffects/BuilderEffects.csproj | 2 ++ Source/Plugins/BuilderModes/BuilderModes.csproj | 2 ++ Source/Plugins/ColorPicker/ColorPicker.csproj | 2 ++ Source/Plugins/CommentsPanel/CommentsPanel.csproj | 2 ++ Source/Plugins/NodesViewer/NodesViewer.csproj | 2 ++ Source/Plugins/SoundPropagationMode/SoundPropagation.csproj | 2 ++ Source/Plugins/StairSectorBuilder/StairSectorBuilder.csproj | 2 ++ Source/Plugins/TagExplorer/TagExplorer.csproj | 2 ++ Source/Plugins/TagRange/TagRange.csproj | 2 ++ Source/Plugins/VisplaneExplorer/VisplaneExplorer.csproj | 2 ++ 12 files changed, 24 insertions(+) diff --git a/Source/Core/Builder.csproj b/Source/Core/Builder.csproj index a81cc69e6..50dab9c5e 100644 --- a/Source/Core/Builder.csproj +++ b/Source/Core/Builder.csproj @@ -114,6 +114,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>true</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/AutomapMode/AutomapMode.csproj b/Source/Plugins/AutomapMode/AutomapMode.csproj index 59b6d8189..b934f67b7 100755 --- a/Source/Plugins/AutomapMode/AutomapMode.csproj +++ b/Source/Plugins/AutomapMode/AutomapMode.csproj @@ -53,6 +53,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. diff --git a/Source/Plugins/BuilderEffects/BuilderEffects.csproj b/Source/Plugins/BuilderEffects/BuilderEffects.csproj index a46016f99..224a97ca6 100755 --- a/Source/Plugins/BuilderEffects/BuilderEffects.csproj +++ b/Source/Plugins/BuilderEffects/BuilderEffects.csproj @@ -88,6 +88,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/BuilderModes/BuilderModes.csproj b/Source/Plugins/BuilderModes/BuilderModes.csproj index 5250bf91b..4ba536ac7 100755 --- a/Source/Plugins/BuilderModes/BuilderModes.csproj +++ b/Source/Plugins/BuilderModes/BuilderModes.csproj @@ -88,6 +88,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/ColorPicker/ColorPicker.csproj b/Source/Plugins/ColorPicker/ColorPicker.csproj index 8bfeed837..5ab6d5d27 100755 --- a/Source/Plugins/ColorPicker/ColorPicker.csproj +++ b/Source/Plugins/ColorPicker/ColorPicker.csproj @@ -89,6 +89,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/CommentsPanel/CommentsPanel.csproj b/Source/Plugins/CommentsPanel/CommentsPanel.csproj index 859183c16..218a1b71f 100755 --- a/Source/Plugins/CommentsPanel/CommentsPanel.csproj +++ b/Source/Plugins/CommentsPanel/CommentsPanel.csproj @@ -85,6 +85,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/NodesViewer/NodesViewer.csproj b/Source/Plugins/NodesViewer/NodesViewer.csproj index 44ead8ab0..83d42f750 100755 --- a/Source/Plugins/NodesViewer/NodesViewer.csproj +++ b/Source/Plugins/NodesViewer/NodesViewer.csproj @@ -96,6 +96,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/SoundPropagationMode/SoundPropagation.csproj b/Source/Plugins/SoundPropagationMode/SoundPropagation.csproj index c7272f23e..fe7311efd 100755 --- a/Source/Plugins/SoundPropagationMode/SoundPropagation.csproj +++ b/Source/Plugins/SoundPropagationMode/SoundPropagation.csproj @@ -84,6 +84,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/StairSectorBuilder/StairSectorBuilder.csproj b/Source/Plugins/StairSectorBuilder/StairSectorBuilder.csproj index 1c1f70c27..edcc36489 100755 --- a/Source/Plugins/StairSectorBuilder/StairSectorBuilder.csproj +++ b/Source/Plugins/StairSectorBuilder/StairSectorBuilder.csproj @@ -73,6 +73,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/TagExplorer/TagExplorer.csproj b/Source/Plugins/TagExplorer/TagExplorer.csproj index 72f6e4dd5..95d2dab1f 100755 --- a/Source/Plugins/TagExplorer/TagExplorer.csproj +++ b/Source/Plugins/TagExplorer/TagExplorer.csproj @@ -72,6 +72,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/TagRange/TagRange.csproj b/Source/Plugins/TagRange/TagRange.csproj index 7fe224155..7bfc9844f 100755 --- a/Source/Plugins/TagRange/TagRange.csproj +++ b/Source/Plugins/TagRange/TagRange.csproj @@ -82,6 +82,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> diff --git a/Source/Plugins/VisplaneExplorer/VisplaneExplorer.csproj b/Source/Plugins/VisplaneExplorer/VisplaneExplorer.csproj index 9e9b5e8c6..68926589d 100755 --- a/Source/Plugins/VisplaneExplorer/VisplaneExplorer.csproj +++ b/Source/Plugins/VisplaneExplorer/VisplaneExplorer.csproj @@ -95,6 +95,8 @@ <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Optimize>false</Optimize> <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug + Profiler|x64'"> <PlatformTarget>x64</PlatformTarget> -- GitLab