From b6260e8865dd09a50d41abe157e348618d5a733e Mon Sep 17 00:00:00 2001 From: stil Date: Sun, 5 Feb 2017 07:08:24 +0100 Subject: [PATCH] Include debugging symbols in nupkg (#26) --- NuGet/pybuild/profiles/GtkSharp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/NuGet/pybuild/profiles/GtkSharp.py b/NuGet/pybuild/profiles/GtkSharp.py index 87c121afb..5b3660800 100644 --- a/NuGet/pybuild/profiles/GtkSharp.py +++ b/NuGet/pybuild/profiles/GtkSharp.py @@ -68,5 +68,6 @@ class GtkSharp(ProfileBase): dll_list = ['atk', 'cairo', 'gdk', 'gio', 'glib', 'gtk', 'pango'] for item in dll_list: shutil.copy(join(self.SrcDir, item, item + "-sharp.dll"), net45_lib_dir) + shutil.copy(join(self.SrcDir, item, item + "-sharp.pdb"), net45_lib_dir) if item != 'cairo': shutil.copy(join(self.SrcDir, item, item + '-sharp.dll.config'), net45_build_dir)