diff --git a/Directory.Packages.props b/Directory.Packages.props
index cbe66772..592b3fcb 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -14,6 +14,7 @@
+
diff --git a/Funcky.Async/Funcky.Async.csproj b/Funcky.Async/Funcky.Async.csproj
index 6b6b255d..fa70228a 100644
--- a/Funcky.Async/Funcky.Async.csproj
+++ b/Funcky.Async/Funcky.Async.csproj
@@ -43,6 +43,7 @@
+
@@ -51,5 +52,4 @@
-
diff --git a/Funcky.Xunit.v3/Funcky.Xunit.v3.csproj b/Funcky.Xunit.v3/Funcky.Xunit.v3.csproj
index 000a226b..287e0686 100644
--- a/Funcky.Xunit.v3/Funcky.Xunit.v3.csproj
+++ b/Funcky.Xunit.v3/Funcky.Xunit.v3.csproj
@@ -24,6 +24,7 @@
+
@@ -32,5 +33,4 @@
-
diff --git a/Funcky.Xunit/Funcky.Xunit.csproj b/Funcky.Xunit/Funcky.Xunit.csproj
index ea6156d7..07146a0d 100644
--- a/Funcky.Xunit/Funcky.Xunit.csproj
+++ b/Funcky.Xunit/Funcky.Xunit.csproj
@@ -19,6 +19,7 @@
+
@@ -28,5 +29,4 @@
-
diff --git a/Funcky.sln b/Funcky.sln
index 37fb4ae8..3a03ca90 100644
--- a/Funcky.sln
+++ b/Funcky.sln
@@ -26,7 +26,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build Config", "Build Confi
GlobalUsings.props = GlobalUsings.props
GlobalUsings.Test.props = GlobalUsings.Test.props
NuGet.config = NuGet.config
- SemanticVersioning.targets = SemanticVersioning.targets
typos.toml = typos.toml
EndProjectSection
EndProject
diff --git a/SemanticVersioning.targets b/SemanticVersioning.targets
deleted file mode 100644
index 18d6a4f2..00000000
--- a/SemanticVersioning.targets
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
- <_NuGetVersioningAssemblyFile Condition="'$(MSBuildRuntimeType)' == 'Core'">$(MSBuildToolsPath)/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/NuGet.Versioning.dll
- <_NuGetVersioningAssemblyFile Condition="'$(MSBuildRuntimeType)' != 'Core'">$(MSBuildToolsPath)/Sdks/NuGet.Build.Tasks.Pack/Desktop/NuGet.Versioning.dll
- <_NuGetVersioningAssemblyFile Condition="!$([System.IO.Path]::Exists('$(_NuGetVersioningAssemblyFile)'))">$(MSBuildToolsPath)/NuGet.Versioning.dll
-
-
-
-
-
-
-
-
-
-
- $"[{version}]",
- // We use Cargo's convention for 0.x versions i.e. minor = breaking, patch = feature or patch.
- { Major: 0, Minor: var minor, Patch: var patch } => $"[0.{minor}.{patch}, 0.{minor + 1})",
- // 1.x versions follow regular SemVer rules.
- { Major: var major, Minor: var minor, Patch: var patch } => $"[{major}.{minor}.{patch}, {major + 1})",
- };
- projectReference.SetMetadata("ProjectVersion", range);
- }
-
- ProjectReferencesWithExactVersions = ProjectReferencesWithVersions;
- ]]>
-
-
-
-
-
-
-
-
- <_ProjectReferencesWithVersions Remove="@(_ProjectReferencesWithVersions)" />
- <_ProjectReferencesWithVersions Include="@(_ProjectReferencesWithExactVersions)" />
-
-
-