Skip to content

Commit e39c692

Browse files
committed
update the metadata
1 parent 0afc868 commit e39c692

File tree

30 files changed

+133
-132
lines changed

30 files changed

+133
-132
lines changed

Core/DKNet.Fw.Extensions/DKNet.Fw.Extensions.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Authors>WIXO</Authors>
6-
<Company>WIXO</Company>
7-
<Copyright>@2025 WIXO</Copyright>
5+
<Authors>Steven Hoang</Authors>
6+
<Authors>https://drunkcoding.net</Authors>
7+
<Copyright>@2026 drunkcoding</Copyright>
88
<PackageLicense>https://opensource.org/licenses/MIT</PackageLicense>
9-
<PackageProjectUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</PackageProjectUrl>
10-
<RepositoryUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</RepositoryUrl>
9+
<PackageProjectUrl>https://github.com/baoduy/DKNet</PackageProjectUrl>
10+
<RepositoryUrl>https://github.com/baoduy/DKNet</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
12-
<PackageTags>Extensions</PackageTags>
12+
<PackageTags>Extensions,DDD,Api,EfCore</PackageTags>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<LangVersion>default</LangVersion>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17-
<PackageIcon>NugetLogo.jpeg</PackageIcon>
17+
<PackageIcon>NugetLogo.png</PackageIcon>
1818
<Nullable>enable</Nullable>
1919
<ImplicitUsings>true</ImplicitUsings>
2020
<IsTrimmable>false</IsTrimmable>
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535

3636
<ItemGroup>
37-
<None Include="..\..\NugetLogo.jpeg" Pack="true" PackagePath="\" />
37+
<None Include="..\..\NugetLogo.png" Pack="true" PackagePath="\" />
3838
<None Include="README.md" Pack="true" PackagePath="\" />
3939
</ItemGroup>
4040
</Project>

