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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs')
-rw-r--r--mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs b/mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs
index 1e43b45cc68..002d109e397 100644
--- a/mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs
+++ b/mcs/tools/mono-rpm-helpers/mono-find-requires/mono-find-requires.cs
@@ -33,8 +33,8 @@ class FindRequires {
try {
Assembly a = Assembly.LoadFrom (s);
- foreach (AssemblyName an in a.GetReferencedAssemblies ())
- Console.WriteLine ("mono({0}) >= {1}", an.Name, an.Version);
+ foreach (AssemblyName an in a.GetReferencedAssemblies ())
+ Console.WriteLine ("mono({0}) = {1}", an.Name, an.Version);
} catch {}
}