From e4c7f28e6670f838276a454a1c9888dbe58c3bf9 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Thu, 29 Apr 2004 22:19:30 +0000 Subject: [PATCH] 2004-04-29 Mike Kestner * configure.in : expand the AssemblyInfo.cs files. * */AssemblyInfo.cs.in : new assembly info files. * */Makefile.am : dist, make, and clean assmbly info files. svn path=/trunk/gtk-sharp/; revision=26356 --- ChangeLog | 6 ++++++ art/.cvsignore | 1 + art/AssemblyInfo.cs.in | 6 ++++++ art/Makefile.am | 5 +++-- atk/.cvsignore | 1 + atk/AssemblyInfo.cs.in | 6 ++++++ atk/Makefile.am | 5 +++-- configure.in | 17 ++++++++++++++++- gconf/GConf.PropertyEditors/.cvsignore | 1 + gconf/GConf.PropertyEditors/AssemblyInfo.cs.in | 6 ++++++ gconf/GConf.PropertyEditors/Makefile.am | 4 +++- gconf/GConf/.cvsignore | 1 + gconf/GConf/AssemblyInfo.cs.in | 6 ++++++ gconf/GConf/Makefile.am | 5 +++-- gda/.cvsignore | 1 + gda/AssemblyInfo.cs.in | 6 ++++++ gda/Makefile.am | 5 +++-- gdk/.cvsignore | 1 + gdk/AssemblyInfo.cs.in | 6 ++++++ gdk/Makefile.am | 5 +++-- glade/.cvsignore | 1 + glade/AssemblyInfo.cs.in | 6 ++++++ glade/Makefile.am | 5 +++-- glib/.cvsignore | 1 + glib/AssemblyInfo.cs.in | 6 ++++++ glib/Makefile.am | 5 +++-- gnome/.cvsignore | 1 + gnome/AssemblyInfo.cs.in | 6 ++++++ gnome/Makefile.am | 5 +++-- gnomedb/.cvsignore | 1 + gnomedb/AssemblyInfo.cs.in | 6 ++++++ gnomedb/Makefile.am | 5 +++-- gtk/.cvsignore | 1 + gtk/AssemblyInfo.cs.in | 6 ++++++ gtk/Makefile.am | 5 +++-- gtkhtml/.cvsignore | 1 + gtkhtml/AssemblyInfo.cs.in | 6 ++++++ gtkhtml/Makefile.am | 5 +++-- pango/.cvsignore | 1 + pango/AssemblyInfo.cs.in | 6 ++++++ pango/Makefile.am | 5 +++-- rsvg/.cvsignore | 1 + rsvg/AssemblyInfo.cs.in | 6 ++++++ rsvg/Makefile.am | 5 +++-- vte/.cvsignore | 1 + vte/AssemblyInfo.cs.in | 6 ++++++ vte/Makefile.am | 5 +++-- 47 files changed, 172 insertions(+), 30 deletions(-) create mode 100644 art/AssemblyInfo.cs.in create mode 100644 atk/AssemblyInfo.cs.in create mode 100644 gconf/GConf.PropertyEditors/AssemblyInfo.cs.in create mode 100644 gconf/GConf/AssemblyInfo.cs.in create mode 100644 gda/AssemblyInfo.cs.in create mode 100644 gdk/AssemblyInfo.cs.in create mode 100644 glade/AssemblyInfo.cs.in create mode 100644 glib/AssemblyInfo.cs.in create mode 100644 gnome/AssemblyInfo.cs.in create mode 100644 gnomedb/AssemblyInfo.cs.in create mode 100644 gtk/AssemblyInfo.cs.in create mode 100644 gtkhtml/AssemblyInfo.cs.in create mode 100644 pango/AssemblyInfo.cs.in create mode 100644 rsvg/AssemblyInfo.cs.in create mode 100644 vte/AssemblyInfo.cs.in diff --git a/ChangeLog b/ChangeLog index 968f525c9..819937486 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-04-29 Mike Kestner + + * configure.in : expand the AssemblyInfo.cs files. + * */AssemblyInfo.cs.in : new assembly info files. + * */Makefile.am : dist, make, and clean assmbly info files. + 2004-04-29 Owen Fraser-Green * generator/ClassBase.cs: added base case to Parent to avoid diff --git a/art/.cvsignore b/art/.cvsignore index 1c5ace8d9..ce9dd8ada 100755 --- a/art/.cvsignore +++ b/art/.cvsignore @@ -1,4 +1,5 @@ art-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/art/AssemblyInfo.cs.in b/art/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/art/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/art/Makefile.am b/art/Makefile.am index 32c1266a6..7e0dfe61e 100644 --- a/art/Makefile.am +++ b/art/Makefile.am @@ -22,11 +22,11 @@ assembly_DATA = $(TARGET) api_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = art-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = art-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs dist_sources = $(sources) customs = @@ -38,6 +38,7 @@ EXTRA_DIST = \ $(RAW_API) \ $(ADDITIONAL_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(dist_customs) \ $(dist_sources) \ diff --git a/atk/.cvsignore b/atk/.cvsignore index 8b6a98fdd..17103c7f0 100644 --- a/atk/.cvsignore +++ b/atk/.cvsignore @@ -1,5 +1,6 @@ *.dll *.dll.config +AssemblyInfo.cs generated generated-stamp Makefile diff --git a/atk/AssemblyInfo.cs.in b/atk/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/atk/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/atk/Makefile.am b/atk/Makefile.am index d05526633..0920f1e61 100644 --- a/atk/Makefile.am +++ b/atk/Makefile.am @@ -12,11 +12,11 @@ gapidir = $(datadir)/gapi assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config gapi_DATA = $(API) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) glue/generated.c -DISTCLEANFILES = $(ASSEMBLY).config +DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs sources = -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = @@ -26,6 +26,7 @@ EXTRA_DIST = \ makefile.win32 \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) diff --git a/configure.in b/configure.in index 305574f2b..e6d02c591 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ AC_INIT(README) AC_CANONICAL_SYSTEM AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(gtk-sharp, 0.18.99) +AM_INIT_AUTOMAKE(gtk-sharp, 0.19) AM_MAINTAINER_MODE AC_CHECK_TOOL(CC, gcc, gcc) @@ -192,50 +192,65 @@ parser/GAPI/Makefile generator/Makefile generator/gapi-codegen glib/Makefile +glib/AssemblyInfo.cs glib/glib-sharp.dll.config glib/glue/Makefile pango/Makefile +pango/AssemblyInfo.cs pango/pango-sharp.dll.config atk/Makefile +atk/AssemblyInfo.cs atk/atk-sharp.dll.config art/Makefile +art/AssemblyInfo.cs art/art-sharp.dll.config art/art-sharp.pc gdk/Makefile +gdk/AssemblyInfo.cs gdk/gdk-sharp.dll.config gdk/glue/Makefile gtk/Makefile +gtk/AssemblyInfo.cs gtk/gtk-sharp.dll.config gtk/glue/Makefile glade/Makefile +glade/AssemblyInfo.cs glade/glade-sharp.dll.config glade/glade-sharp.pc glade/glue/Makefile gnome/Makefile +gnome/AssemblyInfo.cs gnome/gnome-sharp.dll.config gnome/gnome-sharp.pc gnome/glue/Makefile gda/Makefile +gda/AssemblyInfo.cs gda/gda-sharp.dll.config gda/gda-sharp.pc gnomedb/Makefile +gnomedb/AssemblyInfo.cs gnomedb/gnomedb-sharp.dll.config gnomedb/gnomedb-sharp.pc gconf/Makefile gconf/doc/Makefile gconf/GConf/Makefile +gconf/GConf/AssemblyInfo.cs gconf/GConf/gconf-sharp.dll.config gconf/GConf/gconf-sharp.pc gconf/GConf.PropertyEditors/Makefile +gconf/GConf.PropertyEditors/AssemblyInfo.cs gconf/tools/Makefile gconf/tools/gconfsharp-schemagen gtkhtml/Makefile +gtkhtml/AssemblyInfo.cs gtkhtml/gtkhtml-sharp.dll.config gtkhtml/gtkhtml-sharp.pc rsvg/Makefile +rsvg/AssemblyInfo.cs rsvg/rsvg-sharp.dll.config rsvg/rsvg-sharp.pc vte/Makefile +vte/AssemblyInfo.cs vte/vte-sharp.dll.config vte/vte-sharp.pc doc/Makefile diff --git a/gconf/GConf.PropertyEditors/.cvsignore b/gconf/GConf.PropertyEditors/.cvsignore index f914cb467..92f5ed91f 100644 --- a/gconf/GConf.PropertyEditors/.cvsignore +++ b/gconf/GConf.PropertyEditors/.cvsignore @@ -1,3 +1,4 @@ Makefile Makefile.in +AssemblyInfo.cs *.dll diff --git a/gconf/GConf.PropertyEditors/AssemblyInfo.cs.in b/gconf/GConf.PropertyEditors/AssemblyInfo.cs.in new file mode 100644 index 000000000..b10cfd079 --- /dev/null +++ b/gconf/GConf.PropertyEditors/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../../gtk-sharp.pub")] diff --git a/gconf/GConf.PropertyEditors/Makefile.am b/gconf/GConf.PropertyEditors/Makefile.am index 0bb4781e5..01e99fbf6 100644 --- a/gconf/GConf.PropertyEditors/Makefile.am +++ b/gconf/GConf.PropertyEditors/Makefile.am @@ -8,8 +8,10 @@ ASSEMBLY = gconf-sharp-peditors.dll assemblydir = $(libdir) assembly_DATA = $(TARGET) CLEANFILES = $(ASSEMBLY) +DISTCLEANFILES = AssemblyInfo.cs EXTRA_DIST = \ + AssemblyInfo.cs.in \ PropertyEditorColorPicker.cs \ $(sources) @@ -28,7 +30,7 @@ sources = \ PropertyEditorToggleButton.cs \ EditorShell.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs $(ASSEMBLY): $(build_sources) $(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources) diff --git a/gconf/GConf/.cvsignore b/gconf/GConf/.cvsignore index b53200859..707db563b 100644 --- a/gconf/GConf/.cvsignore +++ b/gconf/GConf/.cvsignore @@ -1,4 +1,5 @@ gconf-sharp.pc +AssemblyInfo.cs Makefile Makefile.in *.dll diff --git a/gconf/GConf/AssemblyInfo.cs.in b/gconf/GConf/AssemblyInfo.cs.in new file mode 100644 index 000000000..b10cfd079 --- /dev/null +++ b/gconf/GConf/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../../gtk-sharp.pub")] diff --git a/gconf/GConf/Makefile.am b/gconf/GConf/Makefile.am index a95055aac..1903aa508 100644 --- a/gconf/GConf/Makefile.am +++ b/gconf/GConf/Makefile.am @@ -11,11 +11,12 @@ assemblydir = $(libdir) assembly_DATA = $(TARGETS) CLEANFILES = $(ASSEMBLY) -DISTCLEANFILES = gconf-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = gconf-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs EXTRA_DIST = \ $(sources) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ gconf-sharp.pc.in references = \ @@ -32,7 +33,7 @@ sources = \ NotifyWrapper.cs \ Value.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs $(ASSEMBLY): $(build_sources) $(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources) diff --git a/gda/.cvsignore b/gda/.cvsignore index c52972de9..db962f56c 100755 --- a/gda/.cvsignore +++ b/gda/.cvsignore @@ -1,4 +1,5 @@ gda-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/gda/AssemblyInfo.cs.in b/gda/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gda/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gda/Makefile.am b/gda/Makefile.am index 3943517a3..04d582d86 100644 --- a/gda/Makefile.am +++ b/gda/Makefile.am @@ -21,12 +21,12 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = gda-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = gda-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = \ Application.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = @@ -35,6 +35,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \ diff --git a/gdk/.cvsignore b/gdk/.cvsignore index 8b6a98fdd..17103c7f0 100644 --- a/gdk/.cvsignore +++ b/gdk/.cvsignore @@ -1,5 +1,6 @@ *.dll *.dll.config +AssemblyInfo.cs generated generated-stamp Makefile diff --git a/gdk/AssemblyInfo.cs.in b/gdk/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gdk/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gdk/Makefile.am b/gdk/Makefile.am index 86eb9100c..ef3210205 100644 --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -14,7 +14,7 @@ gapidir = $(datadir)/gapi assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config gapi_DATA = $(API) $(ADDITIONAL_API) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) glue/generated.c -DISTCLEANFILES = $(ASSEMBLY).config +DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs sources = \ EventButton.cs \ @@ -37,7 +37,7 @@ sources = \ Key.cs \ Size.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = \ Atom.custom \ @@ -62,6 +62,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ makefile.win32 \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(RAW_API) \ $(ADDITIONAL_API) \ $(METADATA) \ diff --git a/glade/.cvsignore b/glade/.cvsignore index 09adaa38e..ba73cd309 100755 --- a/glade/.cvsignore +++ b/glade/.cvsignore @@ -1,4 +1,5 @@ glade-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/glade/AssemblyInfo.cs.in b/glade/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/glade/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/glade/Makefile.am b/glade/Makefile.am index 5ba2a4202..27c59053c 100644 --- a/glade/Makefile.am +++ b/glade/Makefile.am @@ -24,13 +24,13 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = glade-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = glade-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = \ HandlerNotFoundExeception.cs \ WidgetAttribute.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = \ XML.custom @@ -40,6 +40,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ makefile.win32 \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(RAW_API) \ $(METADATA) \ $(customs) \ diff --git a/glib/.cvsignore b/glib/.cvsignore index 69324f20a..767c3a04c 100755 --- a/glib/.cvsignore +++ b/glib/.cvsignore @@ -1,5 +1,6 @@ *.dll *.dll.config +AssemblyInfo.cs *.exe *.xml generated diff --git a/glib/AssemblyInfo.cs.in b/glib/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/glib/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/glib/Makefile.am b/glib/Makefile.am index 446833167..f0acfb329 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -4,7 +4,7 @@ ASSEMBLY = glib-sharp.dll assemblydir = $(libdir) assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config CLEANFILES = $(ASSEMBLY) -DISTCLEANFILES = $(ASSEMBLY).config +DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs references = @@ -43,12 +43,13 @@ sources = \ ValueArray.cs \ Value.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs dist_sources = $(sources) EXTRA_DIST = \ $(dist_sources) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ makefile.win32 $(ASSEMBLY): $(build_sources) diff --git a/gnome/.cvsignore b/gnome/.cvsignore index 8b3004234..616c34220 100644 --- a/gnome/.cvsignore +++ b/gnome/.cvsignore @@ -1,4 +1,5 @@ gnome-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/gnome/AssemblyInfo.cs.in b/gnome/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gnome/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gnome/Makefile.am b/gnome/Makefile.am index d77b0a4de..493e2bf22 100644 --- a/gnome/Makefile.am +++ b/gnome/Makefile.am @@ -26,7 +26,7 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = gnome-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = gnome-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = \ CanvasProxy.cs \ @@ -38,7 +38,7 @@ sources = \ Modules.cs \ voidObjectAffineSVPintSignal.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = \ CanvasBpath.custom \ @@ -72,6 +72,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \ diff --git a/gnomedb/.cvsignore b/gnomedb/.cvsignore index 9127335da..fb7155d91 100755 --- a/gnomedb/.cvsignore +++ b/gnomedb/.cvsignore @@ -1,4 +1,5 @@ gnomedb-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/gnomedb/AssemblyInfo.cs.in b/gnomedb/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gnomedb/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gnomedb/Makefile.am b/gnomedb/Makefile.am index e2b597e79..f37abce40 100644 --- a/gnomedb/Makefile.am +++ b/gnomedb/Makefile.am @@ -21,12 +21,12 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = gnomedb-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = gnomedb-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = \ Application.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = @@ -35,6 +35,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \ diff --git a/gtk/.cvsignore b/gtk/.cvsignore index 8b6a98fdd..17103c7f0 100755 --- a/gtk/.cvsignore +++ b/gtk/.cvsignore @@ -1,5 +1,6 @@ *.dll *.dll.config +AssemblyInfo.cs generated generated-stamp Makefile diff --git a/gtk/AssemblyInfo.cs.in b/gtk/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gtk/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 506ed3f01..4ffdf0f68 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -14,7 +14,7 @@ gapidir = $(datadir)/gapi assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config gapi_DATA = $(API) $(ADDITIONAL_API) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) glue/generated.c -DISTCLEANFILES = $(ASSEMBLY).config +DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs sources = \ Application.cs \ @@ -25,7 +25,7 @@ sources = \ TreeNode.cs \ TreeNodeValueAttribute.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = \ Accel.custom \ @@ -83,6 +83,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ makefile.win32 \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(RAW_API) \ $(ADDITIONAL_API) \ $(METADATA) \ diff --git a/gtkhtml/.cvsignore b/gtkhtml/.cvsignore index 5fbb574d2..d62902339 100755 --- a/gtkhtml/.cvsignore +++ b/gtkhtml/.cvsignore @@ -1,4 +1,5 @@ gtkhtml-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/gtkhtml/AssemblyInfo.cs.in b/gtkhtml/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/gtkhtml/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/gtkhtml/Makefile.am b/gtkhtml/Makefile.am index 0fc326dba..eedbe267b 100644 --- a/gtkhtml/Makefile.am +++ b/gtkhtml/Makefile.am @@ -21,11 +21,11 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = gtkhtml-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = gtkhtml-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = \ HTMLStream.custom @@ -35,6 +35,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \ diff --git a/pango/.cvsignore b/pango/.cvsignore index 8b6a98fdd..17103c7f0 100644 --- a/pango/.cvsignore +++ b/pango/.cvsignore @@ -1,5 +1,6 @@ *.dll *.dll.config +AssemblyInfo.cs generated generated-stamp Makefile diff --git a/pango/AssemblyInfo.cs.in b/pango/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/pango/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/pango/Makefile.am b/pango/Makefile.am index 69f13b94c..0b198d91f 100644 --- a/pango/Makefile.am +++ b/pango/Makefile.am @@ -10,12 +10,12 @@ gapidir = $(datadir)/gapi assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config gapi_DATA = $(API) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = $(ASSEMBLY).config +DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs sources = \ Scale.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs dist_sources = $(sources) customs = \ @@ -29,6 +29,7 @@ dist_customs = $(customs) EXTRA_DIST = \ makefile.win32 \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(RAW_API) \ $(METADATA) \ $(dist_customs) \ diff --git a/rsvg/.cvsignore b/rsvg/.cvsignore index 30b988721..f366c13fc 100755 --- a/rsvg/.cvsignore +++ b/rsvg/.cvsignore @@ -1,4 +1,5 @@ rsvg-sharp.pc +AssemblyInfo.cs *.dll *.dll.config generated diff --git a/rsvg/AssemblyInfo.cs.in b/rsvg/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/rsvg/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/rsvg/Makefile.am b/rsvg/Makefile.am index 3c400ddeb..9642f1c87 100644 --- a/rsvg/Makefile.am +++ b/rsvg/Makefile.am @@ -22,12 +22,12 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = rsvg-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = rsvg-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = \ Tool.cs -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = @@ -36,6 +36,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \ diff --git a/vte/.cvsignore b/vte/.cvsignore index d9ad68405..2c36c89ee 100644 --- a/vte/.cvsignore +++ b/vte/.cvsignore @@ -1,4 +1,5 @@ vte-sharp.pc +AssemblyInfo.cs vte-sharp.dll vte-sharp.dll.config generated diff --git a/vte/AssemblyInfo.cs.in b/vte/AssemblyInfo.cs.in new file mode 100644 index 000000000..bb30a3d72 --- /dev/null +++ b/vte/AssemblyInfo.cs.in @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +[assembly:AssemblyVersion("@VERSION@.0.0")] +[assembly:AssemblyDelaySign(true)] +[assembly:AssemblyKeyFile("../gtk-sharp.pub")] diff --git a/vte/Makefile.am b/vte/Makefile.am index baca35736..474bf2f5f 100644 --- a/vte/Makefile.am +++ b/vte/Makefile.am @@ -21,11 +21,11 @@ assembly_DATA = $(TARGET) gapi_DATA = $(APIS) CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API) -DISTCLEANFILES = vte-sharp.pc $(ASSEMBLY).config +DISTCLEANFILES = vte-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs sources = -build_sources = $(addprefix $(srcdir)/, $(sources)) +build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs customs = @@ -34,6 +34,7 @@ build_customs = $(addprefix $(srcdir)/, $(customs)) EXTRA_DIST = \ $(RAW_API) \ $(ASSEMBLY).config.in \ + AssemblyInfo.cs.in \ $(METADATA) \ $(customs) \ $(sources) \