Beispiel #1
0
		static void Main(string[] args)
		{
			string db = args[0];
			FdoCache c = FdoCache.Create(db);
			Console.WriteLine("Loaded Cache: "+c.ToString());

			FixUp f = new FixUp(c );
			f.AddMissingMSAs();
			f.RemoveExtraAnalyses();
			c.Dispose();
		}
Beispiel #2
0
        static void Main(string[] args)
        {
            string   db = args[0];
            FdoCache c  = FdoCache.Create(db);

            Console.WriteLine("Loaded Cache: " + c.ToString());

            FixUp f = new FixUp(c);

            f.AddMissingMSAs();
            f.RemoveExtraAnalyses();
            c.Dispose();
        }