demonstrates what to put in version.ini, once we get those supported again.
authorChris Koeritz <fred@gruntose.com>
Thu, 12 Apr 2012 16:24:45 +0000 (12:24 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 12 Apr 2012 16:24:45 +0000 (12:24 -0400)
nucleus/library/application/version.ini.example [new file with mode: 0644]

diff --git a/nucleus/library/application/version.ini.example b/nucleus/library/application/version.ini.example
new file mode 100644 (file)
index 0000000..502106b
--- /dev/null
@@ -0,0 +1,23 @@
+# This is an example "version.ini" file for a library or application.
+# Using this file and the "main_ver.ini" (see "proto_main_ver.ini" for more
+# information), the version support creates the version record in a resource
+# file and outputs the header for version checking (libraries only).
+
+[version]
+  ; currently, the only section name used is "version".
+description=Gurp Library: assorted multi-purpose frotzing components
+  ; longish text summary of the library's purpose.
+name=Gurp_Library
+  ; the name that the library goes by.  how it thinks of itself.
+root=gurp
+  ; the root name for the project's dll or exe file.  don't include the
+  ; extension; that's specified below.
+extension=dll
+  ; type of file created by the project.  the default is "dll", which indicates
+  ; that a version checking header should be created (called "version.h").
+  ; the other option is "exe", which doesn't bother with the version header.
+assembly=c#
+;assembly=cpp
+  ; specifies that the version stamper should also generate an assembly
+  ; info file for the project.  the two types are c# and cpp for the c#
+  ; and managed c++ languages.