The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
26 linhas
551 B
26 linhas
551 B
5 anos atrás
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.ServiceProcess;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace TeknikStreaming
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
static void Main()
|
||
|
{
|
||
|
ServiceBase[] ServicesToRun;
|
||
|
ServicesToRun = new ServiceBase[]
|
||
|
{
|
||
|
new Server()
|
||
|
};
|
||
|
ServiceBase.Run(ServicesToRun);
|
||
|
}
|
||
|
}
|
||
|
}
|