Skip to content

Commit a06491b

Browse files
committed
Merge branch 'release/10.0.0' into develop
2 parents f9ef925 + 0344de0 commit a06491b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [vNext]
88

9+
## [10.0.0] / 2025-11-20
10+
- Added support for .NET 10
11+
- Added support for slnx solution files
12+
- Updated dependencies
13+
- Fixed PowerShell/Pwsh argument positioning
14+
915
## [9.0.4] / 2025-01-15
1016
- Security: Fixed output filter from `ArgumentStringHandler`
1117
- Removed obsolete members
@@ -1216,7 +1222,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
12161222
- Added CLT tasks for Git
12171223
- Fixed background color in console output
12181224

1219-
[vNext]: https://github.com/nuke-build/nuke/compare/9.0.4...HEAD
1225+
[vNext]: https://github.com/nuke-build/nuke/compare/10.0.0...HEAD
1226+
[10.0.0]: https://github.com/nuke-build/nuke/compare/9.0.4...10.0.0
12201227
[9.0.4]: https://github.com/nuke-build/nuke/compare/9.0.3...9.0.4
12211228
[9.0.3]: https://github.com/nuke-build/nuke/compare/9.0.2...9.0.3
12221229
[9.0.2]: https://github.com/nuke-build/nuke/compare/9.0.1...9.0.2

source/Nuke.ProjectModel.Tests/ProjectModelTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ProjectModelTest
1515
{
1616
private static AbsolutePath RootDirectory => Constants.TryGetRootDirectoryFrom(EnvironmentInfo.WorkingDirectory).NotNull();
1717

18-
private static AbsolutePath SolutionFile => RootDirectory / "nuke-common.sln";
18+
private static AbsolutePath SolutionFile => RootDirectory / "nuke-common.slnx";
1919

2020
[Fact]
2121
public void ProjectTest()

source/Nuke.SolutionModel.Tests/SolutionModelTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class SolutionModelTest
1616
{
1717
private static AbsolutePath RootDirectory => Constants.TryGetRootDirectoryFrom(EnvironmentInfo.WorkingDirectory).NotNull();
1818

19-
private static AbsolutePath SolutionFile => RootDirectory / "nuke-common.sln";
19+
private static AbsolutePath SolutionFile => RootDirectory / "nuke-common.slnx";
2020

2121
[Fact]
2222
public void SolutionTest()

0 commit comments

Comments
 (0)