-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
44 lines (40 loc) · 1.4 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Steeltoe.Common.Hosting;
using Steeltoe.Connector.RabbitMQ;
using Steeltoe.Messaging.RabbitMQ.Extensions;
using Steeltoe.Messaging.RabbitMQ.Host;
using WeatherForecastServer.Services;
namespace WeatherForecastServer
{
public class Program
{
static void Main(string[] args)
{
RabbitMQHost
.CreateDefaultBuilder()
.ConfigureServices((context, services) =>
{
services.AddLogging(builder =>
{
builder.AddDebug();
builder.AddConsole();
});
// Add Rabbit template
services.AddRabbitMQConnection(context.Configuration);
//services.AddRabbitServices();
//services.AddRabbitTemplate();
services.AddHostedService<WeatherService>();
services.AddHttpClient();
})
.UseCloudHosting(55006)
.ConfigureWebHostDefaults(webBuilder => webBuilder.UseStartup<Startup>())
.Build()
.Run();
}
// public static IHostBuilder CreateHostBuilder(string[] args) =>
// StreamHost.CreateDefaultBuilder(args);
}
}