From febd2c0729eef9ba0e0f4a44af05d1fdf01c87ba Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Tue, 1 Nov 2022 08:30:36 -0500 Subject: [PATCH 01/19] lazily set the CWD for arguments that need it so that we don't do work at parser-construction time --- src/Cli/dotnet/CommonOptions.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Cli/dotnet/CommonOptions.cs b/src/Cli/dotnet/CommonOptions.cs index ed88ba0041c2..3399acb9a71b 100644 --- a/src/Cli/dotnet/CommonOptions.cs +++ b/src/Cli/dotnet/CommonOptions.cs @@ -94,9 +94,13 @@ public static Option ConfigurationOption(string description) => ArgumentHelpName = CommonLocalizableStrings.VersionSuffixArgumentName }.ForwardAsSingle(o => $"-property:VersionSuffix={o}"); - public static Argument DefaultToCurrentDirectory(this Argument arg) + public static Lazy NormalizedCurrentDirectory = new Lazy(() => PathUtility.EnsureTrailingSlash(Directory.GetCurrentDirectory())); + + public static Argument DefaultToCurrentDirectory(this Argument arg) { - arg.SetDefaultValue(PathUtility.EnsureTrailingSlash(Directory.GetCurrentDirectory())); + // we set this lazily so that we don't pay the overhead of determining the + // CWD multiple times, one for each Argument that uses this. + arg.SetDefaultValueFactory(() => NormalizedCurrentDirectory.Value); return arg; } From 96e9be769e029edcb24a49f8a279f8b950590f3a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 13 Jan 2023 04:37:27 +0000 Subject: [PATCH 02/19] Update dependencies from https://github.com/dotnet/roslyn build 20230112.12 Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset From Version 4.4.0-6.23062.6 -> To Version 4.4.0-6.23062.12 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bf23aaabc047..b707c4ebed58 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -72,34 +72,34 @@ 49c2ef651359526841d13e66129b71d1bcd9cef9 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 - + https://github.com/dotnet/roslyn - 3a0201fcb5dc65553b551b7721762d0c2bf73a12 + 9016ffa65cdfaec92a7e80d8887f023be89d7270 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 446b59c68cae..71f15c1e6857 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -141,13 +141,13 @@ - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 - 4.4.0-6.23062.6 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 + 4.4.0-6.23062.12 $(MicrosoftNetCompilersToolsetPackageVersion) From b8ec9f7bdc68055649706a7d1827d59ca3323f07 Mon Sep 17 00:00:00 2001 From: Tom Deseyn Date: Fri, 13 Jan 2023 18:14:41 +0100 Subject: [PATCH 03/19] Make PublishAot an optional feature because Mono does not support it. (#28674) --- eng/SourceBuild.props | 1 + src/Layout/redist/targets/BundledSdks.targets | 2 +- src/Tasks/Common/Resources/Strings.resx | 6 +++++- src/Tasks/Common/Resources/xlf/Strings.cs.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.de.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.es.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.fr.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.it.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.ja.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.ko.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.pl.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.ru.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.tr.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf | 7 ++++++- src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf | 7 ++++++- .../targets/Microsoft.NET.Publish.targets | 2 ++ .../targets/Microsoft.NET.Sdk.props | 4 +++- .../targets/Microsoft.NET.Sdk.targets | 2 +- 19 files changed, 91 insertions(+), 17 deletions(-) diff --git a/eng/SourceBuild.props b/eng/SourceBuild.props index 61b9a9137083..2107a7184193 100644 --- a/eng/SourceBuild.props +++ b/eng/SourceBuild.props @@ -8,6 +8,7 @@ $(InnerBuildArgs) /p:Projects="$(InnerSourceBuildRepoRoot)\source-build.slnf" $(InnerBuildArgs) /p:UseSharedCompilation=false + $(InnerBuildArgs) /p:NativeAotSupported=false diff --git a/src/Layout/redist/targets/BundledSdks.targets b/src/Layout/redist/targets/BundledSdks.targets index 6f8b0fc3b333..64638ef1cff0 100644 --- a/src/Layout/redist/targets/BundledSdks.targets +++ b/src/Layout/redist/targets/BundledSdks.targets @@ -5,6 +5,6 @@ - + diff --git a/src/Tasks/Common/Resources/Strings.resx b/src/Tasks/Common/Resources/Strings.resx index 1b1faf9abff2..fab97f444fd6 100644 --- a/src/Tasks/Common/Resources/Strings.resx +++ b/src/Tasks/Common/Resources/Strings.resx @@ -836,7 +836,7 @@ You may need to build the project on another operating system or architecture, o {StrBegin="NETSDK1182: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. {StrBegin="NETSDK1183: "} @@ -875,4 +875,8 @@ You may need to build the project on another operating system or architecture, o NETSDK1192: Targeting .NET 7.0 or higher in Visual Studio 2022 17.3 is not supported. {StrBegin="NETSDK1192: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + diff --git a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf index 9cae172df051..e2076da7e1a7 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Sestavení nelze optimalizovat pro kompilaci s předstihem: nebyl nalezen platný balíček modulu runtime. Buď nastavte vlastnost PublishAot na hodnotu false, nebo při publikování použijte podporovaný identifikátor modulu runtime. Při cílení na .NET 7 nebo vyšší nezapomeňte obnovit balíčky s vlastností PublishAot nastavenou na hodnotu true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: Konfigurační soubor aplikace musí obsahovat kořenový element konfigurace. diff --git a/src/Tasks/Common/Resources/xlf/Strings.de.xlf b/src/Tasks/Common/Resources/xlf/Strings.de.xlf index 3c5fbc3f09fb..e8c5de6c46c7 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.de.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.de.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Assemblys können nicht für Ahead-of-time-Kompilierung optimiert werden: Es wurde kein gültiges Runtimepaket gefunden. Legen Sie entweder die PublishAot-Eigenschaft auf FALSE fest, oder verwenden Sie beim Veröffentlichen einen unterstützten Runtimebezeichner. Wenn Sie .NET 7 oder höher verwenden, stellen Sie sicher, dass Sie Pakete wiederherstellen, bei denen die PublishAot-Eigenschaft auf TRUE festgelegt ist. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: Die Anwendungskonfigurationsdatei muss das Stammkonfigurationselement enthalten. diff --git a/src/Tasks/Common/Resources/xlf/Strings.es.xlf b/src/Tasks/Common/Resources/xlf/Strings.es.xlf index 6121f4020392..aa6c314e1b76 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.es.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.es.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: No se pueden optimizar los ensamblados para la compilación Ahead of time: no se ha encontrado un paquete en tiempo de ejecución válido. Establezca la propiedad PublishAot en false o use un identificador de tiempo de ejecución compatible al publicar. Cuando el destino sea .NET 7 o una versión posterior, asegúrese de restaurar los paquetes con la propiedad PublishAot establecida en true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: El archivo de configuración de la aplicación debe tener el elemento de configuración raíz. diff --git a/src/Tasks/Common/Resources/xlf/Strings.fr.xlf b/src/Tasks/Common/Resources/xlf/Strings.fr.xlf index c8011a2ef6e4..147c4ca50287 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.fr.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.fr.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Impossible d'optimiser les assemblys pour la compilation Ahead of time : un package d'exécution valide n'a pas été trouvé. Définissez la propriété PublishAot sur false ou utilisez un identificateur d'exécution pris en charge lors de la publication. Lorsque vous ciblez .NET 7 ou supérieur, assurez-vous de restaurer les packages avec la propriété PublishAot définie sur true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: Le fichier de configuration de l'application doit avoir un élément de configuration racine. diff --git a/src/Tasks/Common/Resources/xlf/Strings.it.xlf b/src/Tasks/Common/Resources/xlf/Strings.it.xlf index 2109529788d9..48849e34a63d 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.it.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.it.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: non è possibile ottimizzare gli assembly per la compilazione Ahead Of Time perché non è stato trovato alcun pacchetto di runtime valido. Impostare la proprietà PublishAot su false oppure usare un identificatore di runtime supportato durante la pubblicazione. Quando si usa .NET 7 o versioni successive, assicurarsi di ripristinare i pacchetti con la proprietà PublishAot impostata su true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: il file di configurazione dell'applicazione deve avere un elemento di configurazione radice. diff --git a/src/Tasks/Common/Resources/xlf/Strings.ja.xlf b/src/Tasks/Common/Resources/xlf/Strings.ja.xlf index 72200fa0a601..302c4f35d35f 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ja.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ja.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Ahead Of Time コンパイル用にアセンブリを最適化できません: 有効なランタイム パッケージが見つかりませんでした。PublishAot プロパティを false に設定するか、公開時に、サポートされているランタイム識別子を使用してください。.NET 7 以降を対象とする場合は、必ず PublishAot プロパティを true に設定してパッケージを復元してください。 {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: アプリケーション構成ファイルには、ルート構成要素が必要です。 diff --git a/src/Tasks/Common/Resources/xlf/Strings.ko.xlf b/src/Tasks/Common/Resources/xlf/Strings.ko.xlf index ca2c91d5c3a1..3d4632d0e935 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ko.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ko.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Ahead of Time 컴파일을 위해 어셈블리를 최적화할 수 없습니다. 유효한 런타임 패키지를 찾을 수 없습니다. PublishAot 속성을 false로 설정하거나 게시할 때 지원되는 런타임 식별자를 사용하세요. .NET 7 이상을 대상으로 하는 경우 PublishAot 속성이 true로 설정된 패키지를 복원해야 합니다. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: 애플리케이션 구성 파일에는 루트 구성 요소가 있어야 합니다. diff --git a/src/Tasks/Common/Resources/xlf/Strings.pl.xlf b/src/Tasks/Common/Resources/xlf/Strings.pl.xlf index 8449f28055dc..c0ddea4304ba 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.pl.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.pl.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Nie można zoptymalizować zestawów pod kątem kompilacji z wyprzedzeniem: nie znaleziono prawidłowego pakietu środowiska uruchomieniowego. Ustaw właściwość PublishAot na wartość false lub użyj obsługiwanego identyfikatora środowiska uruchomieniowego podczas publikowania. W przypadku określania wartości docelowej platformy .NET 7 lub nowszej należy przywrócić pakiety z właściwością PublishAot ustawioną na wartość true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: Plik konfiguracji aplikacji musi mieć główny element konfiguracji. diff --git a/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf b/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf index 8964e711b1ff..384b62261a78 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Não é possível otimizar assemblies para compilação antecipada: um pacote de tempo de execução válido não foi encontrado. Defina a propriedade PublishAot como false ou use um identificador de tempo de execução com suporte ao publicar. Ao direcionar o .NET 7 ou superior, certifique-se de restaurar os pacotes com a propriedade PublishAot definida como true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: o arquivo de configuração do aplicativo deve ter um elemento de configuração raiz. diff --git a/src/Tasks/Common/Resources/xlf/Strings.ru.xlf b/src/Tasks/Common/Resources/xlf/Strings.ru.xlf index 9fb52753f7b8..9e69a17e16d4 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ru.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ru.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: не удалось оптимизировать сборки для компиляции Ahead Of Time: не найден допустимый пакет среды выполнения. Задайте для свойства PublishAot значение false либо используйте поддерживаемый идентификатор среды выполнения при публикации. При выборе .NET 7 или более поздней версии в качестве цели восстановите пакеты со свойством PublishAot со значением true. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: В файле конфигурации приложения должен присутствовать корневой элемент конфигурации. diff --git a/src/Tasks/Common/Resources/xlf/Strings.tr.xlf b/src/Tasks/Common/Resources/xlf/Strings.tr.xlf index 736c5276b280..2aa3d2686c5c 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.tr.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.tr.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: Derlemeler, AOT derlemesi için iyileştirilemedi: geçerli bir çalışma zamanı paketi bulunamadı. PublishAot özelliğini false olarak ayarlayın veya yayımlarken desteklenen bir çalışma zamanı tanımlayıcısı kullanın. .NET 7 veya üzerini hedeflerken PublishAot özelliği true olarak ayarlanmış paketleri geri yüklediğinizden emin olun. {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: Uygulama yapılandırma dosyasının kök yapılandırma öğesi olmalıdır. diff --git a/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf b/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf index b245ebe4ad9f..4ea9fd027eb1 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: 无法优化程序集以实现提前编译: 找不到有效的运行时包。将 PublishAot 属性设置为 false,或在发布时使用支持的运行时标识符。面向 .NET 7 或更高版本时,请确保还原将 PublishAot 属性设置为 true 的包。 {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: 应用程序配置文件必须具有根配置元素。 diff --git a/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf b/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf index 9568f87fd669..4f717f70fbc5 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf @@ -8,10 +8,15 @@ {StrBegin="NETSDK1076: "} - NETSDK1183: Unable to optimize assemblies for Ahead of time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. NETSDK1183: 無法為提前編譯最佳化組件: 找不到有效的執行階段套件。請將 PublishAot 屬性設為 false,或在發佈時使用支援的執行階段識別碼。以 .NET 7 或更高版本為目標時,請務必還原套件,將 PublishAot 屬性設為 true。 {StrBegin="NETSDK1183: "} + + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1193: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + {StrBegin="NETSDK1193: "} + NETSDK1070: The application configuration file must have root configuration element. NETSDK1070: 應用程式組態檔必須有根組態元素。 diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets index 09f458a7909b..4f0b72b93479 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets @@ -111,6 +111,8 @@ Copyright (c) .NET Foundation. All rights reserved. '$(EnableCompressionInSingleFile)' == 'true' And '$(SelfContained)' != 'true'" ResourceName="CompressionInSingleFileRequiresSelfContained" /> + true true + false + true @@ -151,7 +153,7 @@ Copyright (c) .NET Foundation. All rights reserved. - + diff --git a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets index 1c3ba05e59c4..1d9fbc1e973b 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets +++ b/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets @@ -1181,7 +1181,7 @@ Copyright (c) .NET Foundation. All rights reserved. - + From 46b72c15b321560e04440034ef23b0c828b15959 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Thu, 12 Jan 2023 15:20:16 -0800 Subject: [PATCH 04/19] This call is failing on the Darwin leg in installer. (#29916) --- .../GivenThatWeWantToPublishAHelloWorldProject.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs index a7c76ba87922..09c1a2625cc2 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs +++ b/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs @@ -69,16 +69,10 @@ public void It_publishes_portable_apps_to_the_publish_folder_and_the_app_should_ } [Theory] - [InlineData("netcoreapp1.1")] [InlineData("netcoreapp2.0")] [InlineData(ToolsetInfo.CurrentTargetFramework)] public void It_publishes_self_contained_apps_to_the_publish_folder_and_the_app_should_run(string targetFramework) { - if (!EnvironmentInfo.SupportsTargetFramework(targetFramework)) - { - return; - } - var rid = EnvironmentInfo.GetCompatibleRid(targetFramework); var helloWorldAsset = _testAssetsManager From 574ebcacb0a071fb062f686f5bf815a125f1e30d Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 13 Jan 2023 15:40:21 -0800 Subject: [PATCH 05/19] Update to stable rtm branding --- eng/Versions.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 017ab0abb460..a4139bdcc027 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,11 +12,11 @@ 7.0.200 - preview + rtm - false + true release From 1ed17cede65624bd3e1446f3c28c3e4a31887d88 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 13 Jan 2023 15:40:34 -0800 Subject: [PATCH 06/19] Update loc build for 7.0.3xx --- eng/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/build.yml b/eng/build.yml index f2374a6f2439..348af4945e9b 100644 --- a/eng/build.yml +++ b/eng/build.yml @@ -15,13 +15,13 @@ parameters: timeoutInMinutes: 180 jobs: -- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.SourceBranch'], 'refs/heads/release/7.0.2xx'), not(contains(parameters.agentOs, 'TemplateEngine'))) }}: +- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.SourceBranch'], 'refs/heads/release/7.0.3xx'), not(contains(parameters.agentOs, 'TemplateEngine'))) }}: - template: /eng/common/templates/job/onelocbuild.yml parameters: CreatePr: true LclSource: lclFilesfromPackage LclPackageId: 'LCL-JUNO-PROD-DOTNETSDK' - MirrorBranch: release/7.0.2xx + MirrorBranch: release/7.0.3xx MirrorRepo: sdk - ${{ if not(contains(parameters.agentOs, 'TemplateEngine')) }}: From 610172469118ecd0934bb23f0ea12a68c5a44b2f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 14 Jan 2023 03:45:59 +0000 Subject: [PATCH 07/19] Update dependencies from https://github.com/dotnet/roslyn build 20230113.12 Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset From Version 4.4.0-6.23062.12 -> To Version 4.4.0-6.23063.12 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b707c4ebed58..aba53b6c24ce 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -72,34 +72,34 @@ 49c2ef651359526841d13e66129b71d1bcd9cef9 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 - + https://github.com/dotnet/roslyn - 9016ffa65cdfaec92a7e80d8887f023be89d7270 + da2ab184d2f9e12f85284039a4f442ca0b499de0 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index 71f15c1e6857..ae9d2bdef0d0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -141,13 +141,13 @@ - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 - 4.4.0-6.23062.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 + 4.4.0-6.23063.12 $(MicrosoftNetCompilersToolsetPackageVersion) From 05b72eb996e6327f4df07dc51f19f41c086ace86 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 18 Jan 2023 03:22:19 +0000 Subject: [PATCH 08/19] Update dependencies from https://github.com/dotnet/roslyn build 20230117.11 Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset From Version 4.4.0-6.23063.12 -> To Version 4.4.0-6.23067.11 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index aba53b6c24ce..a5936b9a2fe0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -72,34 +72,34 @@ 49c2ef651359526841d13e66129b71d1bcd9cef9 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 - + https://github.com/dotnet/roslyn - da2ab184d2f9e12f85284039a4f442ca0b499de0 + 25b17d713aefb7754f5edbf786197d1fe737b933 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index ae9d2bdef0d0..248ffe8ee25f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -141,13 +141,13 @@ - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 - 4.4.0-6.23063.12 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 + 4.4.0-6.23067.11 $(MicrosoftNetCompilersToolsetPackageVersion) From dbdf8c66b8ebd38c098cb7c485d4d0c07342e7a0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 18 Jan 2023 14:02:50 +0000 Subject: [PATCH 09/19] Update dependencies from https://github.com/microsoft/vstest build 20230118-01 Microsoft.NET.Test.Sdk From Version 17.6.0-preview-20230117-02 -> To Version 17.6.0-preview-20230118-01 --- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fa900ce8402c..8f38d609e1d0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -109,9 +109,9 @@ https://github.com/nuget/nuget.client 743503cb3c7e9ced2602ee2e29c38d63cc339451 - + https://github.com/microsoft/vstest - 5e9c3debd9d0007c53e7510ac030ea5e8fc483f4 + dc34cb54b40b479a23e1e8518dc131d39e6e9f85 https://github.com/dotnet/linker diff --git a/eng/Versions.props b/eng/Versions.props index f10d9b003de3..318704758144 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -80,7 +80,7 @@ - 17.6.0-preview-20230117-02 + 17.6.0-preview-20230118-01 $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftNETTestSdkPackageVersion) From 652c4a7f73d0fbccda2342cfd82780cfe3b14719 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Wed, 18 Jan 2023 13:06:13 -0800 Subject: [PATCH 10/19] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2091640 --- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.de.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.de.json index 1d94f4115a41..f6990afec0e2 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Klasse", - "description": "Creates a new Visual Basic class" + "description": "Erstellt eine neue Visual Basic-Klasse" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.tr.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.tr.json index 654cc831fd03..8e7222d07fe2 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Class-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Sınıf", - "description": "Creates a new Visual Basic class" + "description": "Yeni bir Visual Basic sınıfı oluşturur" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.de.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.de.json index 210a6b6fa19b..d9c833305f90 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Enumeration", - "description": "Creates a new Visual Basic enum" + "description": "Erstellt eine neue Visual Basic-Enumeration" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.tr.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.tr.json index df9f6ffaff17..a2bd6b8ee61e 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Enum-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Sabit listesi", - "description": "Creates a new Visual Basic enum" + "description": "Yeni bir Visual Basic sabit listesi oluşturur" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.de.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.de.json index c6bd4197a1aa..bc3da8cdc959 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Schnittstelle", - "description": "Creates a new Visual Basic interface" + "description": "Erstellt eine neue Visual Basic-Schnittstelle" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.tr.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.tr.json index ccfbbd97bfff..33f886b89e3c 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Interface-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Arabirim", - "description": "Creates a new Visual Basic interface" + "description": "Yeni bir Visual Basic arabirimi oluşturur" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.de.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.de.json index 8d43adf0cf6f..caf92c45341a 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Struktur", - "description": "Creates a new Visual Basic structure" + "description": "Erstellt eine neue Visual Basic-Struktur" } \ No newline at end of file diff --git a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.tr.json b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.tr.json index 4325c2c64037..c5c3e6914da2 100644 --- a/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/template_feed/Microsoft.DotNet.Common.ItemTemplates/content/Struct-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,5 +1,5 @@ { "author": "Microsoft", "name": "Yapı", - "description": "Creates a new Visual Basic structure" + "description": "Yeni bir Visual Basic yapısı oluşturur" } \ No newline at end of file From 93d6871e49ce49b640b5d04f97573e417614dc82 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Wed, 18 Jan 2023 13:25:01 -0800 Subject: [PATCH 11/19] Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2091640 --- src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf | 2 +- src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.cs.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.de.xlf | 4 ++-- src/Tasks/Common/Resources/xlf/Strings.es.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.fr.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.it.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.ja.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.ko.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.pl.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf | 4 ++-- src/Tasks/Common/Resources/xlf/Strings.ru.xlf | 4 ++-- src/Tasks/Common/Resources/xlf/Strings.tr.xlf | 2 +- src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf | 4 ++-- src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf | 2 +- 15 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf index 133355f23bbc..39492ea92dec 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.de.xlf @@ -34,7 +34,7 @@ The solution file '{0}' is missing EndProject tags or has invalid child-parent project folder mappings around project GUID: '{1}'. Manually repair the solution or try to open and save it in Visual Studio." - The solution file '{0}' is missing EndProject tags or has invalid child-parent project folder mappings around project GUID: '{1}'. Manually repair the solution or try to open and save it in Visual Studio." + In der Projektmappendatei „{0}“ fehlen EndProject-Tags, oder es sind ungültige Zuordnungen des untergeordneten übergeordneten Projektordners um die Projekt-GUID vorhanden: „{1}“. Reparieren Sie die Projektmappe manuell, oder versuchen Sie, sie zu öffnen und in Visual Studio zu speichern. diff --git a/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf b/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf index 29aff2576a53..17547855e26d 100644 --- a/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf +++ b/src/Cli/dotnet/xlf/CommonLocalizableStrings.tr.xlf @@ -34,7 +34,7 @@ The solution file '{0}' is missing EndProject tags or has invalid child-parent project folder mappings around project GUID: '{1}'. Manually repair the solution or try to open and save it in Visual Studio." - The solution file '{0}' is missing EndProject tags or has invalid child-parent project folder mappings around project GUID: '{1}'. Manually repair the solution or try to open and save it in Visual Studio." + '{0}' çözüm dosyasında EndProject etiketleri eksik veya proje GUID'i etrafında geçersiz alt-üst proje klasörü eşlemeleri var: '{1}'. Çözümü manuel olarak onarın veya Visual Studio'da açıp kaydetmeyi deneyin." diff --git a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf index eed3ced6308f..eddfc9342b3c 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: Sada SDK nepodporuje kompilaci s předstihem. Nastavte vlastnost PublishAot na false. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.de.xlf b/src/Tasks/Common/Resources/xlf/Strings.de.xlf index ccb45468f267..de5ea51d2090 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.de.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.de.xlf @@ -9,12 +9,12 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: Assemblys können nicht für Ahead-of-time-Kompilierung optimiert werden: Es wurde kein gültiges Runtimepaket gefunden. Legen Sie entweder die PublishAot-Eigenschaft auf FALSE fest, oder verwenden Sie beim Veröffentlichen einen unterstützten Runtimebezeichner. Wenn Sie .NET 7 oder höher verwenden, stellen Sie sicher, dass Sie Pakete wiederherstellen, bei denen die PublishAot-Eigenschaft auf TRUE festgelegt ist. + NETSDK1183: Assemblys für die Vorabkompilierung können nicht optimiert werden: Es wurde kein gültiges Laufzeitpaket gefunden. Legen Sie entweder die PublishAot-Eigenschaft auf FALSE fest, oder verwenden Sie bei der Veröffentlichung einen unterstützten Laufzeitbezeichner. Stellen Sie beim Festlegen von .NET 7 oder höher sicher, dass Pakete wiederhergestellt werden, bei denen die PublishAot-Eigenschaft auf TRUE festgelegt ist. {StrBegin="NETSDK1183: "} NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: Das SDK unterstützt keine Vorabkompilierung. Legen Sie die PublishAot-Eigenschaft auf FALSE fest. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.es.xlf b/src/Tasks/Common/Resources/xlf/Strings.es.xlf index 9670840f185e..d6c0924449f0 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.es.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.es.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: El SDK no admite la compilación por adelantado. Establezca la propiedad PublishAot en false. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.fr.xlf b/src/Tasks/Common/Resources/xlf/Strings.fr.xlf index 1a12c2bc25fc..c600e95762d9 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.fr.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.fr.xlf @@ -9,7 +9,7 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: Impossible d'optimiser les assemblys pour la compilation Ahead of time : un package d'exécution valide n'a pas été trouvé. Définissez la propriété PublishAot sur false ou utilisez un identificateur d'exécution pris en charge lors de la publication. Lorsque vous ciblez .NET 7 ou supérieur, assurez-vous de restaurer les packages avec la propriété PublishAot définie sur true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. {StrBegin="NETSDK1183: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.it.xlf b/src/Tasks/Common/Resources/xlf/Strings.it.xlf index 98d3f68236eb..d5fbc07954d0 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.it.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.it.xlf @@ -9,7 +9,7 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: non è possibile ottimizzare gli assembly per la compilazione Ahead Of Time perché non è stato trovato alcun pacchetto di runtime valido. Impostare la proprietà PublishAot su false oppure usare un identificatore di runtime supportato durante la pubblicazione. Quando si usa .NET 7 o versioni successive, assicurarsi di ripristinare i pacchetti con la proprietà PublishAot impostata su true. + NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. {StrBegin="NETSDK1183: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.ja.xlf b/src/Tasks/Common/Resources/xlf/Strings.ja.xlf index 49cd29062c89..5c8622640d60 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ja.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ja.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: SDK は Ahead Of Time コンパイルをサポートしていません。PublishAot プロパティを false に設定してください。 {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.ko.xlf b/src/Tasks/Common/Resources/xlf/Strings.ko.xlf index d18395f98964..701173d180c1 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ko.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ko.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: SDK는 Ahead of Time 컴파일을 지원하지 않습니다. PublishAot 속성을 false로 설정합니다. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.pl.xlf b/src/Tasks/Common/Resources/xlf/Strings.pl.xlf index 71b2b7a6f80b..3098e56741b3 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.pl.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.pl.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: Zestaw SDK nie obsługuje kompilacji z wyprzedzeniem. Ustaw właściwość PublishAot na wartość false. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf b/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf index 8a060261cd92..3d4f2a6b02f2 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.pt-BR.xlf @@ -9,12 +9,12 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: Não é possível otimizar assemblies para compilação antecipada: um pacote de tempo de execução válido não foi encontrado. Defina a propriedade PublishAot como false ou use um identificador de tempo de execução com suporte ao publicar. Ao direcionar o .NET 7 ou superior, certifique-se de restaurar os pacotes com a propriedade PublishAot definida como true. + NETSDK1183: Não é possível otimizar assemblies para compilação antecipada: um pacote de tempo de execução válido não foi encontrado. Defina a propriedade PublishAot como false ou use um identificador de tempo de execução compatível ao publicar. Ao direcionar o .NET 7 ou superior, certifique-se de restaurar os pacotes com a propriedade PublishAot definida como verdadeiro. {StrBegin="NETSDK1183: "} NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: o SDK não oferece suporte à compilação antecipada. Defina a propriedade PublishAot como false. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.ru.xlf b/src/Tasks/Common/Resources/xlf/Strings.ru.xlf index 510dfe70fb80..761a11d24dab 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.ru.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.ru.xlf @@ -9,12 +9,12 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: не удалось оптимизировать сборки для компиляции Ahead Of Time: не найден допустимый пакет среды выполнения. Задайте для свойства PublishAot значение false либо используйте поддерживаемый идентификатор среды выполнения при публикации. При выборе .NET 7 или более поздней версии в качестве цели восстановите пакеты со свойством PublishAot со значением true. + NETSDK1183: невозможно оптимизировать сборки для АОТ-компиляции: не найден допустимый пакет среды выполнения. Задайте для свойства PublishAot значение ЛОЖЬ или используйте поддерживаемый идентификатор среды выполнения при публикации. При нацеливании на .NET 7 или более позднюю версию обязательно восстанавливайте пакеты со свойством PublishAot, для которого задано значение ИСТИНА. {StrBegin="NETSDK1183: "} NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: пакет SDK не поддерживает АОТ-компиляцию. Задайте для свойства PublishAot значение ЛОЖЬ. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.tr.xlf b/src/Tasks/Common/Resources/xlf/Strings.tr.xlf index 17e48d21f18f..2fba34cdef31 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.tr.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.tr.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: SDK önceden derlemeyi desteklemez. PublishAot özelliğini false olarak ayarlayın. {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf b/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf index e07a2fd101a0..29d5a834989a 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.zh-Hans.xlf @@ -9,12 +9,12 @@ NETSDK1183: Unable to optimize assemblies for ahead-of-time compilation: a valid runtime package was not found. Either set the PublishAot property to false, or use a supported runtime identifier when publishing. When targeting .NET 7 or higher, make sure to restore packages with the PublishAot property set to true. - NETSDK1183: 无法优化程序集以实现提前编译: 找不到有效的运行时包。将 PublishAot 属性设置为 false,或在发布时使用支持的运行时标识符。面向 .NET 7 或更高版本时,请确保还原将 PublishAot 属性设置为 true 的包。 + NETSDK1183: 无法优化程序集以实现提前编译: 找不到有效的运行时包。请将 PublishAot 属性设置为 false,或在发布时使用支持的运行时标识符。如果面向 .NET 7 或更高版本,请确保还原将 PublishAot 属性设置为 true 的包。 {StrBegin="NETSDK1183: "} NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: SDK 不支持提前编译。请将 PublishAot 属性设置为 false。 {StrBegin="NETSDK1195: "} diff --git a/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf b/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf index 5bc8b442b5ac..ce2302a2127e 100644 --- a/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf +++ b/src/Tasks/Common/Resources/xlf/Strings.zh-Hant.xlf @@ -14,7 +14,7 @@ NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. - NETSDK1195: The SDK does not support ahead-of-time compilation. Set the PublishAot property to false. + NETSDK1195: SDK 不支援提前編譯。請將 PublishAot 屬性設定為 false。 {StrBegin="NETSDK1195: "} From 94397a4bccd8f38b6ad23cc51db991fec25f8b7b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Jan 2023 22:13:20 +0000 Subject: [PATCH 12/19] [release/7.0.3xx] Update dependencies from dotnet/linker (#30004) [release/7.0.3xx] Update dependencies from dotnet/linker --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fa900ce8402c..c4dda3dc59b9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -113,9 +113,9 @@ https://github.com/microsoft/vstest 5e9c3debd9d0007c53e7510ac030ea5e8fc483f4 - + https://github.com/dotnet/linker - 19fa656d35252ccf926e6a6d783b16a2f094aaef + de8bf14fcdfb55f2bae3db8cfc310ddd8ee921e6 @@ -123,9 +123,9 @@ d099f075e45d2aa6007a22b71b45a08758559f80 - + https://github.com/dotnet/linker - 19fa656d35252ccf926e6a6d783b16a2f094aaef + de8bf14fcdfb55f2bae3db8cfc310ddd8ee921e6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f10d9b003de3..2b50744acee2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -86,7 +86,7 @@ - 7.0.100-1.23062.2 + 7.0.100-1.23068.1 $(MicrosoftNETILLinkTasksPackageVersion) From df8def598ac7d959d6db2fb3691e9b621cc963fe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 18 Jan 2023 22:15:50 +0000 Subject: [PATCH 13/19] Update dependencies from https://github.com/dotnet/msbuild build 20230118.6 Microsoft.Build , Microsoft.Build.Localization From Version 17.6.0-preview-23068-05 -> To Version 17.6.0-preview-23068-06 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c4dda3dc59b9..3d4065293c72 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -46,13 +46,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime d099f075e45d2aa6007a22b71b45a08758559f80 - + https://github.com/dotnet/msbuild - 98924b86bbc19aff3360f9cc3a2922df6a5c5d6a + a35cf3e51119ec6e8b8f97ab3284519844a42a51 - + https://github.com/dotnet/msbuild - 98924b86bbc19aff3360f9cc3a2922df6a5c5d6a + a35cf3e51119ec6e8b8f97ab3284519844a42a51 https://github.com/dotnet/fsharp diff --git a/eng/Versions.props b/eng/Versions.props index 2b50744acee2..68c786037051 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -106,7 +106,7 @@ - 17.6.0-preview-23068-05 + 17.6.0-preview-23068-06 $(MicrosoftBuildPackageVersion) - 17.6.0-preview-23068-06 + 17.6.0-preview-23069-03 $(MicrosoftBuildPackageVersion) - 17.6.0-preview-23069-03 + 17.6.0-preview-23070-01 $(MicrosoftBuildPackageVersion) - 17.6.0-preview-23070-01 + 17.6.0-preview-23070-04 $(MicrosoftBuildPackageVersion) - 17.6.0-preview-23070-04 + 17.6.0-preview-23070-03 $(MicrosoftBuildPackageVersion) - 17.6.0-preview-20230118-01 + 17.6.0-preview-20230120-03 $(MicrosoftNETTestSdkPackageVersion) $(MicrosoftNETTestSdkPackageVersion)