From e9494864755cf63c9c0aad5dada216f5f8f0b3e6 Mon Sep 17 00:00:00 2001
From: guotianliang <1265346495@qq.com>
Date: Fri, 13 May 2022 09:37:09 +0800
Subject: [PATCH] add xml
---
Directory.Build.props | 1 +
.../Emailing/AbpEmailExceptionHandlingOptions.cs | 2 +-
.../Sanhe/Abp/Notifications/INotificationSender.cs | 2 +-
.../Notifications/INotificationSubscriptionManager.cs | 9 +++++++++
.../Abp/Notifications/Internal/NotificationSender.cs | 2 +-
services/book-store/BookStore.csproj | 8 ++++++++
6 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/Directory.Build.props b/Directory.Build.props
index 01c9358..f78f4a6 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -7,5 +7,6 @@
7.15.1
2.10.0
8.4.1
+ True
\ No newline at end of file
diff --git a/modules/common/Sanhe.Abp.ExceptionHandling.Emailing/Sanhe/Abp/ExceptionHandling/Emailing/AbpEmailExceptionHandlingOptions.cs b/modules/common/Sanhe.Abp.ExceptionHandling.Emailing/Sanhe/Abp/ExceptionHandling/Emailing/AbpEmailExceptionHandlingOptions.cs
index 95499fd..dd71c35 100644
--- a/modules/common/Sanhe.Abp.ExceptionHandling.Emailing/Sanhe/Abp/ExceptionHandling/Emailing/AbpEmailExceptionHandlingOptions.cs
+++ b/modules/common/Sanhe.Abp.ExceptionHandling.Emailing/Sanhe/Abp/ExceptionHandling/Emailing/AbpEmailExceptionHandlingOptions.cs
@@ -48,7 +48,7 @@ public class AbpEmailExceptionHandlingOptions
///
/// 把需要接受异常通知的用户加进处理列表
///
- /// 处理的异常类型
+ /// 处理的异常类型
/// 接收邮件的用户类别,群发用,符号分隔
public void HandReceivedException(Type exceptionType, string receivedEmails)
{
diff --git a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSender.cs b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSender.cs
index 19833d3..f6b6a49 100644
--- a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSender.cs
+++ b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSender.cs
@@ -14,7 +14,7 @@ public interface INotificationSender
///
/// 名称
/// 数据
- /// 用户,为空标识发给所有订阅用户
+ /// 用户,为空标识发给所有订阅用户
/// 租户
/// 严重级别
/// 通知标识
diff --git a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSubscriptionManager.cs b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSubscriptionManager.cs
index f68b9ee..db67a1a 100644
--- a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSubscriptionManager.cs
+++ b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/INotificationSubscriptionManager.cs
@@ -16,6 +16,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 用户标识
/// 通知名称
+ ///
///
Task IsSubscribedAsync(
Guid? tenantId,
@@ -29,6 +30,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 用户标识
/// 通知名称
+ ///
///
Task SubscribeAsync(
Guid? tenantId,
@@ -42,6 +44,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 用户标识列表
/// 通知名称
+ ///
///
Task SubscribeAsync(
Guid? tenantId,
@@ -54,6 +57,7 @@ public interface INotificationSubscriptionManager
///
/// 租户
/// 通知名称
+ ///
///
Task UnsubscribeAllAsync(
Guid? tenantId,
@@ -66,6 +70,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 用户标识
/// 通知名称
+ ///
///
Task UnsubscribeAsync(
Guid? tenantId,
@@ -79,6 +84,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 用户标识列表
/// 通知名称
+ ///
///
Task UnsubscribeAsync(
Guid? tenantId,
@@ -92,6 +98,7 @@ public interface INotificationSubscriptionManager
/// 租户
/// 通知名称
/// 需要检查的用户列表
+ ///
///
Task> GetUsersSubscriptionsAsync(
Guid? tenantId,
@@ -104,6 +111,7 @@ public interface INotificationSubscriptionManager
///
/// 租户
/// 用户标识
+ ///
///
Task> GetUserSubscriptionsAsync(
Guid? tenantId,
@@ -115,6 +123,7 @@ public interface INotificationSubscriptionManager
///
/// 租户
/// 用户名
+ ///
///
Task> GetUserSubscriptionsAsync(
Guid? tenantId,
diff --git a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/Internal/NotificationSender.cs b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/Internal/NotificationSender.cs
index 08fb86f..e7464f3 100644
--- a/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/Internal/NotificationSender.cs
+++ b/modules/common/Sanhe.Abp.Notifications/Sanhe/Abp/Notifications/Internal/NotificationSender.cs
@@ -19,7 +19,7 @@ namespace Sanhe.Abp.Notifications.Internal
public class NotificationSender : INotificationSender, ITransientDependency
{
///
- /// Reference to .
+ /// Reference to .
///
public ILogger Logger { get; set; }
///
diff --git a/services/book-store/BookStore.csproj b/services/book-store/BookStore.csproj
index 8c6da73..e0e6fc7 100644
--- a/services/book-store/BookStore.csproj
+++ b/services/book-store/BookStore.csproj
@@ -4,6 +4,14 @@
net6.0
+
+ 1701;1702;CS1591
+
+
+
+ 1701;1702;CS1591
+
+