From 9bdd0ff1d2e187c706f1a8ee7a447be732ab4822 Mon Sep 17 00:00:00 2001 From: Youen Toupin Date: Sun, 27 Mar 2016 17:49:50 +0200 Subject: [PATCH] - refactoring and right-click GUI improvements - added script to generate mono symbols for debugging --- .gitignore | 1 + Plugin/Aerostats.csproj | 9 ++-- Plugin/ModuleAerostat.cs | 110 +++++++++++++++++++++++++++++---------- Plugin/Util.cs | 15 +++++- build/prepare-debug.bat | 16 ++++++ todo.txt | 4 ++ 6 files changed, 122 insertions(+), 33 deletions(-) create mode 100644 build/prepare-debug.bat create mode 100644 todo.txt diff --git a/.gitignore b/.gitignore index 5789ba3..5201245 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /Plugin/obj /Plugin/bin /Aerostats.zip +/.vs/Aerostats/v14/*.suo diff --git a/Plugin/Aerostats.csproj b/Plugin/Aerostats.csproj index c74cc1a..deb5434 100644 --- a/Plugin/Aerostats.csproj +++ b/Plugin/Aerostats.csproj @@ -17,7 +17,7 @@ true full false - ..\..\1.0_dev\GameData\Aerostats\Plugin\ + ..\..\..\..\Jeux\KSP_1_0_5\GameData\Aerostats\Plugin\ DEBUG;TRACE prompt 4 @@ -32,7 +32,7 @@ - ..\..\1.0_dev\KSP_Data\Managed\Assembly-CSharp.dll + ..\..\..\..\Jeux\KSP_1_0_5\KSP_Data\Managed\Assembly-CSharp.dll False @@ -42,7 +42,7 @@ - ..\..\1.0_dev\KSP_Data\Managed\UnityEngine.dll + ..\..\..\..\Jeux\KSP_1_0_5\KSP_Data\Managed\UnityEngine.dll False @@ -53,7 +53,8 @@ - if $(ConfigurationName)==Release ("$(ProjectDir)..\build\build-package.bat") + if $(ConfigurationName)==Debug ("$(ProjectDir)..\build\prepare-debug.bat" "$(OutDir)") +if $(ConfigurationName)==Release ("$(ProjectDir)..\build\build-package.bat")