Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-locally.ps1 is designed to run on windows. To run CI build locally

- install dependencies

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

``` powershell
Expand Down
2 changes: 1 addition & 1 deletion Build/build-tasks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Enter-Build {
bin = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/bin'))
repository = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../ThirdPartyLibraries'))
examples = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Examples'))
frameworks = 'net8.0', 'net9.0'
frameworks = 'net8.0', 'net9.0', 'net10.0'
version = $(
$buildProps = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/Directory.Build.props'))
$packageVersion = (Select-Xml -Path $buildProps -XPath 'Project/PropertyGroup/DefaultPackageVersion').Node.InnerText
Expand Down
3 changes: 2 additions & 1 deletion Build/install-dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ $ErrorActionPreference = 'Stop'

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

Expand Down
2 changes: 1 addition & 1 deletion Build/tasks/pack-manual-download.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ param(
$Version,

[Parameter(Mandatory = $true)]
[ValidateSet('net8.0', 'net9.0')]
[ValidateSet('net8.0', 'net9.0', 'net10.0')]
[string]
$Framework,

Expand Down
2 changes: 1 addition & 1 deletion Build/tasks/unit-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param (
$BinPath,

[Parameter(Mandatory = $true)]
[ValidateSet('net8.0', 'net9.0')]
[ValidateSet('net8.0', 'net9.0', 'net10.0')]
[string]
$Framework
)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Table of Contents
Requirements <a name="requirements"></a>
----------------------------------------

- tool can be installed on SDKs .NET 9.0, .NET 8.0
- tool can be installed on SDKs .NET 10.0, .NET 9.0, .NET 8.0
- PowerShell module is compatible with Powershell Core 7.2+
- supported project format: [SDK-style](https://docs.microsoft.com/en-us/nuget/resources/check-project-format)
- supported project references: [NuGet](https://www.nuget.org/) and [npm](https://www.npmjs.com) packages
Expand Down
2 changes: 1 addition & 1 deletion Sources/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<SupportedFrameworks>net8.0;net9.0</SupportedFrameworks>
<SupportedFrameworks>net8.0;net9.0;net10.0</SupportedFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
Expand Down
2 changes: 1 addition & 1 deletion Sources/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.300",
"version": "10.0.100",
"allowPrerelease": false,
"rollForward": "latestFeature"
}
Expand Down