Skip to content

Commit c599a20

Browse files
Merge pull request #135 from max-ieremenko/target/net10
target .net 10.0
2 parents d2513f1 + 73a347d commit c599a20

8 files changed

Lines changed: 9 additions & 8 deletions

File tree

Build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-locally.ps1 is designed to run on windows. To run CI build locally
88

99
- install dependencies
1010

11-
[net8.0 sdk](https://dotnet.microsoft.com/download/dotnet/8.0),
11+
[net10.0 sdk](https://dotnet.microsoft.com/download/dotnet/10.0),
1212
[InvokeBuild](https://www.powershellgallery.com/packages/InvokeBuild)
1313

1414
``` powershell

Build/build-tasks.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Enter-Build {
1717
bin = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/bin'))
1818
repository = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../ThirdPartyLibraries'))
1919
examples = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Examples'))
20-
frameworks = 'net8.0', 'net9.0'
20+
frameworks = 'net8.0', 'net9.0', 'net10.0'
2121
version = $(
2222
$buildProps = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/Directory.Build.props'))
2323
$packageVersion = (Select-Xml -Path $buildProps -XPath 'Project/PropertyGroup/DefaultPackageVersion').Node.InnerText

Build/install-dependencies.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ $ErrorActionPreference = 'Stop'
1515

1616
if (-not $List -or ('.net' -in $List)) {
1717
$install = Join-Path $PSScriptRoot 'scripts/Install-DotNet.ps1'
18-
& $install '8.0.403'
18+
& $install '8.0.414'
19+
& $install '9.0.305'
1920
& $install (Get-Content -Raw (Join-Path $PSScriptRoot '../Sources/global.json') | ConvertFrom-Json).sdk.version
2021
}
2122

Build/tasks/pack-manual-download.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ param(
1010
$Version,
1111

1212
[Parameter(Mandatory = $true)]
13-
[ValidateSet('net8.0', 'net9.0')]
13+
[ValidateSet('net8.0', 'net9.0', 'net10.0')]
1414
[string]
1515
$Framework,
1616

Build/tasks/unit-test.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ param (
66
$BinPath,
77

88
[Parameter(Mandatory = $true)]
9-
[ValidateSet('net8.0', 'net9.0')]
9+
[ValidateSet('net8.0', 'net9.0', 'net10.0')]
1010
[string]
1111
$Framework
1212
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Table of Contents
3535
Requirements <a name="requirements"></a>
3636
----------------------------------------
3737

38-
- tool can be installed on SDKs .NET 9.0, .NET 8.0
38+
- tool can be installed on SDKs .NET 10.0, .NET 9.0, .NET 8.0
3939
- PowerShell module is compatible with Powershell Core 7.2+
4040
- supported project format: [SDK-style](https://docs.microsoft.com/en-us/nuget/resources/check-project-format)
4141
- supported project references: [NuGet](https://www.nuget.org/) and [npm](https://www.npmjs.com) packages

Sources/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<SupportedFrameworks>net8.0;net9.0</SupportedFrameworks>
3+
<SupportedFrameworks>net8.0;net9.0;net10.0</SupportedFrameworks>
44
<OutputType>Library</OutputType>
55
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66
<WarningsAsErrors />

Sources/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.300",
3+
"version": "10.0.100",
44
"allowPrerelease": false,
55
"rollForward": "latestFeature"
66
}

0 commit comments

Comments
 (0)