Vou assumir que a url do TeamCity é: http://meuteamcity.com.br:80
Baixar e executar o instalador:
- Deixar marcado a opção Windows Service [3º tela]
<div class="application"> | |
<div class="sidebar">Sidebar</div> | |
<div class="main"> | |
<div class="header">Header</div> | |
<div class="content"> | |
<h3>Content with scroll</h3> | |
<h3>Content with scroll</h3> | |
<h3>Content with scroll</h3> | |
<h3>Content with scroll</h3> | |
<h3>Content with scroll</h3> |
using System; | |
using Microsoft.Extensions.DependencyInjection; | |
namespace ConsoleApp2 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var serviceCollection = new ServiceCollection(); |
namespace EfAndCpf | |
{ | |
public class Email | |
{ | |
public string EmailValue { get; private set; } | |
private Email() | |
{ | |
} |
var pessoas = new[] { "Douglas", "Cj", "Adn", "Alberto", "Miqueias", "Douglas C.", "Júnior Lessa", "Btn", "Psc", "Leandro", "Franklin" }; | |
var r = new Random(); | |
Console.WriteLine(string.Join(Environment.NewLine, pessoas.Select(p => Tuple.Create(p, r.Next())).OrderBy(t => t.Item2).Select((t, i) => $"{i + 1}. {t.Item1}"))); |
Vou assumir que a url do TeamCity é: http://meuteamcity.com.br:80
Baixar e executar o instalador:
param ( | |
[string]$user, | |
[string]$pass, | |
[string]$server, | |
[string]$db, | |
[string]$newdb, | |
[boolean]$inaws=0 | |
) | |
$env:PSModulePath = $env:PSModulePath + ";C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\SQLPS" |
jQuery("table").find("input[type=checkbox]").each((i,e) => { setTimeout(() => { if(i >= 100) jQuery(e).click(); }, 0); }) |
using System; | |
using System.Diagnostics; | |
using Akka.Actor; | |
namespace TestMonitoring | |
{ | |
public interface IMonitorActor | |
{ | |
ActorTask OnStartReceive(string actorTypeName, string actorPath, object message); | |
void OnFinishReceive(ActorTask actorTask); |
using System; | |
using static EspecialTry.Helpers; | |
namespace EspecialTry | |
{ | |
public class Try<TFailure, TSuccess> | |
{ | |
internal TFailure Failure { get; } | |
internal TSuccess Success { get; } |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection.Emit; | |
using AutoMapper; | |
using BenchmarkDotNet.Attributes; | |
using ExpressMapper.Extensions; | |
namespace AutoMapperBenchMark |