fix namespace top level statement

This commit is contained in:
Borja García Rodríguez 2020-12-16 09:53:08 +01:00
parent 4a71f483aa
commit 4fcb70c739

View File

@ -106,6 +106,6 @@ IConfiguration GetConfiguration()
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);
}