From 654368ad5866fa0f7b57d933ff80afc9c6764ce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rastislav=20Novotn=C3=BD?= Date: Sat, 29 Dec 2018 07:55:02 +0800 Subject: [PATCH] Use Application Insights --- src/Duracellko.PlanningPoker.Web/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Duracellko.PlanningPoker.Web/Program.cs b/src/Duracellko.PlanningPoker.Web/Program.cs index cd9e191..5871694 100644 --- a/src/Duracellko.PlanningPoker.Web/Program.cs +++ b/src/Duracellko.PlanningPoker.Web/Program.cs @@ -12,6 +12,7 @@ public static void Main(string[] args) public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) + .UseApplicationInsights() .UseStartup(); } }