[PR #1] [MERGED] Develop #5

Closed
opened 2026-09-04 00:44:11 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Stone-Red-Code/CuteUtils/pull/1
Author: @Stone-Red-Code
Created: 4/18/2024
Status: Merged
Merged: 4/18/2024
Merged by: @Stone-Red-Code

Base: mainHead: develop


📝 Commits (10+)

📊 Changes

33 files changed (+3389 additions, -12 deletions)

View changed files

src/CuteUtils.Tests/CuteUtils.Tests.csproj (+27 -0)
src/CuteUtils.Tests/DynDto/DynDtoTests.cs (+149 -0)
src/CuteUtils.Tests/Misc/BoolExtentionsTests.cs (+117 -0)
src/CuteUtils.Tests/Misc/CollectionExtentionsTests.cs (+133 -0)
📝 src/CuteUtils.sln (+7 -1)
src/CuteUtils/Class1.cs (+0 -6)
📝 src/CuteUtils/CuteUtils.csproj (+58 -5)
src/CuteUtils/FluentMath/Shapes/Circle.cs (+31 -0)
src/CuteUtils/FluentMath/Shapes/Ellipse.cs (+37 -0)
src/CuteUtils/FluentMath/Shapes/Rectangle.cs (+52 -0)
src/CuteUtils/FluentMath/Shapes/Triangle.cs (+73 -0)
src/CuteUtils/FluentMath/TypeExtentions/DecimalFluent.cs (+161 -0)
src/CuteUtils/FluentMath/TypeExtentions/DoubleFluent.cs (+287 -0)
src/CuteUtils/FluentMath/TypeExtentions/Int16Fluent.cs (+119 -0)
src/CuteUtils/FluentMath/TypeExtentions/Int32Fluent.cs (+119 -0)
src/CuteUtils/FluentMath/TypeExtentions/Int64Fluent.cs (+119 -0)
src/CuteUtils/FluentMath/TypeExtentions/SingleFluent.cs (+287 -0)
src/CuteUtils/Logging/LogConfig.cs (+79 -0)
src/CuteUtils/Logging/LogFormatBuilder.cs (+145 -0)
src/CuteUtils/Logging/LogFormatType.cs (+42 -0)

...and 13 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Stone-Red-Code/CuteUtils/pull/1 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 4/18/2024 **Status:** ✅ Merged **Merged:** 4/18/2024 **Merged by:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`62186f4`](https://github.com/Stone-Red-Code/CuteUtils/commit/62186f43974e9d076b867657297eb9637a5c851d) Initial helper classes - [`09512ef`](https://github.com/Stone-Red-Code/CuteUtils/commit/09512ef6db3a3151349ceba961c8325fd2386d88) Add DynDto and minor improvements - [`5269a8d`](https://github.com/Stone-Red-Code/CuteUtils/commit/5269a8d56de9884a824e7a4c84224e57f8255724) Fix DynDto - [`80b5cc5`](https://github.com/Stone-Red-Code/CuteUtils/commit/80b5cc51094661fc7c64905cb3140bffedfd2c31) Add more shapes - [`86b510f`](https://github.com/Stone-Red-Code/CuteUtils/commit/86b510faef119acc7e6599d8281096f94cac516d) Add missing xml docs - [`3bd8a28`](https://github.com/Stone-Red-Code/CuteUtils/commit/3bd8a283041181f17c45bf9d44d37393ab48d3c5) Add Vsxmd - [`e2c3e6e`](https://github.com/Stone-Red-Code/CuteUtils/commit/e2c3e6e2af1907cc94b9481f024fd23f131b5531) Update old xml docs - [`9e1d909`](https://github.com/Stone-Red-Code/CuteUtils/commit/9e1d9098a74e3de34f69ccf31847b0bc8ee2bd82) Fix xml docs mistakes - [`a759e09`](https://github.com/Stone-Red-Code/CuteUtils/commit/a759e09c6715c033a2524bbf47077ff5284d3e79) Fix vsxmd error - [`fde6384`](https://github.com/Stone-Red-Code/CuteUtils/commit/fde63845f51cad4d8291169f43ee601ecea612c7) Finalize DynDto tests ### 📊 Changes **33 files changed** (+3389 additions, -12 deletions) <details> <summary>View changed files</summary> ➕ `src/CuteUtils.Tests/CuteUtils.Tests.csproj` (+27 -0) ➕ `src/CuteUtils.Tests/DynDto/DynDtoTests.cs` (+149 -0) ➕ `src/CuteUtils.Tests/Misc/BoolExtentionsTests.cs` (+117 -0) ➕ `src/CuteUtils.Tests/Misc/CollectionExtentionsTests.cs` (+133 -0) 📝 `src/CuteUtils.sln` (+7 -1) ➖ `src/CuteUtils/Class1.cs` (+0 -6) 📝 `src/CuteUtils/CuteUtils.csproj` (+58 -5) ➕ `src/CuteUtils/FluentMath/Shapes/Circle.cs` (+31 -0) ➕ `src/CuteUtils/FluentMath/Shapes/Ellipse.cs` (+37 -0) ➕ `src/CuteUtils/FluentMath/Shapes/Rectangle.cs` (+52 -0) ➕ `src/CuteUtils/FluentMath/Shapes/Triangle.cs` (+73 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/DecimalFluent.cs` (+161 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/DoubleFluent.cs` (+287 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/Int16Fluent.cs` (+119 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/Int32Fluent.cs` (+119 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/Int64Fluent.cs` (+119 -0) ➕ `src/CuteUtils/FluentMath/TypeExtentions/SingleFluent.cs` (+287 -0) ➕ `src/CuteUtils/Logging/LogConfig.cs` (+79 -0) ➕ `src/CuteUtils/Logging/LogFormatBuilder.cs` (+145 -0) ➕ `src/CuteUtils/Logging/LogFormatType.cs` (+42 -0) _...and 13 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:44:11 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Stone_Red/CuteUtils#5