We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc95b5 commit cc54675Copy full SHA for cc54675
__tests__/dotnetsampleapp/Controllers/HelloController.cs
@@ -25,7 +25,7 @@ public string Hello()
25
[Route("/dummy")]
26
public string DummyAppsetting()
27
{
28
- Console.WriteLine("Dummy endpoint called!");
+ Console.WriteLine("Dummy endpoint called!!");
29
var dummyAppSettingValue = Environment.GetEnvironmentVariable(dummyAppSetting);
30
if (dummyAppSettingValue != null) { return dummyAppSettingValue; }
31
return "Appsetting not found!";
@@ -35,7 +35,7 @@ public string DummyAppsetting()
35
[Route("/placeholder")]
36
public string PlaceHolder()
37
38
- Console.WriteLine("Placeholder endpoint called!");
+ Console.WriteLine("Placeholder endpoint called!!");
39
return "<<<net-place-holder>>>";
40
}
41
0 commit comments