fixed AppName

This commit is contained in:
Alexey Bannov 2022-11-09 14:31:22 +03:00
parent 6046fe345a
commit f034f1279f
6 changed files with 6 additions and 5 deletions

View File

@ -68,3 +68,4 @@ global using Microsoft.Extensions.Hosting.WindowsServices;
global using MimeKit;
global using Newtonsoft.Json;
global using ASC.Migration;

View File

@ -24,7 +24,7 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Migration.Core;
namespace ASC.Migration;
public class Startup : BaseStartup
{

View File

@ -47,5 +47,5 @@ global using Microsoft.Extensions.Logging;
global using Polly;
global using Polly.Extensions.Http;
global using ASC.Webhooks;
global using ASC.Webhooks.Extension;

View File

@ -24,7 +24,7 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Webhooks.Service;
namespace ASC.Webhooks;
[Singletone]
public class Settings

View File

@ -24,7 +24,7 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Webhooks.Service;
namespace ASC.Webhooks;
public class Startup : BaseWorkerStartup
{
public Startup(IConfiguration configuration, IHostEnvironment hostEnvironment) :

View File

@ -26,7 +26,7 @@
using System.Text.Json.Serialization;
namespace ASC.Webhooks.Service;
namespace ASC.Webhooks;
[Singletone]
public class WebhookSender