Change assembly name constant spelling
Some checks are pending
continuous-integration/drone/push Build is running
Some checks are pending
continuous-integration/drone/push Build is running
This commit is contained in:
@@ -28,11 +28,14 @@ public static class DependencyInjectionExtensions
|
||||
}
|
||||
|
||||
private static IServiceCollection AddMiscellaneousServices(this IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton(sp =>
|
||||
{
|
||||
var assemblyName = Assembly.GetExecutingAssembly()
|
||||
.GetName()
|
||||
.Name ?? "Vegasco.Server.Api";
|
||||
services.AddSingleton(new ActivitySource(assemblyName));
|
||||
return new ActivitySource(assemblyName);
|
||||
});
|
||||
|
||||
services.AddResponseCompression();
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ public static class Constants
|
||||
{
|
||||
public static class Projects
|
||||
{
|
||||
public const string Api = "Vegasco_Server_Api";
|
||||
public const string Api = "Vegasco.Server.Api";
|
||||
}
|
||||
|
||||
public static class Database
|
||||
|
||||
Reference in New Issue
Block a user