Ejemplo n.º 1
0
 /// <summary>
 /// Sets current type of the build
 /// </summary>
 /// <param name="type"></param>
 public void updateBuildType(Bridge.BuildType type)
 {
     if (Environment != null)
     {
         Environment.BuildType = type;
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Sets current type of the build
        /// </summary>
        /// <param name="type"></param>
        public void updateBuildType(Bridge.BuildType type)
        {
            if (Environment != null)
            {
                Environment.BuildType = type;
            }

            if (clientLib != null && clientLib.Build != null)
            {
                clientLib.Build.updateBuildType(type);
            }
        }