public override void CopyTo(Bifrost.RavenDB.DocumentStoreConfiguration target)
        {
            base.CopyTo(target);

            var actualTarget = target as DocumentStoreConfiguration;
            if (actualTarget != null)
            {
                actualTarget.DataDirectory = DataDirectory;
                actualTarget.EnableManagementStudio = EnableManagementStudio;
                actualTarget.ManagementStudioPort = ManagementStudioPort;
            }
        }
        public void OnFixedUpdate()
        {
            // Ensure the onflybywire is still on the correct vessel, in the correct order
            if (mSignalProcessor.Vessel != null)
            {
                mAttachedVessel.OnFlyByWire -= OnFlyByWirePre;
                mAttachedVessel              = mSignalProcessor.Vessel;
                mAttachedVessel.OnFlyByWire  = OnFlyByWirePre + mAttachedVessel.OnFlyByWire;
            }

            if (mSignalProcessor.Powered && mSignalProcessor.Master && Bifrost != null)
            {
                Bifrost.OnFixedUpdate();
            }
        }
Example #3
0
        public override void Write(Bifrost.CodeGeneration.ICodeWriter writer)
        {

        }
Example #4
0
        public override void OnConfigure(Bifrost.Configuration.IConfigure configure)
        {
            WebConfigurationExtensions.AsSinglePageApplication (configure);

            base.OnConfigure (configure);
        }