Exemplo n.º 1
0
        private void OnConfigurations(ConfigurationsEventArgs e)
        {
            var c = Configurations;

            if (c != null)
            {
                c(this, e);
            }
        }
Exemplo n.º 2
0
 private void OnConfigurations(ConfigurationsEventArgs e)
 {
     var c = Configurations;
     if (c != null)
         c(this, e);
 }
Exemplo n.º 3
0
 internal void ApplyConfigurations(ConfigurationsEventArgs e)
 {
     _name = e.ProjectName;
 }
Exemplo n.º 4
0
 private void HostConfigurations(object sender, ConfigurationsEventArgs e)
 {
     var project = _contexts[e.ContextId];
     project.ApplyConfigurations(e);
 }