1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: As per Debian-CLI policy:
http://pkg-mono.alioth.debian.org/cli-policy/ch-packaging.html#s-gac-naming-versioning
The upstream software may use wildcards in the assembly versions (1.2.* for
example) which are filled by the compiler with a random value. You must replace
these wildcards with 0 (1.2.0.0 in the example) to make it possible to use
Policy Files and make predictable version numbers.
Author: Mathieu Malaterre <malat@debian.org>
--- hexbox-1.5.0.orig/sources/Be.Windows.Forms.HexBox/AssemblyInfo.cs
+++ hexbox-1.5.0/sources/Be.Windows.Forms.HexBox/AssemblyInfo.cs
@@ -29,7 +29,7 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.5.0.*")]
+[assembly: AssemblyVersion("1.5.0.0")]
//
// In order to sign your assembly you must specify a key to use. Refer to the
|