Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2011-01-07 23:10:54 +0300
committerMarek Safar <marek.safar@gmail.com>2011-01-07 23:10:54 +0300
commiteb5d5485542741850255c0ab616f4c00dd6fe062 (patch)
treeb6298551833f47dacd2d07bd88f301bf140530ef
parent31fa6252df33dc408ce89f7da018bad5bd3e4621 (diff)
Fix invalid AssemblyVersionAttribute
-rw-r--r--gsharp/AssemblyInfo.cs2
-rw-r--r--mperfmon/AssemblyInfo.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/gsharp/AssemblyInfo.cs b/gsharp/AssemblyInfo.cs
index 82bbe90d..cea5b451 100644
--- a/gsharp/AssemblyInfo.cs
+++ b/gsharp/AssemblyInfo.cs
@@ -21,7 +21,7 @@ using System.Runtime.CompilerServices;
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// If the build and revision are set to '*' they will be updated automatically.
-[assembly: AssemblyVersion("1.0.*.*")]
+[assembly: AssemblyVersion("1.0.*")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
diff --git a/mperfmon/AssemblyInfo.cs b/mperfmon/AssemblyInfo.cs
index 95f5fece..01339e14 100644
--- a/mperfmon/AssemblyInfo.cs
+++ b/mperfmon/AssemblyInfo.cs
@@ -21,7 +21,7 @@ using System.Runtime.CompilerServices;
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// If the build and revision are set to '*' they will be updated automatically.
-[assembly: AssemblyVersion("1.0.*.*")]
+[assembly: AssemblyVersion("1.0.*")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.