ktsu.CaseConverter
1.3.2
Prefix Reserved
See the version list below for details.
dotnet add package ktsu.CaseConverter --version 1.3.2
NuGet\Install-Package ktsu.CaseConverter -Version 1.3.2
<PackageReference Include="ktsu.CaseConverter" Version="1.3.2" />
<PackageVersion Include="ktsu.CaseConverter" Version="1.3.2" />
<PackageReference Include="ktsu.CaseConverter" />
paket add ktsu.CaseConverter --version 1.3.2
#r "nuget: ktsu.CaseConverter, 1.3.2"
#:package ktsu.CaseConverter@1.3.2
#addin nuget:?package=ktsu.CaseConverter&version=1.3.2
#tool nuget:?package=ktsu.CaseConverter&version=1.3.2
ktsu.CaseConverter
A library with extension methods to convert strings between common casings used in code.
Introduction
CaseConverter is a lightweight .NET library that provides a set of extension methods for converting strings between various case styles commonly used in programming. Whether you need to transform identifiers between different naming conventions or format text for display, CaseConverter makes these operations simple and efficient.
Features
- ToTitleCase: Converts text to Title Case (Each Word Capitalized)
- ToPascalCase: Converts text to PascalCase (CapitalizedWords)
- ToCamelCase: Converts text to camelCase (firstWordLowerCaseRestCapitalized)
- ToSnakeCase: Converts text to snake_case (lowercase_with_underscores)
- ToKebabCase: Converts text to kebab-case (lowercase-with-hyphens)
- ToMacroCase: Converts text to MACRO_CASE (UPPERCASE_WITH_UNDERSCORES)
- ToUppercaseFirstChar: Converts only the first character to uppercase (Uppercasefirstchar)
- ToLowercaseFirstChar: Converts only the first character to lowercase (lowercaseFirstChar)
Installation
Package Manager Console
Install-Package ktsu.CaseConverter
.NET CLI
dotnet add package ktsu.CaseConverter
Package Reference
<PackageReference Include="ktsu.CaseConverter" Version="x.y.z" />
Usage Examples
Basic Example
using ktsu.CaseConverter;
string original = "This is a test string";
// Convert to different cases
string pascalCase = original.ToPascalCase(); // "ThisIsATestString"
string camelCase = original.ToCamelCase(); // "thisIsATestString"
string snakeCase = original.ToSnakeCase(); // "this_is_a_test_string"
string kebabCase = original.ToKebabCase(); // "this-is-a-test-string"
string macroCase = original.ToMacroCase(); // "THIS_IS_A_TEST_STRING"
Console.WriteLine(pascalCase);
Console.WriteLine(camelCase);
Console.WriteLine(snakeCase);
Console.WriteLine(kebabCase);
Console.WriteLine(macroCase);
Advanced Usage
// Working with code identifiers
string variableName = "customer_order_details";
string className = variableName.ToPascalCase(); // "CustomerOrderDetails"
string propertyName = variableName.ToCamelCase(); // "customerOrderDetails"
string constantName = variableName.ToMacroCase(); // "CUSTOMER_ORDER_DETAILS"
// Handling acronyms and special cases
string withAcronym = "API_response_URL";
string pascalWithAcronym = withAcronym.ToPascalCase(); // "ApiResponseUrl"
// First character transformations
string sentence = "lorem ipsum dolor sit amet";
string capitalized = sentence.ToUppercaseFirstChar(); // "Lorem ipsum dolor sit amet"
API Reference
Extension Methods
Method | Parameters | Return Type | Description |
---|---|---|---|
ToTitleCase() |
None | string |
Converts string to Title Case |
ToPascalCase() |
None | string |
Converts string to PascalCase |
ToCamelCase() |
None | string |
Converts string to camelCase |
ToSnakeCase() |
None | string |
Converts string to snake_case |
ToKebabCase() |
None | string |
Converts string to kebab-case |
ToMacroCase() |
None | string |
Converts string to MACRO_CASE |
ToUppercaseFirstChar() |
None | string |
Capitalizes only the first character |
ToLowercaseFirstChar() |
None | string |
Makes only the first character lowercase |
Contributing
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Please make sure to update tests as appropriate and adhere to the existing coding style.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on ktsu.CaseConverter:
Package | Downloads |
---|---|
ktsu.AppDataStorage
Application data management library using JSON serialization to save and load data in the user's app data folder. |
|
ktsu.ImGuiWidgets
A library of custom widgets using ImGui.NET and utilities to enhance ImGui-based applications. |
|
ktsu.ImGuiPopups
A library for custom popups using ImGui.NET. |
|
ktsu.AppData
Application data storage library for .NET that provides type-safe persistence with dependency injection support. Features automatic backup and recovery, debounced saves, mock file system support for testing, and cross-platform storage using the user's app data directory. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.3.3-pre.3 | 131 | 5/20/2025 |
1.3.3-pre.1 | 85 | 5/17/2025 |
1.3.2 | 3,051 | 5/17/2025 |
1.3.2-pre.14 | 133 | 5/16/2025 |
1.3.2-pre.13 | 201 | 5/15/2025 |
1.3.2-pre.12 | 204 | 5/14/2025 |
1.3.2-pre.11 | 207 | 5/13/2025 |
1.3.2-pre.10 | 229 | 5/12/2025 |
1.3.2-pre.9 | 162 | 5/11/2025 |
1.3.2-pre.8 | 106 | 5/10/2025 |
1.3.2-pre.7 | 62 | 5/9/2025 |
1.3.2-pre.6 | 122 | 5/8/2025 |
1.3.2-pre.5 | 130 | 5/7/2025 |
1.3.2-pre.4 | 132 | 5/6/2025 |
1.3.2-pre.3 | 131 | 5/5/2025 |
1.3.2-pre.2 | 123 | 5/4/2025 |
1.3.2-pre.1 | 131 | 5/4/2025 |
1.3.1 | 170 | 5/4/2025 |
1.3.1-pre.2 | 69 | 4/26/2025 |
1.3.1-pre.1 | 132 | 4/4/2025 |
1.3.0 | 1,760 | 3/30/2025 |
1.2.1-pre.2 | 82 | 3/29/2025 |
1.2.1-pre.1 | 462 | 3/25/2025 |
1.2.0 | 1,487 | 2/17/2025 |
1.1.2-pre.3 | 89 | 2/6/2025 |
1.1.2-pre.2 | 70 | 2/5/2025 |
1.1.2-pre.1 | 77 | 2/5/2025 |
1.1.1 | 2,056 | 1/3/2025 |
1.1.1-pre.23 | 80 | 2/3/2025 |
1.1.1-pre.22 | 72 | 2/3/2025 |
1.1.1-pre.21 | 82 | 2/1/2025 |
1.1.1-pre.20 | 68 | 1/30/2025 |
1.1.1-pre.19 | 69 | 1/28/2025 |
1.1.1-pre.18 | 71 | 1/26/2025 |
1.1.1-pre.17 | 70 | 1/24/2025 |
1.1.1-pre.16 | 67 | 1/22/2025 |
1.1.1-pre.15 | 79 | 1/21/2025 |
1.1.1-pre.14 | 66 | 1/20/2025 |
1.1.1-pre.13 | 74 | 1/18/2025 |
1.1.1-pre.12 | 63 | 1/16/2025 |
1.1.1-pre.11 | 53 | 1/14/2025 |
1.1.1-pre.10 | 59 | 1/13/2025 |
1.1.1-pre.9 | 71 | 1/11/2025 |
1.1.1-pre.8 | 64 | 1/10/2025 |
1.1.1-pre.7 | 72 | 1/10/2025 |
1.1.1-pre.6 | 74 | 1/8/2025 |
1.1.1-pre.5 | 79 | 1/7/2025 |
1.1.1-pre.4 | 78 | 1/6/2025 |
1.1.1-pre.3 | 97 | 1/4/2025 |
1.1.1-pre.2 | 82 | 1/3/2025 |
1.1.1-pre.1 | 83 | 1/3/2025 |
1.1.0 | 111 | 1/3/2025 |
1.0.29 | 112 | 1/2/2025 |
1.0.29-pre.7 | 86 | 1/3/2025 |
1.0.29-pre.6 | 85 | 1/2/2025 |
1.0.29-pre.5 | 105 | 12/31/2024 |
1.0.29-pre.4 | 78 | 12/29/2024 |
1.0.29-pre.3 | 75 | 12/28/2024 |
1.0.29-pre.2 | 73 | 12/27/2024 |
1.0.29-pre.1 | 79 | 12/27/2024 |
1.0.28-pre.1 | 71 | 12/27/2024 |
1.0.27 | 1,690 | 12/26/2024 |
1.0.26 | 115 | 12/26/2024 |
1.0.25 | 117 | 12/26/2024 |
1.0.24 | 112 | 12/26/2024 |
1.0.23 | 502 | 12/23/2024 |
1.0.22 | 103 | 12/23/2024 |
1.0.21 | 218 | 12/22/2024 |
1.0.20 | 223 | 12/22/2024 |
1.0.19 | 995 | 12/4/2024 |
1.0.18 | 420 | 12/2/2024 |
1.0.17 | 322 | 11/30/2024 |
1.0.16 | 310 | 11/26/2024 |
1.0.15 | 307 | 11/20/2024 |
1.0.14 | 520 | 11/13/2024 |
1.0.13 | 714 | 11/1/2024 |
1.0.12 | 1,179 | 10/4/2024 |
1.0.11 | 628 | 9/19/2024 |
1.0.10 | 204 | 9/19/2024 |
1.0.10-pre.1 | 72 | 12/27/2024 |
1.0.9 | 102 | 9/19/2024 |
1.0.8 | 153 | 9/19/2024 |
1.0.7 | 131 | 9/18/2024 |
1.0.6 | 109 | 9/18/2024 |
1.0.5 | 270 | 9/18/2024 |
1.0.4 | 184 | 9/18/2024 |
1.0.3 | 133 | 9/18/2024 |
1.0.2 | 382 | 9/14/2024 |
1.0.1 | 130 | 9/14/2024 |
## v1.3.2 (patch)
Changes since v1.3.1:
- Fix project URL in New-License function to remove Owner variable, simplifying the URL construction. ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.3.2-pre.14 (prerelease)
Changes since v1.3.2-pre.13:
## v1.3.2-pre.13 (prerelease)
Changes since v1.3.2-pre.12:
## v1.3.2-pre.12 (prerelease)
Changes since v1.3.2-pre.11:
## v1.3.2-pre.11 (prerelease)
Changes since v1.3.2-pre.10:
## v1.3.2-pre.10 (prerelease)
Changes since v1.3.2-pre.9:
## v1.3.2-pre.9 (prerelease)
Changes since v1.3.2-pre.8:
## v1.3.2-pre.8 (prerelease)
Changes since v1.3.2-pre.7:
## v1.3.2-pre.7 (prerelease)
Changes since v1.3.2-pre.6:
## v1.3.2-pre.6 (prerelease)
Changes since v1.3.2-pre.5:
## v1.3.2-pre.5 (prerelease)
Changes since v1.3.2-pre.4:
## v1.3.2-pre.4 (prerelease)
Changes since v1.3.2-pre.3:
## v1.3.2-pre.3 (prerelease)
Changes since v1.3.2-pre.2:
## v1.3.2-pre.2 (prerelease)
Changes since v1.3.2-pre.1:
## v1.3.2-pre.1 (prerelease)
Changes since v1.3.1:
- Sync scripts\PSBuild.psm1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.3.1 (patch)
Changes since v1.3.0:
- Remove obsolete build configuration files and scripts, including Directory.Build.props, Directory.Build.targets, and various PowerShell scripts for versioning and changelog generation. Update CaseConverter and its tests to use 'var' for variable declarations and add copyright headers. ([@matt-edmondson](https://github.com/matt-edmondson))
- Update README and project files to reflect new SDK and enhance documentation ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.3.1-pre.2 (prerelease)
Changes since v1.3.1-pre.1:
- Sync .runsettings ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .editorconfig ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.3.1-pre.1 (prerelease)
Incremental prerelease update.
## v1.3.0 (minor)
Changes since v1.2.0:
- Add LICENSE template ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.2.1-pre.2 (prerelease)
Changes since v1.2.1-pre.1:
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.2.1-pre.1 (prerelease)
Changes since v1.2.0:
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .editorconfig ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .gitignore ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.2.0 (minor)
Changes since v1.1.0:
- Update .editorconfig and enhance CaseConverter tests ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.2-pre.3 (prerelease)
Changes since v1.1.2-pre.2:
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.2-pre.2 (prerelease)
Changes since v1.1.2-pre.1:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.2-pre.1 (prerelease)
Changes since v1.1.1:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump coverlet.collector from 6.0.3 to 6.0.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump MSTest from 3.7.1 to 3.7.2 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump MSTest from 3.7.2 to 3.7.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest from 3.7.0 to 3.7.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1 (patch)
Changes since v1.1.0:
- Sync .mailmap ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.23 (prerelease)
Changes since v1.1.1-pre.22:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.22 (prerelease)
Changes since v1.1.1-pre.21:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.21 (prerelease)
Changes since v1.1.1-pre.20:
## v1.1.1-pre.20 (prerelease)
Changes since v1.1.1-pre.19:
## v1.1.1-pre.19 (prerelease)
Changes since v1.1.1-pre.18:
- Bump MSTest from 3.7.2 to 3.7.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.1-pre.18 (prerelease)
Changes since v1.1.1-pre.17:
## v1.1.1-pre.17 (prerelease)
Changes since v1.1.1-pre.16:
## v1.1.1-pre.16 (prerelease)
Changes since v1.1.1-pre.15:
- Bump MSTest from 3.7.1 to 3.7.2 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.1-pre.15 (prerelease)
Changes since v1.1.1-pre.14:
- Bump coverlet.collector from 6.0.3 to 6.0.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.1-pre.14 (prerelease)
Changes since v1.1.1-pre.13:
## v1.1.1-pre.13 (prerelease)
Changes since v1.1.1-pre.12:
## v1.1.1-pre.12 (prerelease)
Changes since v1.1.1-pre.11:
## v1.1.1-pre.11 (prerelease)
Changes since v1.1.1-pre.10:
- Bump MSTest from 3.7.0 to 3.7.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.1-pre.10 (prerelease)
Changes since v1.1.1-pre.9:
## v1.1.1-pre.9 (prerelease)
Changes since v1.1.1-pre.8:
## v1.1.1-pre.8 (prerelease)
Changes since v1.1.1-pre.7:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.7 (prerelease)
Changes since v1.1.1-pre.6:
- Sync scripts\make-changelog.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.6 (prerelease)
Changes since v1.1.1-pre.5:
## v1.1.1-pre.5 (prerelease)
Changes since v1.1.1-pre.4:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.4 (prerelease)
Changes since v1.1.1-pre.3:
## v1.1.1-pre.3 (prerelease)
Changes since v1.1.1-pre.2:
## v1.1.1-pre.2 (prerelease)
Changes since v1.1.1-pre.1:
- Sync .mailmap ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.1-pre.1 (prerelease)
Incremental prerelease update.
## v1.1.0 (minor)
Changes since v1.0.29:
- Add unit test project for CaseConverter ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.29-pre.7 (prerelease)
Changes since v1.0.29-pre.6:
- Add automation scripts for metadata management and versioning ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.29-pre.6 (prerelease)
Changes since v1.0.29-pre.5:
## v1.0.29-pre.5 (prerelease)
Changes since v1.0.29-pre.4:
- Bump coverlet.collector from 6.0.2 to 6.0.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.29-pre.4 (prerelease)
Changes since v1.0.29-pre.3:
## v1.0.29-pre.3 (prerelease)
Changes since v1.0.29-pre.2:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.29-pre.2 (prerelease)
Changes since v1.0.29-pre.1:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.29-pre.1 (prerelease)
Incremental prerelease update.
## v1.0.28-pre.1 (prerelease)
Changes since v1.0.27:
- Renamed metadata files ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.27 (patch)
Changes since v1.0.26:
- Sync icon.png ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.26 (patch)
Changes since v1.0.25:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.25 (patch)
Changes since v1.0.24:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.24 (patch)
Changes since v1.0.23:
- Replace LICENSE file with LICENSE.md for improved formatting and clarity ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.23 (patch)
Changes since v1.0.22:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.22 (patch)
Changes since v1.0.21:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.21 (patch)
Changes since v1.0.20:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.20 (patch)
Changes since v1.0.19:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump MSTest.TestFramework from 3.6.4 to 3.7.0 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest.TestAdapter from 3.6.4 to 3.7.0 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.19 (patch)
Changes since v1.0.18:
- Bump MSTest.TestAdapter from 3.6.3 to 3.6.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest.TestFramework from 3.6.3 to 3.6.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.18 (patch)
Changes since v1.0.17:
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.17 (patch)
Changes since v1.0.16:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.16 (patch)
Changes since v1.0.15:
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.15 (patch)
Changes since v1.0.14:
- Bump Microsoft.NET.Test.Sdk in the microsoft group ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.14 (patch)
Changes since v1.0.13:
- Bump MSTest.TestAdapter from 3.6.2 to 3.6.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest.TestFramework from 3.6.2 to 3.6.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.13 (patch)
Changes since v1.0.12:
- Bump MSTest.TestAdapter from 3.6.0 to 3.6.2 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest.TestFramework from 3.6.1 to 3.6.2 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.12 (patch)
Changes since v1.0.11:
- Bump MSTest.TestFramework from 3.6.0 to 3.6.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.11 (patch)
Changes since v1.0.10:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.10 (patch)
Changes since v1.0.9:
## v1.0.10-pre.1 (prerelease)
Changes since v1.0.10:
- Replace LICENSE file with LICENSE.md for improved formatting and clarity ([@matt-edmondson](https://github.com/matt-edmondson))
- Renamed metadata files ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.9 (patch)
Changes since v1.0.8:
- Sync .github\dependabot.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\dependabot.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.8 (patch)
Changes since v1.0.7:
- Sync .github\workflows\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.7 (patch)
Changes since v1.0.6:
- Sync .github\workflows\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.6 (patch)
Changes since v1.0.5:
- Sync .github\workflows\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.5 (patch)
Changes since v1.0.4:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.4 (patch)
Changes since v1.0.3:
- Sync .github\workflows\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump MSTest.TestFramework from 3.5.2 to 3.6.0 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Bump MSTest.TestAdapter from 3.5.2 to 3.6.0 ([@dependabot[bot]](https://github.com/dependabot[bot]))
- Sync .github\workflows\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.3 (patch)
Changes since v1.0.2:
- Sync .github\dependabot.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.2 (patch)
Changes since v1.0.1:
- Migrate ktsu.io to ktsu namespace ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.0.1 (major)
- Update LICENSE ([@matt-edmondson](https://github.com/matt-edmondson))
- Read from VERSION when building ([@matt-edmondson](https://github.com/matt-edmondson))
- Update .editorconfig ([@matt-edmondson](https://github.com/matt-edmondson))
- Update Directory.Build.props ([@matt-edmondson](https://github.com/matt-edmondson))
- Update dotnet.yml ([@matt-edmondson](https://github.com/matt-edmondson))
- Create VERSION ([@matt-edmondson](https://github.com/matt-edmondson))
- Update build scripts ([@matt-edmondson](https://github.com/matt-edmondson))
- Update dotnet.yml ([@matt-edmondson](https://github.com/matt-edmondson))
- Read from AUTHORS file during build ([@matt-edmondson](https://github.com/matt-edmondson))
- Read PackageDescription from DESCRIPTION file ([@matt-edmondson](https://github.com/matt-edmondson))
- Avoid double upload of symbols package ([@matt-edmondson](https://github.com/matt-edmondson))
- Assign dependabot PRs to matt ([@matt-edmondson](https://github.com/matt-edmondson))
- Update dotnet.yml ([@matt-edmondson](https://github.com/matt-edmondson))
- Fix code style errors ([@matt-edmondson](https://github.com/matt-edmondson))
- Make title case split words on case change so it can convert pascal to title ([@matt-edmondson](https://github.com/matt-edmondson))
- Update nuget.config ([@matt-edmondson](https://github.com/matt-edmondson))
- Create dependabot-merge.yml ([@matt-edmondson](https://github.com/matt-edmondson))
- Fix misplaced usings ([@matt-edmondson](https://github.com/matt-edmondson))
- Make snake_case derive from MACRO_CASE rather than vice-versa per dotnet's suggestion as uppercase is more resilient to round-trip conversion ([@matt-edmondson](https://github.com/matt-edmondson))
- Update .editorconfig ([@matt-edmondson](https://github.com/matt-edmondson))
- Add github workflow to build and upload to nuget ([@matt-edmondson](https://github.com/matt-edmondson))
- Migrate from .project.props to Directory.Build.props ([@matt-edmondson](https://github.com/matt-edmondson))
- Update dotnet.yml ([@matt-edmondson](https://github.com/matt-edmondson))
- Initial commit ([@matt-edmondson](https://github.com/matt-edmondson))
- Add github package support ([@matt-edmondson](https://github.com/matt-edmondson))
- Enable dependabot and sourcelink ([@matt-edmondson](https://github.com/matt-edmondson))
- Update Directory.Build.props ([@matt-edmondson](https://github.com/matt-edmondson))
- Update build config ([@matt-edmondson](https://github.com/matt-edmondson))
- Update nuget.config ([@matt-edmondson](https://github.com/matt-edmondson))
- Update Directory.Build.targets ([@matt-edmondson](https://github.com/matt-edmondson))
- Update description and readme ([@matt-edmondson](https://github.com/matt-edmondson))
- Dont try to push packages when building pull requests ([@matt-edmondson](https://github.com/matt-edmondson))
- Update LICENSE ([@matt-edmondson](https://github.com/matt-edmondson))