Core/DKNet.Fw.Extensions/Encryption/Base65StringEncryption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace DKNet.Fw.Extensions.Encryption;
2727
/// </remarks>
2828
public static class Base65StringEncryption
2929
{
30-
private static readonly char[] _allowedBase64Chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".ToCharArray();
30+
private static readonly char[] _allowedBase64Chars = "ABCDEFGHIJKLMNOPQRSTUVDKNetYZabcdefghijklmnopqrstuvDKNetyz0123456789+/=".ToCharArray();
3131

3232
/// <summary>
3333
/// Determines whether the provided string is a valid Base64 encoded string.

Core/DKNet.Fw.Extensions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
**DKNet.Framework.Extensions** is a library designed to extend and enhance functionality within the WX Framework. It provides additional tools, utilities, and helpers to simplify development and improve productivity. By integrating this extension library, developers can leverage pre-built features and abstractions, reducing boilerplate code and accelerating project timelines.
5+
**DKNet.Framework.Extensions** is a library designed to extend and enhance functionality within the DKNet Framework. It provides additional tools, utilities, and helpers to simplify development and improve productivity. By integrating this extension library, developers can leverage pre-built features and abstractions, reducing boilerplate code and accelerating project timelines.
66

77
## Features
88

@@ -62,7 +62,7 @@
6262

6363
## Requirements
6464

65-
- **Framework**: WX Framework vX.X or higher
65+
- **Framework**: DKNet Framework vX.X or higher
6666
- **Language**: .NET 9.0 or higher
6767
- **Dependencies**: Refer to `DKNet.Framework.Extensions.csproj` for detailed dependency information.
6868

DKNet.FW.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Files", "_Files", "{9F7203
6262
Diagram.drawio = Diagram.drawio
6363
Diagram.png = Diagram.png
6464
.continuerules = .continuerules
65+
NugetLogo.png = NugetLogo.png
6566
EndProjectSection
6667
EndProject
6768
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EFCore.TestHelper", "EfCore\EFCore.TestHelper\EFCore.TestHelper.csproj", "{3CDC0098-982E-43FE-9786-05A8B2F687E3}"

Diagram.drawio

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

EfCore/DKNet.EfCore.Abstractions/DKNet.EfCore.Abstractions.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Authors>WIXO</Authors>
6-
<Company>WIXO</Company>
7-
<Copyright>@2025 WIXO</Copyright>
5+
<Authors>Steven Hoang</Authors>
6+
<Authors>https://drunkcoding.net</Authors>
7+
<Copyright>@2026 drunkcoding</Copyright>
88
<PackageLicense>https://opensource.org/licenses/MIT</PackageLicense>
9-
<PackageProjectUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</PackageProjectUrl>
10-
<RepositoryUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</RepositoryUrl>
9+
<PackageProjectUrl>https://github.com/baoduy/DKNet</PackageProjectUrl>
10+
<RepositoryUrl>https://github.com/baoduy/DKNet</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
12-
<PackageTags>Extensions</PackageTags>
12+
<PackageTags>Extensions,DDD,Api,EfCore</PackageTags>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<LangVersion>default</LangVersion>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17-
<PackageIcon>NugetLogo.jpeg</PackageIcon>
17+
<PackageIcon>NugetLogo.png</PackageIcon>
1818
<Nullable>enable</Nullable>
1919
<ImplicitUsings>true</ImplicitUsings>
2020
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
@@ -25,7 +25,7 @@
2525

2626
</ItemGroup>
2727
<ItemGroup>
28-
<None Include="..\..\NugetLogo.jpeg" Pack="true" PackagePath="\" />
28+
<None Include="..\..\NugetLogo.png" Pack="true" PackagePath="\" />
2929
<None Include="README.md" Pack="true" PackagePath="\" />
3030
</ItemGroup>
3131
<ItemGroup>

EfCore/DKNet.EfCore.DataAuthorization/DKNet.EfCore.DataAuthorization.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Authors>WIXO</Authors>
6-
<Company>WIXO</Company>
7-
<Copyright>@2025 WIXO</Copyright>
5+
<Authors>Steven Hoang</Authors>
6+
<Authors>https://drunkcoding.net</Authors>
7+
<Copyright>@2026 drunkcoding</Copyright>
88
<PackageLicense>https://opensource.org/licenses/MIT</PackageLicense>
9-
<PackageProjectUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</PackageProjectUrl>
10-
<RepositoryUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</RepositoryUrl>
9+
<PackageProjectUrl>https://github.com/baoduy/DKNet</PackageProjectUrl>
10+
<RepositoryUrl>https://github.com/baoduy/DKNet</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
12-
<PackageTags>Extensions</PackageTags>
12+
<PackageTags>Extensions,DDD,Api,EfCore</PackageTags>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<LangVersion>default</LangVersion>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17-
<PackageIcon>NugetLogo.jpeg</PackageIcon>
17+
<PackageIcon>NugetLogo.png</PackageIcon>
1818
<Nullable>enable</Nullable>
1919
<ImplicitUsings>true</ImplicitUsings>
2020
</PropertyGroup>
2121
<ItemGroup>
22-
<None Include="..\..\NugetLogo.jpeg" Pack="true" PackagePath="\"/>
22+
<None Include="..\..\NugetLogo.png" Pack="true" PackagePath="\"/>
2323
<None Include="README.md" Pack="true" PackagePath="\"/>
2424
</ItemGroup>
2525
<ItemGroup>

EfCore/DKNet.EfCore.DataAuthorization/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# DKNet.WfCore.DataAuthorization
22

33
## Introduction
4-
WX WfCore Data Authorization is a module designed to manage data access control within workflow applications, ensuring that users only interact with authorized data.
4+
DKNet WfCore Data Authorization is a module designed to manage data access control within workflow applications, ensuring that users only interact with authorized data.
55

66
## Features
77
- **Role-Based Access Control (RBAC)**: Define roles and permissions to control data access.
8-
- **Integration with WX WfCore**: Seamless integration with the broader WX WfCore framework.
8+
- **Integration with DKNet WfCore**: Seamless integration with the broader DKNet WfCore framework.
99
- **Fine-Grained Authorization**: Granular control over data operations.
1010
- **Auditing/Logging**: Track authorization events for compliance and debugging.
1111
- **Customizable Policies**: Define custom rules based on specific requirements.
@@ -85,7 +85,7 @@ public class CustomDataPolicy : IDataAuthorizationPolicy
8585
---
8686

8787
## Troubleshooting
88-
Common issues include missing dependencies, misconfigured policies, and authorization failures. Visit our [FAQ](https://faq.wxwfcore.com) for solutions.
88+
Common issues include missing dependencies, misconfigured policies, and authorization failures. Visit our [FAQ](https://faq.DKNetwfcore.com) for solutions.
8989

9090
## Conclusion
9191
We welcome your feedback and contributions to improve DKNet.WfCore.DataAuthorization. Join our community on GitHub or Discord for support and updates.

EfCore/DKNet.EfCore.Events/DKNet.EfCore.Events.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Authors>WIXO</Authors>
6-
<Company>WIXO</Company>
7-
<Copyright>@2025 WIXO</Copyright>
5+
<Authors>Steven Hoang</Authors>
6+
<Authors>https://drunkcoding.net</Authors>
7+
<Copyright>@2026 drunkcoding</Copyright>
88
<PackageLicense>https://opensource.org/licenses/MIT</PackageLicense>
9-
<PackageProjectUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</PackageProjectUrl>
10-
<RepositoryUrl>https://thewixo@dev.azure.com/thewixo/WIXO/_git/WIXO.FW</RepositoryUrl>
9+
<PackageProjectUrl>https://github.com/baoduy/DKNet</PackageProjectUrl>
10+
<RepositoryUrl>https://github.com/baoduy/DKNet</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
12-
<PackageTags>Extensions</PackageTags>
12+
<PackageTags>Extensions,DDD,Api,EfCore</PackageTags>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<LangVersion>default</LangVersion>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17-
<PackageIcon>NugetLogo.jpeg</PackageIcon>
17+
<PackageIcon>NugetLogo.png</PackageIcon>
1818
<Nullable>enable</Nullable>
1919
<ImplicitUsings>true</ImplicitUsings>
2020
</PropertyGroup>
2121
<ItemGroup>
22-
<None Include="..\..\NugetLogo.jpeg" Pack="true" PackagePath="\"/>
22+
<None Include="..\..\NugetLogo.png" Pack="true" PackagePath="\"/>
2323
<None Include="README.md" Pack="true" PackagePath="\"/>
2424
</ItemGroup>
2525
<ItemGroup>

EfCore/DKNet.EfCore.Events/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DKNet.EfCore.Events
22

3-
`DKNet.EfCore.Events` is part of the WX suite, designed to enhance Entity Framework Core (EF Core) applications by providing event-based functionality. This library enables developers to trigger events based on data changes (e.g., `onCreate`, `onUpdate`, or `onDelete`) and handle them using custom logic.
3+
`DKNet.EfCore.Events` is part of the DKNet suite, designed to enhance Entity Framework Core (EF Core) applications by providing event-based functionality. This library enables developers to trigger events based on data changes (e.g., `onCreate`, `onUpdate`, or `onDelete`) and handle them using custom logic.
44

55
## Overview
66

@@ -93,7 +93,7 @@ If you encounter issues:
9393

9494
## Contributions
9595

96-
Contributions are welcome! Familiarize yourself with the WX design principles before making changes. Submit pull requests with detailed explanations of your changes.
96+
Contributions are welcome! Familiarize yourself with the DKNet design principles before making changes. Submit pull requests with detailed explanations of your changes.
9797

9898
## License
9999

0 commit comments

Comments
 (0)