Browse Source

fix namespace top level statement

pull/1547/head
Borja García Rodríguez 4 years ago
parent
commit
4fcb70c739
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Program.cs

+ 1
- 1
src/Services/Basket/Basket.API/Program.cs View File

@ -106,6 +106,6 @@ IConfiguration GetConfiguration()
public class Program { public class Program {
public static string Namespace = typeof(Program).Namespace;
public static string Namespace = typeof(Startup).Namespace;
public static string AppName = Namespace.Substring(Namespace.LastIndexOf('.', Namespace.LastIndexOf('.') - 1) + 1); public static string AppName = Namespace.Substring(Namespace.LastIndexOf('.', Namespace.LastIndexOf('.') - 1) + 1);
} }

Loading…
Cancel
Save