ktsu.DeepClone
1.3.1
Prefix Reserved
See the version list below for details.
dotnet add package ktsu.DeepClone --version 1.3.1
NuGet\Install-Package ktsu.DeepClone -Version 1.3.1
<PackageReference Include="ktsu.DeepClone" Version="1.3.1" />
<PackageVersion Include="ktsu.DeepClone" Version="1.3.1" />
<PackageReference Include="ktsu.DeepClone" />
paket add ktsu.DeepClone --version 1.3.1
#r "nuget: ktsu.DeepClone, 1.3.1"
#addin nuget:?package=ktsu.DeepClone&version=1.3.1
#tool nuget:?package=ktsu.DeepClone&version=1.3.1
ktsu.DeepClone
A lightweight .NET library providing a simple, generic interface for implementing deep cloning functionality in your classes.
Introduction
The ktsu.DeepClone
library defines the IDeepCloneable<T>
interface, which allows you to create deep copies of objects. This is particularly useful in scenarios where you need to duplicate an object while ensuring that its references to other objects are also fully cloned, not just copied.
Inspired by and based on the ppy/osu! project's cloning utilities, this library is licensed under the MIT License.
Features
- Generic Interface: Works with any reference type (
class
) - Deep Cloning: Ensures that the cloned object is a completely independent copy, including all nested references
- Lightweight: Minimal dependencies, focused on doing one thing well
- Simple Integration: Easy to implement in your own classes
Installation
Package Manager Console
Install-Package ktsu.DeepClone
.NET CLI
dotnet add package ktsu.DeepClone
Package Reference
<PackageReference Include="ktsu.DeepClone" Version="x.y.z" />
Usage Examples
Basic Example
using ktsu.DeepClone;
public class MyClass : IDeepCloneable<MyClass>
{
public int Value { get; set; }
public MyClass NestedObject { get; set; }
public MyClass DeepClone()
{
return new MyClass
{
Value = this.Value,
NestedObject = this.NestedObject?.DeepClone()
};
}
}
You can then create deep copies of your objects:
var original = new MyClass
{
Value = 42,
NestedObject = new MyClass { Value = 84 }
};
var copy = original.DeepClone();
// The copy is a completely independent object
copy.Value = 100;
copy.NestedObject.Value = 200;
// Original remains unchanged
Console.WriteLine(original.Value); // Outputs: 42
Console.WriteLine(original.NestedObject.Value); // Outputs: 84
Advanced Usage with Collections
public class ComplexObject : IDeepCloneable<ComplexObject>
{
public string Name { get; set; }
public List<ItemObject> Items { get; set; } = new List<ItemObject>();
public Dictionary<string, DataObject> DataMapping { get; set; } = new Dictionary<string, DataObject>();
public ComplexObject DeepClone()
{
var clone = new ComplexObject
{
Name = this.Name
};
// Deep clone list items
foreach (var item in Items)
{
clone.Items.Add(item.DeepClone());
}
// Deep clone dictionary items
foreach (var kvp in DataMapping)
{
clone.DataMapping[kvp.Key] = kvp.Value.DeepClone();
}
return clone;
}
}
public class ItemObject : IDeepCloneable<ItemObject>
{
public int Id { get; set; }
public string Description { get; set; }
public ItemObject DeepClone() => new ItemObject
{
Id = this.Id,
Description = this.Description
};
}
public class DataObject : IDeepCloneable<DataObject>
{
public byte[] Data { get; set; }
public DataObject DeepClone() => new DataObject
{
// For arrays, create a new copy
Data = this.Data?.ToArray()
};
}
API Reference
IDeepCloneable<T>
Interface
The core interface for implementing deep cloning functionality.
Methods
Name | Return Type | Description |
---|---|---|
DeepClone() |
T |
Creates a deep copy of the object, including all nested references |
Implementation Tips
Cloning Different Types of Properties
When implementing DeepClone()
, follow these guidelines for different property types:
- Value Types: Simple assignment is sufficient (
clone.Value = this.Value
) - Strings: Simple assignment is sufficient as strings are immutable
- Cloneable Objects: Call
DeepClone()
on the property (clone.Object = this.Object?.DeepClone()
) - Collections: Create new collection instances and clone each item individually
- Arrays: Use
.ToArray()
to create a new array copy - Non-Cloneable Objects: Consider implementing
IDeepCloneable
for these types if possible
Thread Safety Considerations
The DeepClone()
method should be implemented in a thread-safe manner to ensure it can be called from multiple threads simultaneously. Avoid using shared state or mutable static variables in your implementation.
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.
Acknowledgments
This library is inspired by the ppy/osu! project's cloning utilities. Many thanks to their team for their foundational work and open-source contributions.
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 (1)
Showing the top 1 NuGet packages that depend on ktsu.DeepClone:
Package | Downloads |
---|---|
ktsu.Extensions
A collection of useful extension methods for .NET types including strings, collections, dictionaries, enumerables, and reflection. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.2-pre.7 | 36 | 5/9/2025 |
1.3.2-pre.6 | 106 | 5/8/2025 |
1.3.2-pre.5 | 109 | 5/7/2025 |
1.3.2-pre.4 | 101 | 5/6/2025 |
1.3.2-pre.3 | 105 | 5/5/2025 |
1.3.2-pre.2 | 106 | 5/4/2025 |
1.3.2-pre.1 | 105 | 5/4/2025 |
1.3.1 | 92 | 5/4/2025 |
1.3.1-pre.2 | 41 | 4/26/2025 |
1.3.1-pre.1 | 101 | 4/4/2025 |
1.3.0 | 1,245 | 3/30/2025 |
1.2.1-pre.2 | 62 | 3/29/2025 |
1.2.1-pre.1 | 443 | 3/25/2025 |
1.2.0 | 3,410 | 2/17/2025 |
1.1.17-pre.3 | 65 | 2/6/2025 |
1.1.17-pre.2 | 54 | 2/5/2025 |
1.1.17-pre.1 | 52 | 2/5/2025 |
1.1.16 | 266 | 1/2/2025 |
1.1.16-pre.29 | 56 | 2/4/2025 |
1.1.16-pre.28 | 48 | 2/3/2025 |
1.1.16-pre.27 | 57 | 2/1/2025 |
1.1.16-pre.26 | 63 | 1/30/2025 |
1.1.16-pre.25 | 59 | 1/28/2025 |
1.1.16-pre.24 | 51 | 1/26/2025 |
1.1.16-pre.23 | 47 | 1/24/2025 |
1.1.16-pre.22 | 55 | 1/22/2025 |
1.1.16-pre.21 | 54 | 1/20/2025 |
1.1.16-pre.20 | 49 | 1/18/2025 |
1.1.16-pre.19 | 47 | 1/16/2025 |
1.1.16-pre.18 | 31 | 1/14/2025 |
1.1.16-pre.17 | 48 | 1/13/2025 |
1.1.16-pre.16 | 51 | 1/11/2025 |
1.1.16-pre.15 | 41 | 1/10/2025 |
1.1.16-pre.14 | 51 | 1/10/2025 |
1.1.16-pre.13 | 44 | 1/8/2025 |
1.1.16-pre.12 | 56 | 1/7/2025 |
1.1.16-pre.11 | 57 | 1/6/2025 |
1.1.16-pre.10 | 74 | 1/4/2025 |
1.1.16-pre.9 | 61 | 1/3/2025 |
1.1.16-pre.8 | 62 | 1/3/2025 |
1.1.16-pre.7 | 63 | 1/3/2025 |
1.1.16-pre.6 | 74 | 1/2/2025 |
1.1.16-pre.5 | 81 | 12/31/2024 |
1.1.16-pre.4 | 59 | 12/29/2024 |
1.1.16-pre.3 | 53 | 12/28/2024 |
1.1.16-pre.2 | 59 | 12/27/2024 |
1.1.16-pre.1 | 60 | 12/27/2024 |
1.1.15-pre.1 | 57 | 12/27/2024 |
1.1.14 | 4,172 | 12/26/2024 |
1.1.13 | 94 | 12/26/2024 |
1.1.12 | 96 | 12/26/2024 |
1.1.11 | 90 | 12/26/2024 |
1.1.10 | 91 | 12/26/2024 |
1.1.10-pre.1 | 58 | 12/27/2024 |
1.1.9 | 93 | 12/26/2024 |
1.1.8 | 96 | 12/26/2024 |
1.1.7 | 1,806 | 12/23/2024 |
1.1.6 | 87 | 12/23/2024 |
1.1.5 | 556 | 12/22/2024 |
1.1.4 | 180 | 12/22/2024 |
1.1.3 | 966 | 12/12/2024 |
1.1.2 | 653 | 12/4/2024 |
1.1.1 | 566 | 12/2/2024 |
1.1.0 | 100 | 12/2/2024 |
1.0.18 | 98 | 12/2/2024 |
1.0.17 | 454 | 11/30/2024 |
1.0.16 | 399 | 11/26/2024 |
1.0.15 | 330 | 11/20/2024 |
1.0.14 | 1,067 | 11/13/2024 |
1.0.13 | 955 | 11/1/2024 |
1.0.12 | 1,182 | 10/15/2024 |
1.0.11 | 735 | 10/4/2024 |
1.0.10 | 892 | 9/19/2024 |
1.0.9 | 304 | 9/19/2024 |
1.0.8 | 94 | 9/19/2024 |
1.0.7 | 376 | 9/19/2024 |
1.0.6 | 120 | 9/18/2024 |
1.0.5 | 109 | 9/18/2024 |
1.0.4 | 107 | 9/18/2024 |
1.0.3 | 355 | 9/18/2024 |
1.0.2 | 857 | 9/14/2024 |
1.0.1 | 117 | 9/14/2024 |
## v1.3.1 (patch)
Changes since v1.3.0:
- Remove Directory.Build.props and Directory.Build.targets files, delete unused scripts for managing metadata, changelog, license, and versioning. Add copyright headers to IDeepClonable.cs and TestCloneable.cs. ([@matt-edmondson](https://github.com/matt-edmondson))
- Update project metadata and enhance documentation with detailed usage examples and API reference ([@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 .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .editorconfig ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.3.1-pre.1 (prerelease)
Changes since v1.3.0:
- Sync .editorconfig ([@ktsu[bot]](https://github.com/ktsu[bot]))
## 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 .gitignore ([@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 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.0 (minor)
Changes since v1.1.0:
- Remove unnecessary PackageReference from DeepClone.Test project ([@matt-edmondson](https://github.com/matt-edmondson))
- Replace LICENSE file with LICENSE.md and update copyright information ([@matt-edmondson](https://github.com/matt-edmondson))
- Fix changelog script to handle prerelease version drops correctly ([@matt-edmondson](https://github.com/matt-edmondson))
- Renamed metadata files ([@matt-edmondson](https://github.com/matt-edmondson))
- Add scripts for automated metadata generation and versioning ([@matt-edmondson](https://github.com/matt-edmondson))
- Update test method names and replace LICENSE file ([@matt-edmondson](https://github.com/matt-edmondson))
- Apply new editorconfig ([@matt-edmondson](https://github.com/matt-edmondson))
- Add mailmap ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.17-pre.3 (prerelease)
Changes since v1.1.17-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.17-pre.2 (prerelease)
Changes since v1.1.17-pre.1:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.17-pre.1 (prerelease)
Changes since v1.1.16:
- Fix changelog script to handle prerelease version drops correctly ([@matt-edmondson](https://github.com/matt-edmondson))
- Add mailmap ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.16-pre.29 (prerelease)
Changes since v1.1.16-pre.28:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.28 (prerelease)
Changes since v1.1.16-pre.27:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.27 (prerelease)
Changes since v1.1.16-pre.26:
## v1.1.16-pre.26 (prerelease)
Changes since v1.1.16-pre.25:
## v1.1.16-pre.25 (prerelease)
Changes since v1.1.16-pre.24:
- Bump MSTest from 3.7.2 to 3.7.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.16-pre.24 (prerelease)
Changes since v1.1.16-pre.23:
## v1.1.16-pre.23 (prerelease)
Changes since v1.1.16-pre.22:
## v1.1.16-pre.22 (prerelease)
Changes since v1.1.16-pre.21:
- Bump MSTest from 3.7.1 to 3.7.2 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.16-pre.21 (prerelease)
Changes since v1.1.16-pre.20:
- Bump coverlet.collector from 6.0.3 to 6.0.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.16-pre.20 (prerelease)
Changes since v1.1.16-pre.19:
## v1.1.16-pre.19 (prerelease)
Changes since v1.1.16-pre.18:
## v1.1.16-pre.18 (prerelease)
Changes since v1.1.16-pre.17:
- Bump MSTest from 3.7.0 to 3.7.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.16-pre.17 (prerelease)
Changes since v1.1.16-pre.16:
## v1.1.16-pre.16 (prerelease)
Changes since v1.1.16-pre.15:
## v1.1.16-pre.15 (prerelease)
Changes since v1.1.16-pre.14:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.14 (prerelease)
Changes since v1.1.16-pre.13:
- 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.16-pre.13 (prerelease)
Changes since v1.1.16-pre.12:
## v1.1.16-pre.12 (prerelease)
Changes since v1.1.16-pre.11:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.11 (prerelease)
Changes since v1.1.16-pre.10:
## v1.1.16-pre.10 (prerelease)
Changes since v1.1.16-pre.9:
## v1.1.16-pre.9 (prerelease)
Changes since v1.1.16-pre.8:
- Sync scripts\make-version.ps1 ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.8 (prerelease)
Changes since v1.1.16-pre.7:
- Fix changelog script to handle prerelease version drops correctly ([@matt-edmondson](https://github.com/matt-edmondson))
- Add mailmap ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.16-pre.7 (prerelease)
Changes since v1.1.16-pre.6:
- Add scripts for automated metadata generation and versioning ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.16-pre.6 (prerelease)
Changes since v1.1.16-pre.5:
## v1.1.16-pre.5 (prerelease)
Changes since v1.1.16-pre.4:
- Bump coverlet.collector from 6.0.2 to 6.0.3 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.16-pre.4 (prerelease)
Changes since v1.1.16-pre.3:
## v1.1.16-pre.3 (prerelease)
Changes since v1.1.16-pre.2:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.2 (prerelease)
Changes since v1.1.16-pre.1:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.16-pre.1 (prerelease)
Incremental prerelease update.
## v1.1.15-pre.1 (prerelease)
Changes since v1.1.14:
- Renamed metadata files ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.14 (patch)
Changes since v1.1.13:
- Sync icon.png ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.13 (patch)
Changes since v1.1.12:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.12 (patch)
Changes since v1.1.11:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.11 (patch)
Changes since v1.1.10:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.10 (patch)
Changes since v1.1.9:
- Replace LICENSE file with LICENSE.md and update copyright information ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.10-pre.1 (prerelease)
Changes since v1.1.10:
- Renamed metadata files ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.9 (patch)
Changes since v1.1.8:
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.8 (patch)
Changes since v1.1.7:
- Update test method names and replace LICENSE file ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.7 (patch)
Changes since v1.1.6:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.6 (patch)
Changes since v1.1.5:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.5 (patch)
Changes since v1.1.4:
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.4 (patch)
Changes since v1.1.3:
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.props ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Sync Directory.Build.targets ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.1.3 (patch)
Changes since v1.1.2:
- Bump MSTest.TestFramework from 3.6.3 to 3.6.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.2 (patch)
Changes since v1.1.1:
- Bump MSTest.TestAdapter from 3.6.3 to 3.6.4 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.1.1 (patch)
Changes since v1.1.0:
- Remove unnecessary PackageReference from DeepClone.Test project ([@matt-edmondson](https://github.com/matt-edmondson))
## v1.1.0 (minor)
Changes since 1.0.0:
- Update VERSION ([@matt-edmondson](https://github.com/matt-edmondson))
- Update repository URL in README.md ([@matt-edmondson](https://github.com/matt-edmondson))
- Migrate ktsu.io to ktsu namespace ([@matt-edmondson](https://github.com/matt-edmondson))
- Add test project, update README, and remove .gitattributes ([@matt-edmondson](https://github.com/matt-edmondson))
## 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]))
- Bump MSTest.TestFramework from 3.6.2 to 3.6.3 ([@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]))
## v1.0.13 (patch)
Changes since v1.0.12:
- Bump MSTest.TestAdapter from 3.6.1 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:
- Bump MSTest.TestAdapter from 3.6.0 to 3.6.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
## v1.0.10 (patch)
Changes since v1.0.9:
- Sync .github\workflows\dotnet.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
## v1.0.9 (patch)
Changes since v1.0.8:
## v1.0.8 (patch)
Changes since v1.0.7:
- Sync .github\dependabot.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- 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.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\dependabot-merge.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\dependabot-merge.yml ([@ktsu[bot]](https://github.com/ktsu[bot]))
- Bump MSTest.TestAdapter from 3.5.2 to 3.6.0 ([@dependabot[bot]](https://github.com/dependabot[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]))
- Sync .github\workflows\dotnet.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]))
## 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 (major)
- Update VERSION ([@matt-edmondson](https://github.com/matt-edmondson))
- Migrate ktsu.io to ktsu namespace ([@matt-edmondson](https://github.com/matt-edmondson))
- Update DeepClone.csproj ([@matt-edmondson](https://github.com/matt-edmondson))
- Initial commit ([@matt-edmondson](https://github.com/matt-edmondson))