Exemplo n.º 1
0
        static void Main(string[] args)
        {
            ConfigurationLoader client = new ConfigurationLoader("E:/DependencyAnalyzer/Server2.xml");

            client.Load();

            Console.WriteLine("Local URL:");
            Console.WriteLine(client.localServiceUrl);
            Console.WriteLine("\n");

            Console.WriteLine("Service URLs:");
            Console.WriteLine(client.servers);
            Console.WriteLine("\n");
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            // This is called when a Dep Anal Message is received
            ConfigurationLoader _loader = new ConfigurationLoader("E:/DependencyAnalyzer/Server1.xml");

            _loader.Load();

            DependencyAgent depAnal = new DependencyAgent(_loader);
            List <string>   selectedProjectPaths = new List <string>();

            selectedProjectPaths.Add("E:/DependencyAnalyzer/Server1.sln");

            Message msg = MessageGenerator.GetDepAnalyzeMessage(selectedProjectPaths,
                                                                _loader.localServiceUrl, _loader.localServiceUrl);

            depAnal.DepAnalize(msg);
        }
Exemplo n.º 3
0
 public void initialize()
 {
     loader.Load();
     StartClientsideService();
     display.StartUp();
 }
Exemplo n.º 4
0
 /* Initialize the serverside objects */
 void initialize()
 {
     loader.Load();
 }