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/corcompare/CorCompare.cs')
-rw-r--r--mcs/tools/corcompare/CorCompare.cs72
1 files changed, 0 insertions, 72 deletions
diff --git a/mcs/tools/corcompare/CorCompare.cs b/mcs/tools/corcompare/CorCompare.cs
deleted file mode 100644
index bb956979fe3..00000000000
--- a/mcs/tools/corcompare/CorCompare.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-// Mono.Util.CorCompare.CorCompareDriver
-//
-// Author(s):
-// Nick Drochak (ndrochak@gol.com)
-//
-// (C) 2001-2002 Nick Drochak
-
-using System;
-using System.IO;
-
-namespace Mono.Util.CorCompare {
-
- /// <summary>
- /// Handles command line arguments, and generates appropriate report(s)
- /// based on those arguments
- /// </summary>
- /// <remarks>
- /// created by - Nick
- /// created on - 2/20/2002 10:43:57 PM
- /// </remarks>
- class CorCompareDriver
- {
- public static void Main(string[] args) {
- // make sure we were called with the proper usage
- if (args.Length < 1) {
- Console.WriteLine("Usage: CorCompare [-t][-n][-x outfile][-ms assembly][-f friendly_name] assembly_to_compare");
- return;
- }
-
- bool fList = false;
- string strXML = null;
- string strMono = args [args.Length - 1];
- string strMS = null;
- string strFriendly = null;
-
- for (int i = 0; i < args.Length-1; i++) {
- if (args [i] == "-t") {
- fList = true;
- }
- if (args [i] == "-n") {
- }
- if (args [i] == "-x") {
- strXML = args [++i];
- }
- if (args [i] == "-ms") {
- strMS = args [++i];
- }
- if (args [i] == "-f") {
- strFriendly = args [++i];
- }
- }
-
- if (strMS == null)
- strMS = Path.GetFileNameWithoutExtension (strMono);
-
- if (strFriendly == null)
- strFriendly = strMS;
-
- if (strXML == null)
- strXML = strFriendly + ".xml";
-
- ToDoAssembly td = ToDoAssembly.Load (strMono, strFriendly, strMS);
-
- if (fList)
- Console.WriteLine(td.CreateClassListReport());
-
- if (strXML != null)
- td.CreateXMLReport(strXML);
-
- }
- }
-}