Skip to content

Commit d727a77

Browse files
committed
Upgrade to .NET 10 and migrate to Zitadel V2 API
- Updated all projects to target .NET 10.0 for compatibility with the latest features. - Migrated Zitadel API integration to V2, updating types, endpoints, and validation logic. - Refactored DTOs and models for better modularity and maintainability. - Enhanced OpenAPI documentation using `AddOpenApiOperationTransformer` and `JsonSerializer`. - Simplified analytics architecture by removing per-tenant orchestrator management. - Improved sender ID and batch processing endpoints with new DTOs and administrative operations. - Updated SQL migration scripts for idempotency and compatibility. - Integrated `IdentityCore` and Zitadel for robust authentication and authorization. - Removed legacy code, reducing technical debt and improving codebase clarity. - Updated Dockerfile and project dependencies to align with .NET 10.
1 parent 9588f76 commit d727a77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

JamaaTech.SMPP.Net.Lib/DataCoding.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
*
1515
************************************************************************/
1616

17+
using System.Text;
1718
using JamaaTech.Smpp.Net.Lib.Protocol;
1819

1920
namespace JamaaTech.Smpp.Net.Lib;
@@ -27,7 +28,7 @@ namespace JamaaTech.Smpp.Net.Lib;
2728
/// should also contain one of the enumeration members which can be used to choose appropiate scheme to decode the message.
2829
/// Note that, in this implementation only the SMSCDefault, ASCII, Latin1 and UCS2 encodings are supported.
2930
/// </remarks>
30-
/// <seealso cref="JamaaTech.Smpp.Net.Lib.Encoding.SmppEncoding"/>
31+
/// <seealso cref="Encoding.SmppEncoding"/>
3132
[Flags()]
3233
public enum DataCoding : byte
3334
{

0 commit comments

Comments
 (0)