using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Sample.RabbitMQ.SqlServer.Services; using Sample.RabbitMQ.SqlServer.Services.Impl; namespace Sample.RabbitMQ.SqlServer { public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddDbContext(); services.AddTransient(); services.AddTransient(); services.AddCap(x => { x.UseEntityFramework(); x.UseRabbitMQ(xx => { xx.HostName = "192.168.2.206"; xx.UserName = "admin"; xx.Password = "123123"; }); x.UseDashboard(); }); services.AddMvc(); } public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) { loggerFactory.AddConsole(); loggerFactory.AddDebug(); app.UseMvc(); app.UseCap(); app.UseCapDashboard(); } } }