Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit db494e7

Browse files
authored
feat: Update package names to DevantlerTech (#401)
* feat: Update to use new packages and rename to DevantlerTech.xxx Signed-off-by: Nikolai Emil Damm <nikolaiemildamm@icloud.com> * feat: add project files for Commons.Extensions, Commons.Utils, and their test projects Signed-off-by: Nikolai Emil Damm <nikolaiemildamm@icloud.com> --------- Signed-off-by: Nikolai Emil Damm <nikolaiemildamm@icloud.com>
1 parent 227ee90 commit db494e7

34 files changed

+63
-63
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/tests/Devantler.Commons.StringHelpers.Tests.Unit/bin/Debug/net8.0/Devantler.Commons.StringHelpers.Tests.Unit.dll",
13+
"program": "${workspaceFolder}/tests/DevantlerTech.Commons.StringHelpers.Tests.Unit/bin/Debug/net8.0/DevantlerTech.Commons.StringHelpers.Tests.Unit.dll",
1414
"args": [ ],
15-
"cwd": "${workspaceFolder}/tests/Devantler.Commons.StringHelpers.Tests.Unit",
15+
"cwd": "${workspaceFolder}/tests/DevantlerTech.Commons.StringHelpers.Tests.Unit",
1616
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
1717
"console": "internalConsole",
1818
"stopAtEntry": false

.vscode/tasks.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "process",
88
"args": [
99
"build",
10-
"${workspaceFolder}/tests/Devantler.Commons.StringHelpers.Tests.Unit/Devantler.Commons.StringHelpers.Tests.Unit.csproj",
10+
"${workspaceFolder}/tests/DevantlerTech.Commons.StringHelpers.Tests.Unit/DevantlerTech.Commons.StringHelpers.Tests.Unit.csproj",
1111
"/property:GenerateFullPaths=true",
1212
"/consoleloggerparameters:NoSummary"
1313
],
@@ -19,7 +19,7 @@
1919
"type": "process",
2020
"args": [
2121
"publish",
22-
"${workspaceFolder}/tests/Devantler.Commons.StringHelpers.Tests.Unit/Devantler.Commons.StringHelpers.Tests.Unit.csproj",
22+
"${workspaceFolder}/tests/DevantlerTech.Commons.StringHelpers.Tests.Unit/DevantlerTech.Commons.StringHelpers.Tests.Unit.csproj",
2323
"/property:GenerateFullPaths=true",
2424
"/consoleloggerparameters:NoSummary"
2525
],
@@ -33,9 +33,9 @@
3333
"watch",
3434
"run",
3535
"--project",
36-
"${workspaceFolder}/tests/Devantler.Commons.StringHelpers.Tests.Unit/Devantler.Commons.StringHelpers.Tests.Unit.csproj"
36+
"${workspaceFolder}/tests/DevantlerTech.Commons.StringHelpers.Tests.Unit/DevantlerTech.Commons.StringHelpers.Tests.Unit.csproj"
3737
],
3838
"problemMatcher": "$msCompile"
3939
}
4040
]
41-
}
41+
}

Devantler.Commons.slnx

Lines changed: 0 additions & 13 deletions
This file was deleted.

DevantlerTech.Commons.slnx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Solution>
2+
<Configurations>
3+
<Platform Name="Any CPU" />
4+
<Platform Name="x64" />
5+
<Platform Name="x86" />
6+
</Configurations>
7+
<Folder Name="/src/" />
8+
<Folder Name="/tests/" />
9+
<Project Path="src/DevantlerTech.Commons.Extensions/DevantlerTech.Commons.Extensions.csproj" />
10+
<Project Path="src/DevantlerTech.Commons.Utils/DevantlerTech.Commons.Utils.csproj" />
11+
<Project Path="tests/DevantlerTech.Commons.Extensions.Tests/DevantlerTech.Commons.Extensions.Tests.csproj" />
12+
<Project Path="tests/DevantlerTech.Commons.Utils.Tests/DevantlerTech.Commons.Utils.Tests.csproj" />
13+
</Solution>

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
│   └── workflows
1515
├── .vscode
1616
├── src
17-
│   ├── Devantler.Commons.Extensions
17+
│   ├── DevantlerTech.Commons.Extensions
1818
│   │   └── StringExtensions
19-
│   └── Devantler.Commons.Utils
19+
│   └── DevantlerTech.Commons.Utils
2020
└── tests
21-
├── Devantler.Commons.Extensions.Tests
21+
├── DevantlerTech.Commons.Extensions.Tests
2222
│   ├── EnumExtensionsTests
2323
│   ├── ListExtensionsTests
2424
│   ├── Setup
@@ -29,7 +29,7 @@
2929
│   ├── FormattingStringExtensionsTests
3030
│   ├── GeneralStringExtensionsTests
3131
│   └── GrammarStringExtensionsTests
32-
└── Devantler.Commons.Utils.Tests
32+
└── DevantlerTech.Commons.Utils.Tests
3333
3434
21 directories
3535
```
@@ -45,8 +45,8 @@ To get started, you can install the packages from NuGet.
4545

4646
```bash
4747
# Extensions for common classes and functionality for string, enum, list, etc.
48-
dotnet add package Devantler.Commons.Extensions
48+
dotnet add package DevantlerTech.Commons.Extensions
4949

5050
# Utilities for various common purposes
51-
dotnet add package Devantler.Commons.Utils
51+
dotnet add package DevantlerTech.Commons.Utils
5252
```

src/Devantler.Commons.Extensions/Casing.cs renamed to src/DevantlerTech.Commons.Extensions/Casing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Devantler.Commons.Extensions;
1+
namespace DevantlerTech.Commons.Extensions;
22

33
/// <summary>
44
/// Different casing styles.

src/Devantler.Commons.Extensions/Devantler.Commons.Extensions.csproj renamed to src/DevantlerTech.Commons.Extensions/DevantlerTech.Commons.Extensions.csproj

File renamed without changes.

src/Devantler.Commons.Extensions/EnumExtensions.cs renamed to src/DevantlerTech.Commons.Extensions/EnumExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33
using System.Runtime.Serialization;
44

5-
namespace Devantler.Commons.Extensions;
5+
namespace DevantlerTech.Commons.Extensions;
66

77
/// <summary>
88
/// Extensions for Enum.

src/Devantler.Commons.Extensions/ListExtensions.cs renamed to src/DevantlerTech.Commons.Extensions/ListExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Globalization;
22

3-
namespace Devantler.Commons.Extensions;
3+
namespace DevantlerTech.Commons.Extensions;
44
/// <summary>
55
/// Extensions for List.
66
/// </summary>

src/Devantler.Commons.Extensions/RegexLibrary.cs renamed to src/DevantlerTech.Commons.Extensions/RegexLibrary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.RegularExpressions;
22

3-
namespace Devantler.Commons.Extensions;
3+
namespace DevantlerTech.Commons.Extensions;
44

55
/// <summary>
66
/// Static class that functions as a library of regular expressions.

0 commit comments

Comments
 (0)