Exemplo n.º 1
0
 public void Start(IBundleContext context)
 {
     TracesProvider.TracesOutput.OutputTrace("Application's starting\n");
     context.BundleEvent += new BundleEventHandler(OnBundleChanged);
     IBundle bundle = context.Install(@".\Bundle.dll");
     bundle.Start();
 }
Exemplo n.º 2
0
        public void Start(IBundleContext context)
        {
            TracesProvider.TracesOutput.OutputTrace("Application's starting\n");
            context.BundleEvent += new BundleEventHandler(OnBundleChanged);
            IBundle bundle = context.Install(@".\Bundle.dll");

            bundle.Start();
        }