2004-04-29 Mike Kestner <mkestner@ximian.com>
* 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
This commit is contained in:
parent
ce55d821aa
commit
e4c7f28e66
47 changed files with 172 additions and 30 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-04-29 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* 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 <owen@discobabe.net>
|
||||
|
||||
* generator/ClassBase.cs: added base case to Parent to avoid
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
art-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
art/AssemblyInfo.cs.in
Normal file
6
art/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
*.dll
|
||||
*.dll.config
|
||||
AssemblyInfo.cs
|
||||
generated
|
||||
generated-stamp
|
||||
Makefile
|
||||
|
|
6
atk/AssemblyInfo.cs.in
Normal file
6
atk/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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)
|
||||
|
|
17
configure.in
17
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
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
|
|
6
gconf/GConf.PropertyEditors/AssemblyInfo.cs.in
Normal file
6
gconf/GConf.PropertyEditors/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../../gtk-sharp.pub")]
|
|
@ -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)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
gconf-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.dll
|
||||
|
|
6
gconf/GConf/AssemblyInfo.cs.in
Normal file
6
gconf/GConf/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../../gtk-sharp.pub")]
|
|
@ -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)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
gda-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
gda/AssemblyInfo.cs.in
Normal file
6
gda/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
*.dll
|
||||
*.dll.config
|
||||
AssemblyInfo.cs
|
||||
generated
|
||||
generated-stamp
|
||||
Makefile
|
||||
|
|
6
gdk/AssemblyInfo.cs.in
Normal file
6
gdk/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
glade-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
glade/AssemblyInfo.cs.in
Normal file
6
glade/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
*.dll
|
||||
*.dll.config
|
||||
AssemblyInfo.cs
|
||||
*.exe
|
||||
*.xml
|
||||
generated
|
||||
|
|
6
glib/AssemblyInfo.cs.in
Normal file
6
glib/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
gnome-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
gnome/AssemblyInfo.cs.in
Normal file
6
gnome/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
gnomedb-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
gnomedb/AssemblyInfo.cs.in
Normal file
6
gnomedb/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
*.dll
|
||||
*.dll.config
|
||||
AssemblyInfo.cs
|
||||
generated
|
||||
generated-stamp
|
||||
Makefile
|
||||
|
|
6
gtk/AssemblyInfo.cs.in
Normal file
6
gtk/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
gtkhtml-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
gtkhtml/AssemblyInfo.cs.in
Normal file
6
gtkhtml/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
*.dll
|
||||
*.dll.config
|
||||
AssemblyInfo.cs
|
||||
generated
|
||||
generated-stamp
|
||||
Makefile
|
||||
|
|
6
pango/AssemblyInfo.cs.in
Normal file
6
pango/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
rsvg-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
*.dll
|
||||
*.dll.config
|
||||
generated
|
||||
|
|
6
rsvg/AssemblyInfo.cs.in
Normal file
6
rsvg/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
vte-sharp.pc
|
||||
AssemblyInfo.cs
|
||||
vte-sharp.dll
|
||||
vte-sharp.dll.config
|
||||
generated
|
||||
|
|
6
vte/AssemblyInfo.cs.in
Normal file
6
vte/AssemblyInfo.cs.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion("@VERSION@.0.0")]
|
||||
[assembly:AssemblyDelaySign(true)]
|
||||
[assembly:AssemblyKeyFile("../gtk-sharp.pub")]
|
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue