aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/WebRtc.NET/cmd/syncWebRtc.bat
blob: cb0bb3d6aad4af351afed332860652d7e1d27684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
d:

cd D:\webrtc-checkout

set DEPOT_TOOLS_WIN_TOOLCHAIN=0

gclient sync --force 
gclient sync --force

gclient runhooks --force

pause
*/ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
using Tango.Web;
using Tango.Web.Security;

namespace Tango.PPC.Common.Web
{
    public class PPCWebClient : PPCWebClientBase
    {
        public PPCWebClient(DeploymentSlot environment) : base(environment)
        {
        }

        public PPCWebClient(DeploymentSlot environment, string token) : base(environment, token)
        {
        }

        public PPCWebClient(string token) : this(SettingsManager.Default.GetOrCreate<PPCSettings>().DeploymentSlot, token)
        {
        }

        public PPCWebClient() : this(null)
        {
        }

        public PPCWebClient(string address, string token) : base(address, token)
        {
        }

        public PPCWebClient(PPCWebClient other, TimeSpan requestTimeout) : base(other)
        {
            RequestTimeout = requestTimeout;
        }
    }
}