Esempio n. 1
0
        public ISolution LoadSolution(string path)
        {
            LoadExtensions();

            var serviceContainer = new AppDomainServiceContainer();
            var context          = new LoadingContext(serviceContainer);

            var document = XDocument.Load(path);

            return(new Solution(document.Element("Solution"), context));
        }
Esempio n. 2
0
        public Engine()
        {
            var serviceContainer = new AppDomainServiceContainer();

            _executionContext = new ExecutionContext(serviceContainer);
        }