(string name) where T : class;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Abstractions/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Abstractions/SharpAbp/Abp/FileStoring/IFileNamingNormalizer.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring
2 | {
3 | public interface IFileNamingNormalizer
4 | {
5 | string NormalizeContainerName(string containerName);
6 |
7 | string NormalizeFileName(string fileName);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/IAliyunFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Aliyun
2 | {
3 | public interface IAliyunFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/IOssClientFactory.cs:
--------------------------------------------------------------------------------
1 | using Aliyun.OSS;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Aliyun
4 | {
5 | public interface IOssClientFactory
6 | {
7 | IOss Create(AliyunFileProviderConfiguration args);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/FileStoringAliyunResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Aliyun.Localization
4 | {
5 | [LocalizationResourceName("FileStoringAliyun")]
6 | public class FileStoringAliyunResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aliyun/SharpAbp/Abp/FileStoring/Aliyun/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/IAwsFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Aws
2 | {
3 | public interface IAwsFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/FileStoringAwsResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Aws.Localization
4 | {
5 | [LocalizationResourceName("FileStoringAws")]
6 | public class FileStoringAwsResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Aws/SharpAbp/Abp/FileStoring/Aws/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/IAzureFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Azure
2 | {
3 | public interface IAzureFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/FileStoringAzureResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Azure.Localization
4 | {
5 | [LocalizationResourceName("FileStoringAzure")]
6 | public class FileStoringAzureResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en",
3 | "texts": {
4 | "Azure.ConnectionString": "Connection string",
5 | "Azure.ContainerName": "Container name",
6 | "Azure.CreateContainerIfNotExists": "Create bucket if not exists"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hans",
3 | "texts": {
4 | "Azure.ConnectionString": "连接字符串",
5 | "Azure.ContainerName": "容器名",
6 | "Azure.CreateContainerIfNotExists": "自动建桶"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Azure/SharpAbp/Abp/FileStoring/Azure/Localization/Resources/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hant",
3 | "texts": {
4 | "Azure.ConnectionString": "連接字符串",
5 | "Azure.ContainerName": "容器名",
6 | "Azure.CreateContainerIfNotExists": "自動建桶"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/IFastDFSFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.FastDFS
2 | {
3 | public interface IFastDFSFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/FileStoringFastDFSResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.FastDFS.Localization
4 | {
5 | [LocalizationResourceName("FileStoringFastDFS")]
6 | public class FileStoringFastDFSResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FastDFS/SharpAbp/Abp/FileStoring/FastDFS/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/IFilePathCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.FileSystem
2 | {
3 | public interface IFilePathCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en",
3 | "texts": {
4 | "FileSystem.BasePath": "Store base path",
5 | "FileSystem.AppendContainerNameToBasePath": "Append container name to base path",
6 | "FileSystem.HttpServer": "Http server address"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hans",
3 | "texts": {
4 | "FileSystem.BasePath": "存储路径",
5 | "FileSystem.AppendContainerNameToBasePath": "附加容器名称到路径",
6 | "FileSystem.HttpServer": "Http服务器地址"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.FileSystem/SharpAbp/Abp/FileStoring/FileSystem/Localization/Resources/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hant",
3 | "texts": {
4 | "FileSystem.BasePath": "存儲路徑",
5 | "FileSystem.AppendContainerNameToBasePath": "附加容器名到路徑",
6 | "FileSystem.HttpServer": "Http服務器地址"
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/IKS3ClientFactory.cs:
--------------------------------------------------------------------------------
1 | using KS3;
2 |
3 | namespace SharpAbp.Abp.FileStoring.KS3
4 | {
5 | public interface IKS3ClientFactory
6 | {
7 | IKS3 Create(KS3FileProviderConfiguration args);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/IKS3FileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.KS3
2 | {
3 | public interface IKS3FileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/FileStoringKS3Resource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.KS3.Localization
4 | {
5 | [LocalizationResourceName("FileStoringKS3")]
6 | public class FileStoringKS3Resource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.KS3/SharpAbp/Abp/FileStoring/KS3/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/IMinioFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Minio
2 | {
3 | public interface IMinioFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/FileStoringMinioResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Minio.Localization
4 | {
5 | [LocalizationResourceName("FileStoringMinio")]
6 | public class FileStoringMinioResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Minio/SharpAbp/Abp/FileStoring/Minio/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/IObsClientFactory.cs:
--------------------------------------------------------------------------------
1 | using OBS;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Obs
4 | {
5 | public interface IObsClientFactory
6 | {
7 | ObsClient Create(ObsFileProviderConfiguration configuration);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/IObsFileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Obs
2 | {
3 | public interface IObsFileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/FileStoringObsResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.Obs.Localization
4 | {
5 | [LocalizationResourceName("FileStoringObs")]
6 | public class FileStoringObsResource
7 | {
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.Obs/SharpAbp/Abp/FileStoring/Obs/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/IS3ClientFactory.cs:
--------------------------------------------------------------------------------
1 | using Amazon.S3;
2 |
3 | namespace SharpAbp.Abp.FileStoring.S3
4 | {
5 | public interface IS3ClientFactory
6 | {
7 | IAmazonS3 Create(S3FileProviderConfiguration configuration);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/IS3FileNameCalculator.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.S3
2 | {
3 | public interface IS3FileNameCalculator
4 | {
5 | string Calculate(FileProviderArgs args);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/FileStoringS3Resource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.FileStoring.S3.Localization
4 | {
5 | [LocalizationResourceName("FileStoringS3")]
6 | public class FileStoringS3Resource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring.S3/SharpAbp/Abp/FileStoring/S3/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring/SharpAbp/Abp/FileStoring/DefaultContainer.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring
2 | {
3 | [FileContainerName(Name)]
4 | public class DefaultContainer
5 | {
6 | public const string Name = "default";
7 | }
8 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FileStoring/SharpAbp/Abp/FileStoring/IFileProviderSelector.cs:
--------------------------------------------------------------------------------
1 | using JetBrains.Annotations;
2 |
3 | namespace SharpAbp.Abp.FileStoring
4 | {
5 | public interface IFileProviderSelector
6 | {
7 | [NotNull]
8 | IFileProvider Get([NotNull] string containerName);
9 | }
10 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeRedis/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeRedis/SharpAbp/Abp/FreeRedis/DefaultClient.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FreeRedis
2 | {
3 | [RedisClientName(Name)]
4 | public class DefaultClient
5 | {
6 | public const string Name = "default";
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeRedis/SharpAbp/Abp/FreeRedis/IRedisClientBuilder.cs:
--------------------------------------------------------------------------------
1 | using FreeRedis;
2 |
3 | namespace SharpAbp.Abp.FreeRedis
4 | {
5 | public interface IRedisClientBuilder
6 | {
7 | RedisClient CreateClient(FreeRedisConfiguration configuration);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeRedis/SharpAbp/Abp/FreeRedis/IRedisConfigurationProvider.cs:
--------------------------------------------------------------------------------
1 | using JetBrains.Annotations;
2 |
3 | namespace SharpAbp.Abp.FreeRedis
4 | {
5 | public interface IRedisConfigurationProvider
6 | {
7 | [NotNull]
8 | FreeRedisConfiguration Get([NotNull] string name);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeRedis/SharpAbp/Abp/FreeRedis/RedisMode.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FreeRedis
2 | {
3 | public enum RedisMode
4 | {
5 | Single = 1,
6 |
7 | Sentinel = 2,
8 |
9 | Cluster = 4
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.DM/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.DM/SharpAbp/Abp/FreeSql/DM/AbpFreeSqlDmModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.DM
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlDmModule : AbpModule
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.MySQL/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.MySQL/SharpAbp/Abp/FreeSql/MySQL/AbpFreeSqlMySQLModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.MySQL
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlMySQLModule : AbpModule
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.Oracle/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.Oracle/SharpAbp/Abp/FreeSql/Oracle/AbpFreeSqlOracleModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.Oracle
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlOracleModule : AbpModule
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.PostgreSql/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.PostgreSql/SharpAbp/Abp/FreeSql/PostgreSql/AbpFreeSqlPostgreSqlModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.PostgreSql
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlPostgreSqlModule : AbpModule
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.SqlServer/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.SqlServer/SharpAbp/Abp/FreeSql/SqlServer/AbpFreeSqlSqlServerModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.SqlServer
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlSqlServerModule : AbpModule
9 | {
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.Sqlite/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql.Sqlite/SharpAbp/Abp/FreeSql/Sqlite/AbpFreeSqlSqliteModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.FreeSql.Sqlite
4 | {
5 | [DependsOn(
6 | typeof(AbpFreeSqlModule)
7 | )]
8 | public class AbpFreeSqlSqliteModule : AbpModule
9 | {
10 |
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.FreeSql/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.IdentityModel/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.IdentityModel/SharpAbp/Abp/IdentityModel/AbpIdentityModelModule.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Modularity;
2 |
3 | namespace SharpAbp.Abp.IdentityModel
4 | {
5 | [DependsOn(
6 | typeof(Volo.Abp.IdentityModel.AbpIdentityModelModule)
7 | )]
8 | public class AbpIdentityModelModule : AbpModule
9 | {
10 |
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MapTenancy/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MapTenancy/SharpAbp/Abp/MapTenancy/MapTenantResolverConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MapTenancy
2 | {
3 | public class MapTenantResolverConsts
4 | {
5 | public const string DefaultMapTenantKey = "__tenant";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.ActiveMQ/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.ActiveMQ/SharpAbp/Abp/MassTransit/ActiveMQ/MassTransitActiveMqConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MassTransit.ActiveMQ
2 | {
3 | public class MassTransitActiveMqConsts
4 | {
5 | public const string ProviderName = "ActiveMQ";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.Kafka/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.Kafka/SharpAbp/Abp/MassTransit/Kafka/MassTransitKafkaConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MassTransit.Kafka
2 | {
3 | public class MassTransitKafkaConsts
4 | {
5 | public const string ProviderName = "Kafka";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.PostgreSql/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.PostgreSql/SharpAbp/Abp/MassTransit/PostgreSql/MassTransitPostgreSqlConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MassTransit.PostgreSql
2 | {
3 | public class MassTransitPostgreSqlConsts
4 | {
5 | public const string ProviderName = "PostgreSql";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.RabbitMQ/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.RabbitMQ/SharpAbp/Abp/MassTransit/RabbitMQ/MassTransitRabbitMqConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MassTransit.RabbitMQ
2 | {
3 | public class MassTransitRabbitMqConsts
4 | {
5 | public const string ProviderName = "RabbitMQ";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.SqlServer/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit.SqlServer/SharpAbp/Abp/MassTransit/SqlServer/MassTransitSqlServerConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MassTransit.SqlServer
2 | {
3 | public class MassTransitSqlServerConsts
4 | {
5 | public const string ProviderName = "SqlServer";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.MassTransit/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Abstractions/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Abstractions/SharpAbp/Abp/OpenTelemetry/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "OpenTelemetryBuilderOptions": {
3 | "IsEnabled": true,
4 | "ServiceName": "demo1",
5 | "ServiceNamespace": "sharpabp",
6 | "ServiceVersion": "1.0",
7 | "AutoGenerateServiceInstanceId": true,
8 | "ServiceInstanceId": ""
9 | }
10 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Exporter.Console/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Exporter.Otlp/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Exporter.Prometheus.AspNetCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Exporter.Prometheus.HttpListener/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry.Exporter.Zipkin/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.OpenTelemetry/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Snowflakes/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Snowflakes/SharpAbp/Abp/Snowflakes/DefaultSnowflake.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Snowflakes
2 | {
3 | [SnowflakeName(Name)]
4 | public class DefaultSnowflake
5 | {
6 | public const string Name = "default";
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Snowflakes/SharpAbp/Abp/Snowflakes/ISnowflakeConfigurationProvider.cs:
--------------------------------------------------------------------------------
1 | using JetBrains.Annotations;
2 |
3 | namespace SharpAbp.Abp.Snowflakes
4 | {
5 | public interface ISnowflakeConfigurationProvider
6 | {
7 | SnowflakeConfiguration Get([NotNull] string name);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Swashbuckle.Versioning/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Swashbuckle.Versioning/SharpAbp/Abp/Swashbuckle/Versioning/AbpSwashbuckleVersioningOptions.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Swashbuckle.Versioning
2 | {
3 | public class AbpSwashbuckleVersioningOptions
4 | {
5 | public string? Title { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Swashbuckle/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.Swashbuckle/SharpAbp/Abp/Swashbuckle/ISwaggerHtmlResolver.cs:
--------------------------------------------------------------------------------
1 | using System.IO;
2 |
3 | namespace SharpAbp.Abp.Swashbuckle
4 | {
5 | public interface ISwaggerHtmlResolver
6 | {
7 | Stream Resolver();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/AbpTenancyGroupingOptions.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TenancyGrouping
2 | {
3 | public class AbpTenancyGroupingOptions
4 | {
5 | public bool IsEnabled { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/ICurrentTenantGroupAccessor.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TenancyGrouping
2 | {
3 | public interface ICurrentTenantGroupAccessor
4 | {
5 | BasicTenantGroupInfo? Current { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/ITenantGroupNormalizer.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TenancyGrouping
2 | {
3 | public interface ITenantGroupNormalizer
4 | {
5 | string? NormalizeName(string? name);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/ITenantGroupResolveResultAccessor.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TenancyGrouping
2 | {
3 | public interface ITenantGroupResolveResultAccessor
4 | {
5 | TenantGroupResolveResult? Result { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/IgnoreTenancyGroupingAttribute.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.TenancyGrouping
4 | {
5 | [AttributeUsage(AttributeTargets.All)]
6 | public class IgnoreTenancyGroupingAttribute : Attribute
7 | {
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/AbpTenancyGroupingResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.TenancyGrouping.Localization
4 | {
5 | [LocalizationResourceName("AbpTenancyGrouping")]
6 | public class AbpTenancyGroupingResource
7 | {
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping.Abstractions/SharpAbp/Abp/TenancyGrouping/TenantGroupResolverConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TenancyGrouping
2 | {
3 | public class TenantGroupResolverConsts
4 | {
5 | public const string DefaultGroupKey = "__group";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TenancyGrouping/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity.AspNetCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity.AspNetCore/SharpAbp/Abp/TransformSecurity/AspNetCore/TransformSecurityRatelimitNames.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TransformSecurity.AspNetCore
2 | {
3 | public class TransformSecurityRatelimitNames
4 | {
5 | public const string SecurityKeyRateLimiting = "SecurityKey";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity/SharpAbp/Abp/TransformSecurity/AbpTransformSecurityNames.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TransformSecurity
2 | {
3 | public static class AbpTransformSecurityNames
4 | {
5 | public const string RSA = "RSA";
6 | public const string SM2 = "SM2";
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity/SharpAbp/Abp/TransformSecurity/SecurityCredentialResultType.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TransformSecurity
2 | {
3 | public enum SecurityCredentialResultType
4 | {
5 | Success = 1,
6 | NotFound = 2,
7 | Expired = 3,
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/framework/src/SharpAbp.Abp.TransformSecurity/SharpAbp/Abp/TransformSecurity/SecurityCredentialValidateResult.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.TransformSecurity
2 | {
3 | public class SecurityCredentialValidateResult
4 | {
5 | public SecurityCredentialResultType Result { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/framework/test/SharpAbp.Abp.FileStoring.Tests/SharpAbp/Abp/FileStoring/TestObjects/TestContainer1.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.TestObjects
2 | {
3 | public class TestContainer1
4 | {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/test/SharpAbp.Abp.FileStoring.Tests/SharpAbp/Abp/FileStoring/TestObjects/TestContainer2.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.TestObjects
2 | {
3 | [FileContainerName("Test2")]
4 | public class TestContainer2
5 | {
6 |
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/framework/test/SharpAbp.Abp.FileStoring.Tests/SharpAbp/Abp/FileStoring/TestObjects/TestContainer3.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.TestObjects
2 | {
3 | public class TestContainer3
4 | {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/test/SharpAbp.Abp.FreeRedis.Tests/SharpAbp/Abp/FreeRedis/TestObjects/TestClient1.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FreeRedis.TestObjects
2 | {
3 | public class TestClient1
4 | {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/framework/test/SharpAbp.Abp.FreeRedis.Tests/SharpAbp/Abp/FreeRedis/TestObjects/TestClient2.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FreeRedis.TestObjects
2 | {
3 | [RedisClientName("Test2")]
4 | public class TestClient2
5 | {
6 |
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "9.0.200",
4 | "rollForward": "latestFeature"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/IdentityClaimTypePagedRequestDto.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Application.Dtos;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class IdentityClaimTypePagedRequestDto : PagedAndSortedResultRequestDto
6 | {
7 | public string Filter { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/IdentityUserClaimDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class IdentityUserClaimDto : IdentityClaimDto
6 | {
7 | public Guid UserId { get; set; }
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/MoveOrganizationUnitDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class MoveOrganizationUnitDto
6 | {
7 | public Guid? NewParentId { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/NewIdentityUserUpdateDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Volo.Abp.Identity;
3 |
4 | namespace SharpAbp.Abp.Identity
5 | {
6 | public class NewIdentityUserUpdateDto : IdentityUserUpdateDto
7 | {
8 | public Guid[] OrganizationUnitIds { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/OrganizationUnitPagedRequestDto.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Application.Dtos;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class OrganizationUnitPagedRequestDto : PagedAndSortedResultRequestDto
6 | {
7 |
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/OrganizationUnitRolePagedRequestDto.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Application.Dtos;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class OrganizationUnitRolePagedRequestDto : PagedAndSortedResultRequestDto
6 | {
7 |
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application.Contracts/SharpAbp/Abp/Identity/SetPasswordDto.cs:
--------------------------------------------------------------------------------
1 | using System.ComponentModel.DataAnnotations;
2 |
3 | namespace SharpAbp.Abp.Identity
4 | {
5 | public class SetPasswordDto
6 | {
7 | [Required]
8 | public string NewPassword { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/IdentityResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.Identity.Localization
4 | {
5 | [LocalizationResourceName("SharpAbpIdentity")]
6 | public class IdentityResource
7 | {
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "ManageYourProfile": "إدارة ملفى",
5 | "SamplePageMessage": "صفحة نموذجية للوحدة النمطية MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil",
5 | "SamplePageMessage": "Ukázková stránka pro modul MapTenancyManagement"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "ManageYourProfile": "Verwalten Sie Ihr Profil",
5 | "SamplePageMessage": "Eine Beispielseite für das Modul MapTenancyManagementModul"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile",
5 | "SamplePageMessage": "A sample page for the MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "ManageYourProfile": "Gestiona tu perfil",
5 | "SamplePageMessage": "Una página de ejemplo para el módulo MapTenancyManagement "
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "ManageYourProfile": "Gérer votre profil",
5 | "SamplePageMessage": "Exemple de page pour le module MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "ManageYourProfile": "Kezelje a profilját",
5 | "SamplePageMessage": "Mintaoldal a MapTenancyManagement modulhoz"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "ManageYourProfile": "Beheer uw profiel",
5 | "SamplePageMessage": "Een voorbeeldpagina voor de MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "ManageYourProfile": "Profil yönetimi",
5 | "SamplePageMessage": "MapTenancyManagement modulünden örnek bir sayfa"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain.Shared/SharpAbp/Abp/Identity/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.Domain/SharpAbp/Abp/Identity/IdentityUserSettings.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Identity
2 | {
3 | public class IdentityUserSettings
4 | {
5 | public bool IsEmailUpdateEnabled { get; set; }
6 | public bool IsUserNameUpdateEnabled { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentityClaimTypeClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentityClaimTypeClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentityClaimTypeClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentityRoleClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentityRoleClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentityRoleClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentitySecurityLogClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentitySecurityLogClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentitySecurityLogClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentitySettingsClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentitySettingsClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentitySettingsClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentityUserClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentityUserClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentityUserClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/IdentityUserLookupClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentityUserLookupClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class IdentityUserLookupClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/ClientProxies/SharpAbp/Abp/Identity/OrganizationUnitClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of OrganizationUnitClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Identity;
4 |
5 | public partial class OrganizationUnitClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/Identity/src/SharpAbp.Abp.Identity.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/SharpAbp/Abp/IdentityServer/ApiResources/ApiResourceClaimDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.IdentityServer.ApiResources
4 | {
5 | public class ApiResourceClaimDto : UserClaimDto
6 | {
7 | public Guid ApiResourceId { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/SharpAbp/Abp/IdentityServer/ApiResources/ApiResourceSecretDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.IdentityServer.ApiResources
4 | {
5 | public class ApiResourceSecretDto : SecretDto
6 | {
7 | public Guid ApiResourceId { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/SharpAbp/Abp/IdentityServer/ApiScopes/ApiScopeClaimDto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpAbp.Abp.IdentityServer.ApiScopes
4 | {
5 | public class ApiScopeClaimDto : UserClaimDto
6 | {
7 | public Guid ApiScopeId { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/SharpAbp/Abp/IdentityServer/IdentityServerRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.IdentityServer
2 | {
3 | public class IdentityServerRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "AbpIdentityServer";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application.Contracts/SharpAbp/Abp/IdentityServer/UserClaimDto.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Application.Dtos;
2 |
3 | namespace SharpAbp.Abp.IdentityServer
4 | {
5 | public abstract class UserClaimDto : EntityDto
6 | {
7 | public string Type { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "ManageYourProfile": "إدارة ملفى",
5 | "SamplePageMessage": "صفحة نموذجية للوحدة النمطية MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil",
5 | "SamplePageMessage": "Ukázková stránka pro modul MapTenancyManagement"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "ManageYourProfile": "Verwalten Sie Ihr Profil",
5 | "SamplePageMessage": "Eine Beispielseite für das Modul MapTenancyManagementModul"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile",
5 | "SamplePageMessage": "A sample page for the MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "ManageYourProfile": "Gestiona tu perfil",
5 | "SamplePageMessage": "Una página de ejemplo para el módulo MapTenancyManagement "
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "ManageYourProfile": "Gérer votre profil",
5 | "SamplePageMessage": "Exemple de page pour le module MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "ManageYourProfile": "Kezelje a profilját",
5 | "SamplePageMessage": "Mintaoldal a MapTenancyManagement modulhoz"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "ManageYourProfile": "Beheer uw profiel",
5 | "SamplePageMessage": "Een voorbeeldpagina voor de MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "ManageYourProfile": "Profil yönetimi",
5 | "SamplePageMessage": "MapTenancyManagement modulünden örnek bir sayfa"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain.Shared/SharpAbp/Abp/IdentityServer/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Extensions/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.Extensions/SharpAbp/Abp/IdentityServer/Extensions/GrantTypeConstants.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.IdentityServer.Extensions
2 | {
3 | public class GrantTypeConstants
4 | {
5 | public const string ExternalCredentials = "external_credentials";
6 |
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.HttpApi.Client/ClientProxies/IdentityResourceClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of IdentityResourceClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.IdentityServer.ClientProxies;
4 |
5 | public partial class IdentityResourceClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/IdentityServer/src/SharpAbp.Abp.IdentityServer.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application.Contracts/SharpAbp/Abp/Account/AccountRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Account
2 | {
3 | public static class AccountRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "SharpAbpAccount";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application.Contracts/SharpAbp/Abp/Account/Localization/AccountResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.Account.Localization
4 | {
5 | [LocalizationResourceName("SharpAbpAccount")]
6 | public class AccountResource
7 | {
8 |
9 | }
10 | }
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application/SharpAbp/Abp/Account/AccountUrlNames.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Account
2 | {
3 | public static class AccountUrlNames
4 | {
5 | public const string PasswordReset = "Abp.Account.PasswordReset";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application/SharpAbp/Abp/Account/Emailing/Templates/AccountEmailTemplates.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.Account.Emailing.Templates
2 | {
3 | public static class AccountEmailTemplates
4 | {
5 | public const string PasswordResetLink = "SharpAbpAbp.Account.PasswordResetLink";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Application/SharpAbp/Abp/Account/Emailing/Templates/PasswordResetLink.tpl:
--------------------------------------------------------------------------------
1 | {{L "PasswordReset"}}
2 |
3 | {{L "PasswordResetInfoInEmail"}}
4 |
5 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.HttpApi.Client/ClientProxies/SharpAbp/Abp/Account/ProfileClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of ProfileClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.Account;
4 |
5 | public partial class ProfileClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web.IdentityServer/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web.IdentityServer/Pages/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
3 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
4 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Modules/Account/Components/Toolbar/UserLoginLink/Default.cshtml:
--------------------------------------------------------------------------------
1 | @using Localization.Resources.AbpUi
2 | @using Microsoft.AspNetCore.Mvc.Localization
3 | @inject IHtmlLocalizer L
4 | @L["Login"]
5 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Pages/Account/LoggedOut.css:
--------------------------------------------------------------------------------
1 | .logoutiframe {
2 | display: none;
3 | width:0;
4 | height: 0;
5 | }
6 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Pages/Account/Logout.cshtml:
--------------------------------------------------------------------------------
1 | @page "/Account/Logout"
2 | @model SharpAbp.Abp.Account.Web.Pages.Account.LogoutModel
3 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Pages/Account/_Layout.cshtml:
--------------------------------------------------------------------------------
1 | @using Volo.Abp.AspNetCore.Mvc.UI.Theming
2 | @inject IThemeManager ThemeManager
3 | @{
4 | Layout = ThemeManager.CurrentTheme.GetAccountLayout();
5 | }
6 |
7 | @RenderBody()
8 |
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Pages/Account/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
3 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
4 | @addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/Pages/Account/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @using Volo.Abp.AspNetCore.Mvc.UI.Theming
2 | @inject IThemeManager ThemeManager
3 | @{
4 | Layout = "_Layout";
5 | }
--------------------------------------------------------------------------------
/modules/account/src/SharpAbp.Abp.Account.Web/ProfileManagement/IProfileManagementPageContributor.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace SharpAbp.Abp.Account.Web.ProfileManagement
4 | {
5 | public interface IProfileManagementPageContributor
6 | {
7 | Task ConfigureAsync(ProfileManagementPageCreationContext context);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Application.Contracts/SharpAbp/Abp/AuditLogging/AuditLoggingRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.AuditLogging
2 | {
3 | public class AuditLoggingRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "SharpAbpAuditLogging";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Application.Contracts/SharpAbp/Abp/AuditLogging/EntityChangeWithUsernameDto.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.AuditLogging
2 | {
3 | public class EntityChangeWithUsernameDto
4 | {
5 | public EntityChangeDto EntityChange { get; set; }
6 |
7 | public string UserName { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/AuditLoggingResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.AuditLogging.Localization
4 | {
5 | [LocalizationResourceName("SharpAbpAuditLogging")]
6 | public class AuditLoggingResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain.Shared/SharpAbp/Abp/AuditLogging/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.HttpApi.Client/ClientProxies/SharpAbp/Abp/AuditLogging/AuditLogClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of AuditLogClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.AuditLogging;
4 |
5 | public partial class AuditLogClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/audit-logging/src/SharpAbp.Abp.AuditLogging.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Application.Contracts/SharpAbp/Abp/CryptoVault/AbpCryptoVaultRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.CryptoVault
2 | {
3 | public class AbpCryptoVaultRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "AbpCryptoVault";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Application.Contracts/SharpAbp/Abp/CryptoVault/RSACredsKeyDto.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.CryptoVault
2 | {
3 | public class RSACredsKeyDto
4 | {
5 | public string PublicKey { get; set; }
6 |
7 | public string PrivateKey { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Application.Contracts/SharpAbp/Abp/CryptoVault/SM2CredsKeyDto.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.CryptoVault
2 | {
3 | public class SM2CredsKeyDto
4 | {
5 | public string PublicKey { get; set; }
6 | public string PrivateKey { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/KeySourceType.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.CryptoVault
2 | {
3 | public enum KeySourceType
4 | {
5 | Generate = 1,
6 | Create = 2
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/AbpCryptoVaultResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.CryptoVault.Localization
4 | {
5 | [LocalizationResourceName("AbpCryptoVault")]
6 | public class AbpCryptoVaultResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain.Shared/SharpAbp/Abp/CryptoVault/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/crypto-vault/src/SharpAbp.Abp.CryptoVault.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/tr.json
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain.Shared/SharpAbp/Abp/DbConnectionsManagement/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/dbconnections/src/SharpAbp.Abp.DbConnectionsManagement.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/DatabaseFileProviderConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.FileStoring.Database
2 | {
3 | public static class DatabaseFileProviderConsts
4 | {
5 | public const string ProviderName = "Database";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hans",
3 | "texts": {
4 | "ManageYourProfile": "管理个人资料"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain.Shared/SharpAbp/Abp/FileStoring/Database/Localization/Resources/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hant",
3 | "texts": {
4 | "ManageYourProfile": "管理個人資料"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-database/src/SharpAbp.Abp.FileStoring.Database.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/SharpAbp/Abp/FileStoringManagement/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/SharpAbp/Abp/FileStoringManagement/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/SharpAbp/Abp/FileStoringManagement/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/SharpAbp/Abp/FileStoringManagement/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain.Shared/SharpAbp/Abp/FileStoringManagement/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/src/SharpAbp.Abp.FileStoringManagement.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/file-storing-management/test/SharpAbp.Abp.FileStoringManagement.EntityFrameworkCore.Tests/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Tenants": [
3 | {
4 | "Id": "446a5211-3d72-4339-9adc-845151f8ada0",
5 | "Name": "tenant1"
6 | },
7 | {
8 | "Id": "25388015-ef1c-4355-9c18-f6b6ddbaf89d",
9 | "Name": "tenant2"
10 | }
11 | ]
12 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "ManageYourProfile": "إدارة ملفى",
5 | "SamplePageMessage": "صفحة نموذجية للوحدة النمطية MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil",
5 | "SamplePageMessage": "Ukázková stránka pro modul MapTenancyManagement"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "ManageYourProfile": "Verwalten Sie Ihr Profil",
5 | "SamplePageMessage": "Eine Beispielseite für das Modul MapTenancyManagementModul"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile",
5 | "SamplePageMessage": "A sample page for the MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "ManageYourProfile": "Gestiona tu perfil",
5 | "SamplePageMessage": "Una página de ejemplo para el módulo MapTenancyManagement "
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "ManageYourProfile": "Gérer votre profil",
5 | "SamplePageMessage": "Exemple de page pour le module MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "ManageYourProfile": "Kezelje a profilját",
5 | "SamplePageMessage": "Mintaoldal a MapTenancyManagement modulhoz"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "ManageYourProfile": "Beheer uw profiel",
5 | "SamplePageMessage": "Een voorbeeldpagina voor de MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "ManageYourProfile": "Profil yönetimi",
5 | "SamplePageMessage": "MapTenancyManagement modulünden örnek bir sayfa"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain.Shared/SharpAbp/Abp/MapTenancyManagement/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.Domain/SharpAbp/Abp/MapTenancyManagement/MapTenancyManagementRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.MapTenancyManagement
2 | {
3 | public class MapTenancyManagementRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "MapTenancyManagement";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/map-tenancy-management/src/SharpAbp.Abp.MapTenancyManagement.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Application/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("MinIdApp.Application.Tests")]
3 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "Menu:Home": "الرئيسية",
5 | "Welcome": "مرحبا",
6 | "LongWelcomeMessage": "مرحبا بكم في التطبيق. هذا مشروع بدء تشغيل يعتمد على إطار عمل ABP. لمزيد من المعلومات ، يرجى زيارة abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "Menu:Home": "Úvod",
5 | "Welcome": "Vítejte",
6 | "LongWelcomeMessage": "Vítejte v aplikaci. Toto je startovací projekt založený na ABP frameworku. Pro více informací, navštivte abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Willkommen",
6 | "LongWelcomeMessage": "Willkommen bei der Anwendung. Dies ist ein Startup-Projekt, das auf dem ABP-Framework basiert. Weitere Informationen finden Sie unter abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welcome",
6 | "LongWelcomeMessage": "Welcome to the application. This is a startup project based on the ABP framework. For more information, visit abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welcome",
6 | "LongWelcomeMessage": "Welcome to the application. This is a startup project based on the ABP framework. For more information, visit abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "Menu:Home": "Inicio",
5 | "Welcome": "Bienvenido",
6 | "LongWelcomeMessage": "Bienvenido a la aplicación, este es un proyecto base basado en el framework ABP. Para más información, visita abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "Menu:Home": "Accueil",
5 | "Welcome": "Bienvenue",
6 | "LongWelcomeMessage": "Bienvenue dans l'application. Il s'agit d'un projet de démarrage basé sur le framework ABP. Pour plus d'informations, visitez abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "Menu:Home": "Kezdőlap",
5 | "Welcome": "Üdvözlöm",
6 | "LongWelcomeMessage": "Üdvözöljük az alkalmazásban. Ez egy ABP keretrendszeren alapuló startup projekt. További információkért látogasson el az abp.io oldalra."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welkom",
6 | "LongWelcomeMessage": "Welkom bij de applicatie. Dit is een startup-project gebaseerd op het ABP-framework. Bezoek abp.io voor meer informatie."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Witaj",
6 | "LongWelcomeMessage": "Witaj w aplikacji. To jest inicjalny projekt bazujący na ABP framework. Po więcej informacji odwiedź stronę abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 | "Menu:Home": "Principal",
5 | "Welcome": "Seja bem-vindo!",
6 | "LongWelcomeMessage": "Bem-vindo a esta aplicação. Este é um projeto inicial baseado no ABP framework. Para mais informações, visite abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/ru.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ru",
3 | "texts": {
4 | "Menu:Home": "Главная",
5 | "Welcome": "Добро пожаловать",
6 | "LongWelcomeMessage": "Добро пожаловать в приложение. Этот запущенный проект основан на фреймворке ABP. Для получения дополнительной информации посетите сайт abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "Menu:Home": "Domov",
5 | "Welcome": "Dobrodošli",
6 | "LongWelcomeMessage": "Dobrodošli v aplikaciji. To je začetni projekt na osnovi okolja ABP. Za več informacij obiščite abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "Menu:Home": "Ana sayfa",
5 | "Welcome": "Hoşgeldiniz",
6 | "LongWelcomeMessage": "Uygulamaya hoşgeldiniz. Bu, ABP framework'ü üzerine bina edilmiş bir başlangıç projesidir. Daha fazla bilgi için abp.io adresini ziyaret edebilirsiniz."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 | "Menu:Home": "Trang chủ",
5 | "Welcome": "Chào mừng bạn",
6 | "LongWelcomeMessage": "Chào mừng bạn đến ứng dụng. Đây là một dự án khởi nghiệp dựa trên khung ABP. Để biết thêm thông tin, hãy truy cập abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hans",
3 | "texts": {
4 | "Menu:Home": "首页",
5 | "Welcome": "欢迎",
6 | "LongWelcomeMessage": "欢迎来到该应用程序. 这是一个基于ABP框架的启动项目. 有关更多信息, 请访问 abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdApp/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hant",
3 | "texts": {
4 | "Menu:Home": "首頁",
5 | "Welcome": "歡迎",
6 | "LongWelcomeMessage": "歡迎來到此應用程式. 這是一個基於ABP框架的起始專案. 有關更多訊息, 請瀏覽 abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/Localization/MinIdAppResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace MinIdApp.Localization
4 | {
5 | [LocalizationResourceName("MinIdApp")]
6 | public class MinIdAppResource
7 | {
8 |
9 | }
10 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain.Shared/MinIdAppDomainErrorCodes.cs:
--------------------------------------------------------------------------------
1 | namespace MinIdApp
2 | {
3 | public static class MinIdAppDomainErrorCodes
4 | {
5 | /* You can add your business exception error codes here, as constants */
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain/Data/IMinIdAppDbSchemaMigrator.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace MinIdApp.Data
4 | {
5 | public interface IMinIdAppDbSchemaMigrator
6 | {
7 | Task MigrateAsync();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain/MinIdAppConsts.cs:
--------------------------------------------------------------------------------
1 | namespace MinIdApp
2 | {
3 | public static class MinIdAppConsts
4 | {
5 | public const string DbTablePrefix = "App";
6 |
7 | public const string DbSchema = null;
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("MinIdApp.Domain.Tests")]
3 | [assembly:InternalsVisibleToAttribute("MinIdApp.TestBase")]
4 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.Domain/Settings/MinIdAppSettings.cs:
--------------------------------------------------------------------------------
1 | namespace MinIdApp.Settings
2 | {
3 | public static class MinIdAppSettings
4 | {
5 | private const string Prefix = "MinIdApp";
6 |
7 | //Add your own setting names here. Example:
8 | //public const string MySetting1 = Prefix + ".MySetting1";
9 | }
10 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.EntityFrameworkCore/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("MinIdApp.EntityFrameworkCore.Tests")]
3 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/abp.resourcemapping.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | aliases: {
3 |
4 | },
5 | mappings: {
6 |
7 | }
8 | };
9 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "App": {
3 | "AlwaysAllowAuthorization": false
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/gulpfile.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | var gulp = require("gulp"),
4 | path = require('path'),
5 | copyResources = require('./node_modules/@abp/aspnetcore.mvc.ui/gulp/copy-resources.js');
6 |
7 | exports.default = function(){
8 | return copyResources(path.resolve('./'));
9 | };
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/libman.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0",
3 | "defaultProvider": "cdnjs",
4 | "libraries": []
5 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0",
3 | "name": "my-app",
4 | "private": true,
5 | "dependencies": {
6 | "@abp/aspnetcore.mvc.ui.theme.basic": "^4.3.2"
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi.Host/wwwroot/global-styles.css:
--------------------------------------------------------------------------------
1 | /* Your Global Styles */
2 |
--------------------------------------------------------------------------------
/modules/minid/app/MinIdApp.HttpApi/Models/Test/TestModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MinIdApp.Models.Test
4 | {
5 | public class TestModel
6 | {
7 | public string Name { get; set; }
8 |
9 | public DateTime BirthDate { get; set; }
10 | }
11 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Application.Contracts/SharpAbp/MinId/MinIdInfoPagedRequestDto.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Application.Dtos;
2 |
3 | namespace SharpAbp.MinId
4 | {
5 | public class MinIdInfoPagedRequestDto : PagedAndSortedResultRequestDto
6 | {
7 | public string BizType { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Application.Contracts/SharpAbp/MinId/MinIdRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.MinId
2 | {
3 | public class MinIdRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "MinId";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Application.Contracts/SharpAbp/MinId/MinIdTokenCacheItem.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.MinId
2 | {
3 | public class MinIdTokenCacheItem
4 | {
5 | public string BizType { get; set; }
6 |
7 | public string Token { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/MinIdResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.MinId.Localization
4 | {
5 | [LocalizationResourceName("MinId")]
6 | public class MinIdResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "ManageYourProfile": "إدارة ملفى",
5 | "SamplePageMessage": "صفحة نموذجية للوحدة النمطية MinId"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil",
5 | "SamplePageMessage": "Ukázková stránka pro modul MinId"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "ManageYourProfile": "Verwalten Sie Ihr Profil",
5 | "SamplePageMessage": "Eine Beispielseite für das Modul MinIdModul"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile",
5 | "SamplePageMessage": "A sample page for the MinId module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "ManageYourProfile": "Gestiona tu perfil",
5 | "SamplePageMessage": "Una página de ejemplo para el módulo MinId "
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "ManageYourProfile": "Gérer votre profil",
5 | "SamplePageMessage": "Exemple de page pour le module MinId"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "ManageYourProfile": "Kezelje a profilját",
5 | "SamplePageMessage": "Mintaoldal a MinId modulhoz"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "ManageYourProfile": "Beheer uw profiel",
5 | "SamplePageMessage": "Een voorbeeldpagina voor de MinId module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "ManageYourProfile": "Profil yönetimi",
5 | "SamplePageMessage": "MinId modulünden örnek bir sayfa"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/MinIdErrorCodes.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.MinId
2 | {
3 | public static class MinIdErrorCodes
4 | {
5 | //Add your business exception error codes here...
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain.Shared/SharpAbp/MinId/MinIdInfoConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.MinId
2 | {
3 | public static class MinIdInfoConsts
4 | {
5 | ///
6 | /// Default value:32
7 | ///
8 | public static int MaxBizTypeLength { get; set; } = 64;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.HttpApi.Client/ClientProxies/SharpAbp/MinId/MinIdInfoClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of MinIdInfoClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.MinId;
4 |
5 | public partial class MinIdInfoClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.HttpApi.Client/ClientProxies/SharpAbp/MinId/MinIdTokenClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of MinIdTokenClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.MinId;
4 |
5 | public partial class MinIdTokenClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/minid/src/SharpAbp.MinId.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Application.Contracts/SharpAbp/Abp/OpenIddict/OpenIddictRemoteServiceConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpAbp.Abp.OpenIddict
2 | {
3 | public class OpenIddictRemoteServiceConsts
4 | {
5 | public const string RemoteServiceName = "OpenIddict";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/OpenIddictResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpAbp.Abp.OpenIddict.Localization
4 | {
5 | [LocalizationResourceName("SharpAbpOpenIddict")]
6 | public class OpenIddictResource
7 | {
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | }
5 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | }
5 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | }
5 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | }
5 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain.Shared/SharpAbp/Abp/OpenIddict/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.HttpApi.Client/ClientProxies/SharpAbp/Abp/OpenIddict/OpenIddictScopeClientProxy.cs:
--------------------------------------------------------------------------------
1 | // This file is part of OpenIddictScopeClientProxy, you can customize it here
2 | // ReSharper disable once CheckNamespace
3 | namespace SharpAbp.Abp.OpenIddict;
4 |
5 | public partial class OpenIddictScopeClientProxy
6 | {
7 | }
8 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/openiddict/src/SharpAbp.Abp.OpenIddict.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "ManageYourProfile": "إدارة ملفى",
5 | "SamplePageMessage": "صفحة نموذجية للوحدة النمطية MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil",
5 | "SamplePageMessage": "Ukázková stránka pro modul MapTenancyManagement"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/de-DE.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de-DE",
3 | "texts": {
4 | "ManageYourProfile": "Verwalten Sie Ihr Profil",
5 | "SamplePageMessage": "Eine Beispielseite für das Modul MapTenancyManagementModul"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "ManageYourProfile": "Manage your profile",
5 | "SamplePageMessage": "A sample page for the MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "ManageYourProfile": "Gestiona tu perfil",
5 | "SamplePageMessage": "Una página de ejemplo para el módulo MapTenancyManagement "
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "ManageYourProfile": "Gérer votre profil",
5 | "SamplePageMessage": "Exemple de page pour le module MapTenancyManagement"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "ManageYourProfile": "Kezelje a profilját",
5 | "SamplePageMessage": "Mintaoldal a MapTenancyManagement modulhoz"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "ManageYourProfile": "Beheer uw profiel",
5 | "SamplePageMessage": "Een voorbeeldpagina voor de MapTenancyManagement module"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/tr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "tr",
3 | "texts": {
4 | "ManageYourProfile": "Profil yönetimi",
5 | "SamplePageMessage": "MapTenancyManagement modulünden örnek bir sayfa"
6 | }
7 | }
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain.Shared/SharpAbp/Abp/TenantGroupManagement/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/tenant-group-management/src/SharpAbp.Abp.TenantGroupManagement.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Application.Contracts/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Application/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/SharpAbp/Abp/TransformSecurityManagement/Localization/Resources/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "ManageYourProfile": "Spravovat profil"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/SharpAbp/Abp/TransformSecurityManagement/Localization/Resources/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/SharpAbp/Abp/TransformSecurityManagement/Localization/Resources/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/SharpAbp/Abp/TransformSecurityManagement/Localization/Resources/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "ManageYourProfile": "Upravljajte svojim profilom"
5 | }
6 | }
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain.Shared/SharpAbp/Abp/TransformSecurityManagement/Localization/Resources/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 |
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.Domain/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.EntityFrameworkCore/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.HttpApi.Client/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.HttpApi/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/modules/transform-security-management/src/SharpAbp.Abp.TransformSecurityManagement.MongoDB/FodyWeavers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/samples/eventbus-sample/common.props:
--------------------------------------------------------------------------------
1 |
2 |
3 | latest
4 | 0.1.0
5 | $(NoWarn);CS1591;CS0436
6 |
7 |
--------------------------------------------------------------------------------
/samples/fasterlog-sample/common.props:
--------------------------------------------------------------------------------
1 |
2 |
3 | latest
4 | 0.1.0
5 | $(NoWarn);CS1591;CS0436
6 |
7 |
--------------------------------------------------------------------------------
/samples/fasterlog-sample/src/FasterLogSample/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "FasterOptions": {
3 | "RootPath": "D:\\faster-logs"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/samples/masstransit-sample/common.props:
--------------------------------------------------------------------------------
1 |
2 |
3 | latest
4 | 0.1.0
5 | $(NoWarn);CS1591;CS0436
6 |
7 |
--------------------------------------------------------------------------------
/samples/masstransit-sample/src/MassTransitSample.Common/ActiveMqQueues.cs:
--------------------------------------------------------------------------------
1 | namespace MassTransitSample.Common
2 | {
3 | public static class ActiveMqQueues
4 | {
5 | public const string Queue1 = "masstransit.activemq1";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/samples/masstransit-sample/src/MassTransitSample.Common/KafkaTopics.cs:
--------------------------------------------------------------------------------
1 | namespace MassTransitSample.Common
2 | {
3 | public class KafkaTopics
4 | {
5 | public const string Topic1 = "masstransit.topic1";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/samples/masstransit-sample/src/MassTransitSample.Common/RabbitMqQueues.cs:
--------------------------------------------------------------------------------
1 | namespace MassTransitSample.Common
2 | {
3 | public static class RabbitMqQueues
4 | {
5 | public const string Exchange1 = "masstransit.exchange1";
6 |
7 | public const string Queue1 = "masstransit.queue1";
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/samples/performance-sample/common.props:
--------------------------------------------------------------------------------
1 |
2 |
3 | latest
4 | 0.1.0
5 | $(NoWarn);CS1591;CS0436
6 |
7 |
--------------------------------------------------------------------------------
/samples/performance-sample/src/PerformanceSample/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/samples/performance-sample/src/PerformanceSample/appsettings.secrets.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/samples/sample/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Application/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("SharpSample.Application.Tests")]
3 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.DbMigrator/appsettings.secrets.json:
--------------------------------------------------------------------------------
1 | {
2 | "ConnectionStrings": {
3 | "Default": "Server=192.168.0.82;Port=9432;Username=dragon;Password=dragon;Database=sharpabp;"
4 | }
5 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/ar.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ar",
3 | "texts": {
4 | "Menu:Home": "الرئيسية",
5 | "Menu:Home": "الصفحة الرئيسية",
6 | "LongWelcomeMessage": "مرحبا بكم في التطبيق. هذا مشروع بدء تشغيل يعتمد على إطار عمل ABP. لمزيد من المعلومات ، يرجى زيارة abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/cs.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "cs",
3 | "texts": {
4 | "Menu:Home": "Úvod",
5 | "Welcome": "Vítejte",
6 | "LongWelcomeMessage": "Vítejte v aplikaci. Toto je startovací projekt založený na ABP frameworku. Pro více informací, navštivte abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/de.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "de",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Willkommen",
6 | "LongWelcomeMessage": "Willkommen bei der Anwendung. Dies ist ein Startup-Projekt, das auf dem ABP-Framework basiert. Weitere Informationen finden Sie unter abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/en-GB.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en-GB",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welcome",
6 | "LongWelcomeMessage": "Welcome to the application. This is a startup project based on the ABP framework. For more information, visit abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "en",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welcome",
6 | "LongWelcomeMessage": "Welcome to the application. This is a startup project based on the ABP framework. For more information, visit abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "es",
3 | "texts": {
4 | "Menu:Home": "Inicio",
5 | "Welcome": "Bienvenido",
6 | "LongWelcomeMessage": "Bienvenido a la aplicación, este es un proyecto base basado en el framework ABP. Para más información, visita abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/fi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fi",
3 | "texts": {
4 | "Menu:Home": "Koti",
5 | "Welcome": "Tervetuloa",
6 | "LongWelcomeMessage": "Tervetuloa sovellukseen. Tämä on ABP-kehykseen perustuva käynnistysprojekti. Lisätietoja on osoitteessa abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "fr",
3 | "texts": {
4 | "Menu:Home": "Accueil",
5 | "Welcome": "Bienvenue",
6 | "LongWelcomeMessage": "Bienvenue dans l'application. Il s'agit d'un projet de démarrage basé sur le framework ABP. Pour plus d'informations, visitez abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/hi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hi",
3 | "texts": {
4 | "Menu:Home": "घर",
5 | "Welcome": "स्वागत हे",
6 | "LongWelcomeMessage": "आवेदन करने के लिए आपका स्वागत है। यह एबीपी ढांचे पर आधारित एक स्टार्टअप परियोजना है। अधिक जानकारी के लिए, abp.io पर जाएं।"
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/hu.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "hu",
3 | "texts": {
4 | "Menu:Home": "Kezdőlap",
5 | "Welcome": "Üdvözlöm",
6 | "LongWelcomeMessage": "Üdvözöljük az alkalmazásban. Ez egy ABP keretrendszeren alapuló startup projekt. További információkért látogasson el az abp.io oldalra."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/is.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "is",
3 | "texts": {
4 | "Menu:Home": "Heim",
5 | "Welcome": "Velkomin",
6 | "LongWelcomeMessage": "Verið velkomin í forritið. Þetta er startup verkefni sem byggir á ABP. Nánari upplýsingar er að finna á abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/it.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "it",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Benvenuto",
6 | "LongWelcomeMessage": "Benvenuto nell'applicazione. Questo è un progetto di avvio basato sul framework ABP. Per ulteriori informazioni, visita abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/nl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "nl",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Welkom",
6 | "LongWelcomeMessage": "Welkom bij de applicatie. Dit is een startup-project gebaseerd op het ABP-framework. Bezoek abp.io voor meer informatie."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/pl-PL.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pl-PL",
3 | "texts": {
4 | "Menu:Home": "Home",
5 | "Welcome": "Witaj",
6 | "LongWelcomeMessage": "Witaj w aplikacji. To jest inicjalny projekt bazujący na ABP framework. Po więcej informacji odwiedź stronę abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/pt-BR.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "pt-BR",
3 | "texts": {
4 | "Menu:Home": "Principal",
5 | "Welcome": "Seja bem-vindo!",
6 | "LongWelcomeMessage": "Bem-vindo a esta aplicação. Este é um projeto inicial baseado no ABP framework. Para mais informações, visite abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/ro-RO.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "ro-RO",
3 | "texts": {
4 | "Menu:Home": "Acasă",
5 | "Welcome": "Bun venit",
6 | "LongWelcomeMessage": "Bun venit la aplicaţie. Acesta este un proiect de pornire bazat pe framework-ul ABP. Pentru mai multe informaţii, vizitaţi, visit abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/sk.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sk",
3 | "texts": {
4 | "Menu:Home": "Domov",
5 | "Welcome": "Vitajte",
6 | "LongWelcomeMessage": "Vitajte v aplikácii. Toto je štartovací projekt založený na ABP frameworku. Viac informácií nájdete na stránke abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/sl.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "sl",
3 | "texts": {
4 | "Menu:Home": "Domov",
5 | "Welcome": "Dobrodošli",
6 | "LongWelcomeMessage": "Dobrodošli v aplikaciji. To je začetni projekt na osnovi okolja ABP. Za več informacij obiščite abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/vi.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "vi",
3 | "texts": {
4 | "Menu:Home": "Trang chủ",
5 | "Welcome": "Chào mừng bạn",
6 | "LongWelcomeMessage": "Chào mừng bạn đến ứng dụng. Đây là một dự án khởi nghiệp dựa trên khung ABP. Để biết thêm thông tin, hãy truy cập abp.io."
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hans",
3 | "texts": {
4 | "Menu:Home": "首页",
5 | "Welcome": "欢迎",
6 | "LongWelcomeMessage": "欢迎来到该应用程序. 这是一个基于ABP框架的启动项目. 有关更多信息, 请访问 abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSample/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "culture": "zh-Hant",
3 | "texts": {
4 | "Menu:Home": "首頁",
5 | "Welcome": "歡迎",
6 | "LongWelcomeMessage": "歡迎來到此應用程式. 這是一個基於ABP框架的起始專案. 有關更多訊息, 請瀏覽 abp.io."
7 | }
8 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/Localization/SharpSampleResource.cs:
--------------------------------------------------------------------------------
1 | using Volo.Abp.Localization;
2 |
3 | namespace SharpSample.Localization;
4 |
5 | [LocalizationResourceName("SharpSample")]
6 | public class SharpSampleResource
7 | {
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain.Shared/SharpSampleDomainErrorCodes.cs:
--------------------------------------------------------------------------------
1 | namespace SharpSample;
2 |
3 | public static class SharpSampleDomainErrorCodes
4 | {
5 | /* You can add your business exception error codes here, as constants */
6 | }
7 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain/Data/ISharpSampleDbSchemaMigrator.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace SharpSample.Data;
4 |
5 | public interface ISharpSampleDbSchemaMigrator
6 | {
7 | Task MigrateAsync();
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("SharpSample.Domain.Tests")]
3 | [assembly:InternalsVisibleToAttribute("SharpSample.TestBase")]
4 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain/Settings/SharpSampleSettings.cs:
--------------------------------------------------------------------------------
1 | namespace SharpSample.Settings;
2 |
3 | public static class SharpSampleSettings
4 | {
5 | private const string Prefix = "SharpSample";
6 |
7 | //Add your own setting names here. Example:
8 | //public const string MySetting1 = Prefix + ".MySetting1";
9 | }
10 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.Domain/SharpSampleConsts.cs:
--------------------------------------------------------------------------------
1 | namespace SharpSample;
2 |
3 | public static class SharpSampleConsts
4 | {
5 | public const string DbTablePrefix = "App";
6 |
7 | public const string DbSchema = null;
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.EntityFrameworkCore/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 | [assembly:InternalsVisibleToAttribute("SharpSample.EntityFrameworkCore.Tests")]
3 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/Controllers/HomeController.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.AspNetCore.Mvc;
2 | using Volo.Abp.AspNetCore.Mvc;
3 |
4 | namespace SharpSample.Controllers;
5 |
6 | public class HomeController : AbpController
7 | {
8 | public ActionResult Index()
9 | {
10 | return Redirect("~/swagger");
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/abp.resourcemapping.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | aliases: {
3 |
4 | },
5 | clean: [
6 |
7 | ],
8 | mappings: {
9 |
10 | }
11 | };
12 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | }
3 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/appsettings.secrets.json:
--------------------------------------------------------------------------------
1 | {
2 | "ConnectionStrings": {
3 | "Default": "Server=192.168.0.82;Port=9432;Username=dragon;Password=dragon;Database=sharpabp;"
4 | }
5 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0",
3 | "name": "my-app",
4 | "private": true,
5 | "dependencies": {
6 | "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.4"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/global-styles.css:
--------------------------------------------------------------------------------
1 | /* Your Global Styles */
2 |
3 | :root .lpx-brand-logo {
4 | --lpx-logo: url('/images/logo/leptonx/logo-light.png');
5 | --lpx-logo-icon: url('/images/logo/leptonx/logo-light-thumbnail.png');
6 | }
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-dark-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-dark-thumbnail.png
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-dark.png
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-light-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-light-thumbnail.png
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cocosip/sharp-abp/d8ee7478e9f18398e80a8852f94879af377a44bd/samples/sample/src/SharpSample.HttpApi.Host/wwwroot/images/logo/leptonx/logo-light.png
--------------------------------------------------------------------------------
/samples/sample/src/SharpSample.HttpApi/Models/Test/TestModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SharpSample.Models.Test;
4 |
5 | public class TestModel
6 | {
7 | public string Name { get; set; }
8 |
9 | public DateTime BirthDate { get; set; }
10 | }
11 |
--------------------------------------------------------------------------------