From: Chris Koeritz Date: Thu, 12 Apr 2012 16:24:45 +0000 (-0400) Subject: demonstrates what to put in version.ini, once we get those supported again. X-Git-Tag: 2.140.90~1428 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=6f4e983958f05a4495d692308edd6c68d351b721;p=feisty_meow.git demonstrates what to put in version.ini, once we get those supported again. --- diff --git a/nucleus/library/application/version.ini.example b/nucleus/library/application/version.ini.example new file mode 100644 index 00000000..502106b3 --- /dev/null +++ b/nucleus/library/application/version.ini.example @@ -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.