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
6 changes: 3 additions & 3 deletions 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 = 'net6.0', 'net8.0', 'net9.0'
frameworks = 'net8.0', 'net9.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 Expand Up @@ -52,7 +52,7 @@ task Build {
task ThirdPartyNotices {
Invoke-Build `
-File 'tasks/third-party-notices.ps1' `
-AppPath (Join-Path $settings.bin 'app/net6.0/ThirdPartyLibraries.dll') `
-AppPath (Join-Path $settings.bin 'app/net8.0/ThirdPartyLibraries.dll') `
-Version $settings.version `
-SourcesPath $settings.sources `
-RepositoryPath $settings.repository `
Expand Down Expand Up @@ -146,7 +146,7 @@ task PsCoreTest {
}

task UpdateExamples {
$appPath = Join-Path $settings.bin 'app/net6.0/ThirdPartyLibraries.dll'
$appPath = Join-Path $settings.bin 'app/net8.0/ThirdPartyLibraries.dll'
$builds = @()

$examples = Get-ChildItem -Path (Join-Path $settings.examples 'third-party-notices-template') -Directory
Expand Down
3 changes: 1 addition & 2 deletions Build/install-dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ $ErrorActionPreference = 'Stop'

if (-not $List -or ('.net' -in $List)) {
$install = Join-Path $PSScriptRoot 'scripts/Install-DotNet.ps1'
& $install '6.0.418'
& $install '9.0.100-rc.2.24474.11'
& $install '8.0.403'
& $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('net6.0', 'net8.0', 'net9.0')]
[ValidateSet('net8.0', 'net9.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('net6.0', 'net8.0', 'net9.0')]
[ValidateSet('net8.0', 'net9.0')]
[string]
$Framework
)
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>net6.0;net8.0;net9.0</SupportedFrameworks>
<SupportedFrameworks>net8.0;net9.0</SupportedFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": true,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ConfigureAwaitChecker.Analyzer [5.0.0.1](https://www.nuget.org/packages/Configur

Used by: ThirdPartyLibraries internal

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -29,7 +28,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Bcl.AsyncInterfaces [8.0.0](https://www.nuget.org/packages/Microsoft.B

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": true,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.CodeCoverage [17.11.1](https://www.nuget.org/packages/Microsoft.CodeCo

Used by: ThirdPartyLibraries internal

Target frameworks: net6.0, net8.0, net9.0
Target frameworks: net8.0, net9.0

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -35,7 +34,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Abstractions [8.0.0](https://www.nuget.org/pa

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -35,7 +34,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Binder [8.0.2](https://www.nuget.org/packages

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down Expand Up @@ -39,7 +38,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables [8.0.0](https://www.nuge

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down Expand Up @@ -51,7 +50,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.FileExtensions [8.0.1](https://www.nuget.org/

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -30,10 +29,6 @@
{
"Name": "Microsoft.Extensions.FileProviders.Abstractions",
"Version": "8.0.0"
},
{
"Name": "System.Text.Json",
"Version": "8.0.5"
}
]
}
Expand All @@ -51,7 +46,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Json [8.0.1](https://www.nuget.org/packages/M

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand All @@ -20,7 +20,7 @@ Remarks
no remarks


Dependencies 5
Dependencies 4
-----------

|Name|Version|
Expand All @@ -29,6 +29,5 @@ Dependencies 5
|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0|
|[Microsoft.Extensions.Configuration.FileExtensions](../../../../packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1)|8.0.1|
|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0|
|[System.Text.Json](../../../../packages/nuget.org/system.text.json/8.0.5)|8.0.5|

*This page was generated by a tool.*
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down Expand Up @@ -47,7 +46,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.UserSecrets [8.0.1](https://www.nuget.org/pac

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down Expand Up @@ -39,7 +38,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration [8.0.0](https://www.nuget.org/packages/Micros

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -35,7 +34,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.FileProviders.Abstractions [8.0.0](https://www.nuget.org/pa

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand Down Expand Up @@ -43,7 +42,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.FileProviders.Physical [8.0.0](https://www.nuget.org/packag

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"Name": "ThirdPartyLibraries",
"InternalOnly": false,
"TargetFrameworks": [
"net6.0",
"net8.0",
"net9.0",
"netstandard2.1"
Expand All @@ -29,7 +28,6 @@
},
{
"Subject": "project",
"Code": null,
"HRef": "https://dot.net/"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft.Extensions.FileSystemGlobbing [8.0.0](https://www.nuget.org/packages/M

Used by: ThirdPartyLibraries

Target frameworks: net6.0, net8.0, net9.0, netstandard2.1
Target frameworks: net8.0, net9.0, netstandard2.1

License: [MIT](../../../../licenses/mit)

Expand Down
Loading