Skip to content

Instantly share code, notes, and snippets.

@pekspro
Last active April 11, 2023 07:26
Show Gist options
  • Save pekspro/24fca2eb1cad8c30333a910b163a3f6a to your computer and use it in GitHub Desktop.
Save pekspro/24fca2eb1cad8c30333a910b163a3f6a to your computer and use it in GitHub Desktop.
Updates all .csproj-files from .NET 5 to .NET 6 RC and reverse
# This script updates all .csproj-files from .NET 5 to .NET 6 preview. It updates TargetFramework and
# all Microsoft- and System-packages.
# Put this script in the folder that contains the .csproj-files and then run it. All .csproj-files,
# including in subdirectories, will be converted.
$configFiles = Get-ChildItem . *.csproj -rec
foreach ($file in $configFiles)
{
$content = (Get-Content $file.PSPath)
if(!($content -match "<TargetFramework>net5.0(-[a-zA-Z]*)?</TargetFramework>"))
{
Write-Warning "Skipping $($file.FullName)"
continue;
}
Write-Output "Updating $($file.FullName)"
$content | `
Foreach-Object { $_ `
-replace "<TargetFramework>net5.0</TargetFramework>", "<TargetFramework>net6.0</TargetFramework>" `
-replace '<TargetFramework>net5.0-([a-zA-Z]*)</TargetFramework>', '<TargetFramework>net6.0-${1}</TargetFramework>' `
-replace '(Include="Microsoft.AspNet.DynamicData.EFProvider"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNet.EntityDataSource"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.ApiAuthorization.IdentityServer"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Ref"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-musl-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.osx-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.AzureAD.UI"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.AzureADB2C.UI"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Certificate"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Facebook"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Google"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.JwtBearer"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Negotiate"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Twitter"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.WsFederation"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Authorization"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServices.SiteExtension"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServicesIntegration"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Analyzers"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Authorization"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Forms"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Web"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.Server"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebView"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.ConcurrencyLimiter"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Connections.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Cryptography.Internal"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Cryptography.KeyDerivation"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.Extensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.HeaderPropagation"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Hosting.WindowsServices"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Http.Connections.Client"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Http.Connections.Common"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Identity.UI"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.JsonPatch"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Metadata"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.MiddlewareAnalysis"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Razor.Extensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Testing"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Owin"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Razor.Language"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Client"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Client.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Common"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.Json"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Specification.Tests"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SpaProxy"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.SpaServices.Extensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.TestHost"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Authentication.WebAssembly.Msal"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Azure.Management.ContainerInstance"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Azure.Management.EventGrid"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Azure.Management.StorageSync"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Bcl.AsyncInterfaces"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.CodeAnalysis.NetAnalyzers"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.CodeAnalysis.Razor"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Data.Sqlite"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Data.Sqlite.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Diagnostics.Tracing.EventSource.Redist"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.DotNet.Common.ItemTemplates"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.1.x"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.2.0"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.2.1"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.3.0"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.3.1"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.5.0"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.DotNet.Scaffolding.Shared"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.DotNet.Web.Client.ItemTemplates"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.DotNet.Web.ProjectTemplates.6.0"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.dotnet-openapi"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Analyzers"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Cosmos"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Design"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.InMemory"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Proxies"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Relational"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Relational.Specification.Tests"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Specification.Tests"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.SqlServer"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Tools"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.ApiDescription.Client"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.ApiDescription.Server"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.Memory"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.SqlServer"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.StackExchangeRedis"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Binder"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.CommandLine"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.EnvironmentVariables"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.FileExtensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Ini"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Json"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.KeyPerFile"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.UserSecrets"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Xml"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyInjection"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyInjection.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyInjection.Specification.Tests"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyModel"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Features"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Composite"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Embedded"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Physical"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileSystemGlobbing"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.Systemd"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.WindowsServices"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Http"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Http.Polly"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Identity.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Identity.Stores"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Localization"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Localization.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.AzureAppServices"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Configuration"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Console"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Debug"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.EventLog"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.EventSource"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.TraceSource"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.ObjectPool"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Options"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Options.ConfigurationExtensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Options.DataAnnotations"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Primitives"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Extensions.WebEncoders"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.HPC.SDK"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.7205${3}' `
-replace '(Include="Microsoft.ILVerification"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.IO.Redist"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.JSInterop"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.JSInterop.WebAssembly"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Node.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Node.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Python.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Sdk.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Sdk.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.MonoAOTCompiler.Task"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.MonoTargets.Sdk"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Runtime.WebAssembly.Sdk"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Sdk.IL"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Workload.Emscripten.Manifest-6.0.100"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NET.Workload.Mono.ToolChain.Manifest-6.0.100"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Crossgen2.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Crossgen2.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-musl-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-musl-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.osx-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Ref"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-musl-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-musl-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.android-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.android-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.android-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.android-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.browser-wasm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.ios-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.ios-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.tvos-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.osx-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-arm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.DotNetAppHost"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHost"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHostPolicy"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHostResolver"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.ILAsm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.ILDAsm"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.Platforms"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.NETCore.TestHost"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ServiceBus"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.1304${3}' `
-replace '(Include="Microsoft.TemplateEngine.Abstractions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.Core.Contracts"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.Edge"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.IDE"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.Orchestrator.RunnableProjects"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateEngine.Utils"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.TemplateSearch.Common"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.100${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Core"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Design"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Templating"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Utils"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGenerators.Mvc"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Win32.Registry.AccessControl"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Win32.SystemEvents"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.Windows.Compatibility"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.WindowsAzure.Management.Storage"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.1${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Ref"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-arm64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-x64"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-x86"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="Microsoft.XmlSerializer.Generator"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.CodeDom"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Collections.Immutable"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.ComponentModel.Composition"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.ComponentModel.Composition.Registration"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition.AttributedModel"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition.Convention"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition.Hosting"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition.Runtime"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Composition.TypedParts"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Configuration.ConfigurationManager"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Data.DB2.EntityFramework.Migrations"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Data.Odbc"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Data.OleDb"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Diagnostics.DiagnosticSource"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Diagnostics.EventLog"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Diagnostics.PerformanceCounter"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.DirectoryServices"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.DirectoryServices.AccountManagement"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.DirectoryServices.Protocols"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Drawing.Common"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Formats.Asn1"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Formats.Cbor"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.IO.Hashing"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.IO.Packaging"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.IO.Pipelines"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.IO.Ports"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Management"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Memory.Data"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Net.Http.Json"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Net.Http.WinHttpHandler"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Reflection.Context"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Reflection.Metadata"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Reflection.MetadataLoadContext"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Resources.Extensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Runtime.Caching"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Runtime.CompilerServices.Unsafe"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Runtime.Experimental"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Security.AccessControl"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Security.Cryptography.Pkcs"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Security.Cryptography.ProtectedData"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Security.Cryptography.Xml"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Security.Permissions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.ServiceModel.Syndication"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.ServiceProcess.ServiceController"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Speech"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Text.Encoding.CodePages"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Text.Encodings.Web"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Text.Json"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Threading.AccessControl"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Threading.Channels"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Threading.Tasks.Dataflow"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
-replace '(Include="System.Windows.Extensions"\s+Version=")(5\.[0-9\.]*)(")', '${1}6.0.0${3}' `
} | Set-Content $file.PSPath -Encoding UTF8
}
# The large replace list could be generated with the following code. For some reason
# Find-Package could return different results each time so we makes several request as a
# workaround. This is a bit slow.
# $latestPackages = @()
# 1..10 | ForEach-Object { $latestPackages += Find-Package -Source "nuget.org" -Name Microsoft.* }
# 1..10 | ForEach-Object { $latestPackages += Find-Package -Source "nuget.org" -Name System.* }
# $latestPackages = $latestPackages | Where-Object { $_.Version -Match "^6.0" } | Sort-Object { $_.Name } -Unique
# $latestPackages | `
# ForEach-Object { Write-Output `
# " -replace '(Include=""$($_.Name)""\s+Version="")(5\.[0-9\.]*)("")', '`${1}$($_.Version)`${3}' ``"
# ` } | Set-Clipboard
# This script downgrades all .csproj-files from .NET 6 preview to .NET 5. It updates TargetFramework and
# all Microsoft- and System-packages.
# Put this script in the folder that contains the .csproj-files and then run it. All .csproj-files,
# including in subdirectories, will be converted.
$configFiles = Get-ChildItem . *.csproj -rec
foreach ($file in $configFiles)
{
$content = (Get-Content $file.PSPath)
if(!($content -match "<TargetFramework>net6.0(-[a-zA-Z]*)?</TargetFramework>"))
{
Write-Warning "Skipping $($file.FullName)"
continue;
}
Write-Output "Updating $($file.FullName)"
$content | `
Foreach-Object { $_ `
-replace "<TargetFramework>net6.0</TargetFramework>", "<TargetFramework>net5.0</TargetFramework>" `
-replace '<TargetFramework>net6.0-([a-zA-Z]*)</TargetFramework>', '<TargetFramework>net5.0-${1}</TargetFramework>' `
-replace '(Include="Microsoft.AspNetCore.ApiAuthorization.IdentityServer"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Ref"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-musl-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.linux-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.osx-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.App.Runtime.win-x86"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.AzureAD.UI"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.AzureADB2C.UI"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Certificate"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Facebook"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Google"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.JwtBearer"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Negotiate"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.Twitter"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authentication.WsFederation"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Authorization"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServices.SiteExtension"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.AzureAppServicesIntegration"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Analyzers"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Authorization"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Forms"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.Web"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Components.WebAssembly.Server"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.ConcurrencyLimiter"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Connections.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Cryptography.Internal"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Cryptography.KeyDerivation"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.Extensions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.HeaderPropagation"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Hosting.WindowsServices"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Http.Connections.Client"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Http.Connections.Common"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Http.Features"\s+Version=")(6.0.0-preview.4.21253.5)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Identity.UI"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.JsonPatch"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Metadata"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.MiddlewareAnalysis"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Razor.Extensions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Mvc.Testing"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Owin"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Razor.Language"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Client"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Client.Core"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Common"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.Json"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.Specification.Tests"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.SpaServices.Extensions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.AspNetCore.TestHost"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Authentication.WebAssembly.Msal"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Azure.Management.ContainerInstance"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Azure.Management.StorageSync"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Bcl.AsyncInterfaces"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.CodeAnalysis.NetAnalyzers"\s+Version=")(6.0.0)(")', '${1}5.0.3${3}' `
-replace '(Include="Microsoft.CodeAnalysis.Razor"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Data.Sqlite"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Data.Sqlite.Core"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Diagnostics.Tracing.EventSource.Redist"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.DotNet.Common.ItemTemplates"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.1.x"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.2.0"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.3.1"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.DotNet.Common.ProjectTemplates.5.0"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.DotNet.Web.Client.ItemTemplates"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.DotNet.Web.ItemTemplates"\s+Version=")(6.0.0-preview.7.21378.6)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.dotnet-httprepl"\s+Version=")(6.0.0-preview.21558.3)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.dotnet-openapi"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Analyzers"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Cosmos"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Design"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.InMemory"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Proxies"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Relational"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Relational.Specification.Tests"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Specification.Tests"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite.Core"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.SqlServer"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.EntityFrameworkCore.Tools"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.ApiDescription.Client"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.ApiDescription.Server"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Caching.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.Memory"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Caching.SqlServer"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Caching.StackExchangeRedis"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Configuration"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Binder"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.CommandLine"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.EnvironmentVariables"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.FileExtensions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Ini"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Json"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.KeyPerFile"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.UserSecrets"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Configuration.Xml"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyInjection"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.Extensions.DependencyInjection.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.DependencyModel"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Composite"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Embedded"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.FileProviders.Physical"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.FileSystemGlobbing"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.Systemd"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Hosting.WindowsServices"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Http"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Http.Polly"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Identity.Core"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Identity.Stores"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Localization"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Localization.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Logging"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Abstractions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.AzureAppServices"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Configuration"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Console"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.Debug"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.EventLog"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Logging.EventSource"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.Logging.TraceSource"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.ObjectPool"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.Extensions.Options"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Options.ConfigurationExtensions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Options.DataAnnotations"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Extensions.Primitives"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="Microsoft.Extensions.WebEncoders"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.HPC.SDK"\s+Version=")(6.0.7205)(")', '${1}5.3.6437${3}' `
-replace '(Include="Microsoft.ILVerification"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.IO.Redist"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.JSInterop"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.JSInterop.WebAssembly"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NET.Sdk.IL"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Crossgen2.linux-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Crossgen2.win-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-musl-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-musl-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.linux-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.osx-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Host.win-x86"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Ref"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.browser-wasm"\s+Version=")(6.0.0-preview.3.21201.4)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-musl-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-musl-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.linux-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.osx-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-arm"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.App.Runtime.win-x86"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.DotNetAppHost"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHost"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHostPolicy"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.DotNetHostResolver"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.NETCore.ILAsm"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.NETCore.ILDAsm"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.NETCore.Platforms"\s+Version=")(6.0.0)(")', '${1}5.0.4${3}' `
-replace '(Include="Microsoft.NETCore.Targets"\s+Version=")(6.0.0-preview.4.21253.7)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.NETCore.TestHost"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.TemplateEngine.Abstractions"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.TemplateEngine.Core"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.TemplateEngine.Core.Contracts"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.TemplateEngine.Edge"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.TemplateEngine.Orchestrator.RunnableProjects"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.TemplateEngine.Utils"\s+Version=")(6.0.100)(")', '${1}5.0.403${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Contracts"\s+Version=")(6.0.0-preview.6.21362.1)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Core"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Design"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Templating"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGeneration.Utils"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.VisualStudio.Web.CodeGenerators.Mvc"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.Win32.Registry"\s+Version=")(6.0.0-preview.5.21301.5)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Win32.Registry.AccessControl"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Win32.SystemEvents"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.Windows.Compatibility"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="Microsoft.WindowsAzure.Management.Storage"\s+Version=")(6.0.1)(")', '${1}5.1.1${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Ref"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-arm64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-x64"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.WindowsDesktop.App.Runtime.win-x86"\s+Version=")(6.0.0)(")', '${1}5.0.12${3}' `
-replace '(Include="Microsoft.XmlSerializer.Generator"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.CodeDom"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Collections.Immutable"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.ComponentModel.Annotations"\s+Version=")(6.0.0-preview.4.21253.7)(")', '${1}5.0.0${3}' `
-replace '(Include="System.ComponentModel.Composition"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.ComponentModel.Composition.Registration"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Composition"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Composition.AttributedModel"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Composition.Convention"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Composition.Hosting"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Composition.Runtime"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Composition.TypedParts"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Configuration.ConfigurationManager"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Data.Odbc"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Data.OleDb"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Diagnostics.DiagnosticSource"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Diagnostics.EventLog"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Diagnostics.PerformanceCounter"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.DirectoryServices"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.DirectoryServices.AccountManagement"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.DirectoryServices.Protocols"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Drawing.Common"\s+Version=")(6.0.0)(")', '${1}5.0.3${3}' `
-replace '(Include="System.Formats.Asn1"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Formats.Cbor"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.IO.FileSystem.AccessControl"\s+Version=")(6.0.0-preview.5.21301.5)(")', '${1}5.0.0${3}' `
-replace '(Include="System.IO.Packaging"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.IO.Pipelines"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.IO.Pipes.AccessControl"\s+Version=")(6.0.0-preview.5.21301.5)(")', '${1}5.0.0${3}' `
-replace '(Include="System.IO.Ports"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Management"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Net.Http.Json"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Net.Http.WinHttpHandler"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Net.WebSockets.WebSocketProtocol"\s+Version=")(6.0.0-preview.1.21102.12)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Reflection.Context"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Reflection.Metadata"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Reflection.MetadataLoadContext"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Resources.Extensions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Runtime.Caching"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Runtime.CompilerServices.Unsafe"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.AccessControl"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Cryptography.Cng"\s+Version=")(6.0.0-preview.4.21253.7)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Cryptography.OpenSsl"\s+Version=")(6.0.0-preview.4.21253.7)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Cryptography.Pkcs"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Security.Cryptography.ProtectedData"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Cryptography.Xml"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Permissions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Security.Principal.Windows"\s+Version=")(6.0.0-preview.5.21301.5)(")', '${1}5.0.0${3}' `
-replace '(Include="System.ServiceModel.Syndication"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.ServiceProcess.ServiceController"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Speech"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Text.Encoding.CodePages"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Text.Encodings.Web"\s+Version=")(6.0.0)(")', '${1}5.0.1${3}' `
-replace '(Include="System.Text.Json"\s+Version=")(6.0.0)(")', '${1}5.0.2${3}' `
-replace '(Include="System.Threading.AccessControl"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Threading.Channels"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Threading.Tasks.Dataflow"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
-replace '(Include="System.Windows.Extensions"\s+Version=")(6.0.0)(")', '${1}5.0.0${3}' `
} | Set-Content $file.PSPath -Encoding UTF8
}
# The large replace list could be generated with the following code. For some reason
# Find-Package could return different results each time so we makes several request as a
# workaround. This script will take a lot of time to run.
# $latestPackages = @()
# 1..10 | ForEach-Object { $latestPackages += Find-Package -Source "nuget.org" -AllowPrereleaseVersions -Name Microsoft.* }
# 1..10 | ForEach-Object { $latestPackages += Find-Package -Source "nuget.org" -AllowPrereleaseVersions -Name System.* }
# $latestPackages = $latestPackages | Where-Object { $_.Version -Match "^6.0" } | Sort-Object { $_.Name } -Unique
# $net5packages = @()
# # $latestPackages | Select-Object -First 50 | `
# $latestPackages | `
# ForEach-Object { `
# $net5package = Find-Package -Source "nuget.org" -Name $_.Name -AllVersions -ErrorAction Ignore | Where-Object { $_.Version -Match "^5.*" } | Select-Object -First 1;
# if( $net5package -eq $null ) {
# Write-Output "$($_.Name) has no .NET5 version."
# }
# else {
# Write-Output "$($net5package.Name) $($net5package.Version)"
# $net5packages += $net5package
# }
# ` }
# $net5packageVersions = [ordered]@{}
# $net5packages | Sort-Object { $_.Name } -Unique | ForEach-Object { $net5packageVersions[$_.Name] =$_.Version }
# $latestPackages | `
# Where-Object { $net5packageVersions.Contains($_.Name) } | `
# Sort-Object { $_.Name } -Unique | `
# ForEach-Object { `
# $net5package = $_;
# $net5version = $net5packageVersions[$net5package.Name];
# Write-Output `
# " -replace '(Include=""$($net5package.Name)""\s+Version="")($($net5package.Version))("")', '`${1}$($net5version)`${3}' ``"
# ` } | Set-Clipboard
@pekspro
Copy link
Author

pekspro commented Sep 15, 2021

Updates to RC1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment