From 57d8fd8b3a0ed358c86dfc8d9a7443dba0a1f719 Mon Sep 17 00:00:00 2001 From: vishalmsft Date: Tue, 25 May 2021 15:13:02 +0530 Subject: [PATCH 0001/1033] Adding target file, that can be imported inside the csproj. This will make it easy to use the locally built wpf assemblies. --- Documentation/developer-guide.md | 18 ++++++++++++++++++ eng/wpf-debug.targets | 23 +++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 eng/wpf-debug.targets diff --git a/Documentation/developer-guide.md b/Documentation/developer-guide.md index 44d1e35c2..98a6ef579 100644 --- a/Documentation/developer-guide.md +++ b/Documentation/developer-guide.md @@ -47,6 +47,24 @@ If there were any failures, you can cd into $(RepoRoot)\artifacts\test\$(Configu *NOTE: This requires being run from an admin window at the moment. Removing this restriction is tracked by https://github.com/dotnet/wpf/issues/816.* +### Debugging locally build WPF assemblies with WPF Application +This section is intended to simplify the steps needed to be able to debug the locally built WPF Assemblies, with any sample app. +Configure the project to build x86 or x64, as per the platform architecture you have selected while performing the build for WPF assemblies. +Go to the csproj file and append this line at the bottom of it. ``. The resultant csproj will look like this: +```xml + + WinExe + net6.0-windows + true + + + + C:\wpf + + +``` + + ### Testing Locally built WPF assemblies (excluding PresentationBuildTasks) This section of guide is intended to discuss the different approaches for ad-hoc testing of WPF assemblies, and not automated testing. For automated testing, see the [Running DRTs locally](#Running-DRTs-locally) section above. There are a few different ways this can be done, and for the most part, it depends on what you are trying to accomplish. This section tries to lay out which scenarios require which workflow. diff --git a/eng/wpf-debug.targets b/eng/wpf-debug.targets new file mode 100644 index 000000000..51c130aeb --- /dev/null +++ b/eng/wpf-debug.targets @@ -0,0 +1,23 @@ + + + + + + Debug + win-$(PlatformTarget) + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)\..\'))\artifacts\packaging\$(WpfConfig)\Microsoft.DotNet.Wpf.GitHub.$(WpfConfig) + + + + + + + From 3d2e69325b7ccc0eae40daa93293e17b65264d60 Mon Sep 17 00:00:00 2001 From: vishalmsft Date: Tue, 25 May 2021 15:25:44 +0530 Subject: [PATCH 0002/1033] The assemblies are locally built. --- Documentation/developer-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/developer-guide.md b/Documentation/developer-guide.md index 98a6ef579..d640df002 100644 --- a/Documentation/developer-guide.md +++ b/Documentation/developer-guide.md @@ -47,7 +47,7 @@ If there were any failures, you can cd into $(RepoRoot)\artifacts\test\$(Configu *NOTE: This requires being run from an admin window at the moment. Removing this restriction is tracked by https://github.com/dotnet/wpf/issues/816.* -### Debugging locally build WPF assemblies with WPF Application +### Debugging locally built WPF assemblies with WPF Application This section is intended to simplify the steps needed to be able to debug the locally built WPF Assemblies, with any sample app. Configure the project to build x86 or x64, as per the platform architecture you have selected while performing the build for WPF assemblies. Go to the csproj file and append this line at the bottom of it. ``. The resultant csproj will look like this: From dfaaad853a565149ca33c480cab73799c46acee5 Mon Sep 17 00:00:00 2001 From: Vishal Sharma <83055644+vishalmsft@users.noreply.github.com> Date: Mon, 31 May 2021 10:49:50 +0530 Subject: [PATCH 0003/1033] Update eng/wpf-debug.targets Set WpfConfig, only if consuming project haven't set it. Co-authored-by: ThomasGoulet73 <51839772+ThomasGoulet73@users.noreply.github.com> --- eng/wpf-debug.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/wpf-debug.targets b/eng/wpf-debug.targets index 51c130aeb..39c9d4592 100644 --- a/eng/wpf-debug.targets +++ b/eng/wpf-debug.targets @@ -11,7 +11,7 @@ --> - Debug + Debug win-$(PlatformTarget) $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)\..\'))\artifacts\packaging\$(WpfConfig)\Microsoft.DotNet.Wpf.GitHub.$(WpfConfig) From 3c5a472ebd18b828d8d51d974d167b5b5604e60f Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Thu, 24 Jun 2021 18:47:14 -0400 Subject: [PATCH 0004/1033] Update Microsoft.CodeAnalysis.FxCopAnalyzers to 3.3.2. Remove Microsoft.CodeAnalysis.Common to avoid dependency conflicts. --- eng/WpfArcadeSdk/tools/CodeAnalysis.targets | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis.targets b/eng/WpfArcadeSdk/tools/CodeAnalysis.targets index 17ff34f4b..dcd84e745 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis.targets +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis.targets @@ -6,8 +6,7 @@ - - + From 24c1731a5b4909d8a5a9c9134ee907039461ab64 Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Thu, 24 Jun 2021 18:55:24 -0400 Subject: [PATCH 0005/1033] Disable rules to have a clean build --- .../tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index 4b42f3909..8cfdf4725 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -19,4 +19,11 @@ + + + + + + + \ No newline at end of file From d7e7b9067c891c49091ded2d2e1b352a39862895 Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Sat, 26 Jun 2021 17:15:33 -0400 Subject: [PATCH 0006/1033] Enable CA1310 --- eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 1 - .../Shared/MS/Internal/Xaml/Parser/SpecialBracketCharacters.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index 8cfdf4725..8f71f5b5a 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -21,7 +21,6 @@ - diff --git a/src/Microsoft.DotNet.Wpf/src/Shared/MS/Internal/Xaml/Parser/SpecialBracketCharacters.cs b/src/Microsoft.DotNet.Wpf/src/Shared/MS/Internal/Xaml/Parser/SpecialBracketCharacters.cs index ad25b2ac3..5311e0460 100644 --- a/src/Microsoft.DotNet.Wpf/src/Shared/MS/Internal/Xaml/Parser/SpecialBracketCharacters.cs +++ b/src/Microsoft.DotNet.Wpf/src/Shared/MS/Internal/Xaml/Parser/SpecialBracketCharacters.cs @@ -106,7 +106,7 @@ internal bool EndsEscapeSequence(char ch) internal bool Match(char start, char end) { - return _endChars.IndexOf(end.ToString()) == _startChars.IndexOf(start.ToString()); + return _endChars.IndexOf(end.ToString(), StringComparison.Ordinal) == _startChars.IndexOf(start.ToString(), StringComparison.Ordinal); } internal string StartBracketCharacters From e9ba026e381e4243047f2f40aaccfc08aabd88e2 Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Sat, 26 Jun 2021 17:37:05 -0400 Subject: [PATCH 0007/1033] Enable CA1805 --- .../tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 1 - .../Windows/Markup/RuntimeIdentifierPropertyAttribute.cs | 2 +- .../System/Windows/Markup/UidPropertyAttribute.cs | 2 +- .../System/Xaml/Context/ObjectWriterContext.cs | 2 +- .../src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs | 8 ++++---- .../System/Xaml/Parser/NamespacePrefixLookup.cs | 2 +- .../System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs | 2 +- .../src/System.Xaml/System/Xaml/Parser/XamlName.cs | 2 +- .../src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs | 6 +++--- .../src/System.Xaml/System/Xaml/Parser/XamlScanner.cs | 4 ++-- .../System/Xaml/Primitives/XamlBackgroundReader.cs | 4 ++-- .../System.Xaml/System/Xaml/Primitives/XamlNodeList.cs | 2 +- .../src/System.Xaml/System/Xaml/XamlObjectReader.cs | 2 +- .../src/System.Xaml/System/Xaml/XamlSchemaContext.cs | 2 +- 14 files changed, 20 insertions(+), 21 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index 8f71f5b5a..d870fe24b 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -21,7 +21,6 @@ - diff --git a/src/Microsoft.DotNet.Wpf/src/Shared/System/Windows/Markup/RuntimeIdentifierPropertyAttribute.cs b/src/Microsoft.DotNet.Wpf/src/Shared/System/Windows/Markup/RuntimeIdentifierPropertyAttribute.cs index 6362ed6d0..83c2b1138 100644 --- a/src/Microsoft.DotNet.Wpf/src/Shared/System/Windows/Markup/RuntimeIdentifierPropertyAttribute.cs +++ b/src/Microsoft.DotNet.Wpf/src/Shared/System/Windows/Markup/RuntimeIdentifierPropertyAttribute.cs @@ -48,7 +48,7 @@ public string Name } } - private string _name = null; + private string _name; } #endif diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/UidPropertyAttribute.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/UidPropertyAttribute.cs index 9696216f5..07a19c167 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/UidPropertyAttribute.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/UidPropertyAttribute.cs @@ -54,6 +54,6 @@ public string Name } // The name of the property that is designated to accept the x:Uid value - private string _name = null; + private string _name; } } diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Context/ObjectWriterContext.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Context/ObjectWriterContext.cs index 21af3d22c..a50667e1c 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Context/ObjectWriterContext.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Context/ObjectWriterContext.cs @@ -17,7 +17,7 @@ internal class ObjectWriterContext : XamlContext { private XamlContextStack _stack; - private object _rootInstance = null; + private object _rootInstance; ServiceProviderContext _serviceProviderContext; XamlRuntime _runtime; diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs index d30ddbe68..a84dbcd4e 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs @@ -38,7 +38,7 @@ internal IList NsDefs } // Note this, is the only dictionary that we synchronize, because XamlSchemaContext adds to it - private ConcurrentDictionary> _clrToXmlNs = null; + private ConcurrentDictionary> _clrToXmlNs; internal ConcurrentDictionary> ClrToXmlNs { get @@ -64,7 +64,7 @@ internal ICollection InternalsVisibleTo } } - private Dictionary _oldToNewNs = null; + private Dictionary _oldToNewNs; internal Dictionary OldToNewNs { get @@ -77,7 +77,7 @@ internal Dictionary OldToNewNs } } - private Dictionary _prefixes = null; + private Dictionary _prefixes; internal Dictionary Prefixes { get @@ -90,7 +90,7 @@ internal Dictionary Prefixes } } - private string _rootNamespace = null; + private string _rootNamespace; internal string RootNamespace { get diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NamespacePrefixLookup.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NamespacePrefixLookup.cs index 2a74fbf8d..5fbd785e4 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NamespacePrefixLookup.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NamespacePrefixLookup.cs @@ -20,7 +20,7 @@ public NamespacePrefixLookup(out IEnumerable newNamespaces #region INamespacePrefixLookup Members - private int n = 0; + private int n; public string LookupPrefix(string ns) { // we really shouldn't generate extraneous new namespaces diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs index 92971ec55..b30d0b006 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs @@ -33,7 +33,7 @@ class SeenCtorDirectiveFlags } List _seenStack = new List(); - int _startObjectDepth = 0; + int _startObjectDepth; List _moveList; diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlName.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlName.cs index 54e873c07..c9798d80e 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlName.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlName.cs @@ -30,7 +30,7 @@ public XamlName(string prefix, string name) public abstract string ScopedName { get; } protected string _prefix; - protected string _namespace = null; + protected string _namespace; public string Prefix { get { return _prefix; } } public string Namespace { get { return _namespace; } } diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs index 187c7de0c..66823a8c7 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs @@ -931,7 +931,7 @@ private XamlNode Logic_StartItemsProperty(XamlType collectionType) #region Optimizations private readonly XamlTypeName arrayType = new XamlTypeName(@"http://schemas.microsoft.com/winfx/2006/xaml", "Array"); - private XamlType _arrayExtensionType = null; + private XamlType _arrayExtensionType; private XamlType ArrayExtensionType { get @@ -944,7 +944,7 @@ private XamlType ArrayExtensionType } } - private XamlMember _arrayTypeMember = null; + private XamlMember _arrayTypeMember; private XamlMember ArrayTypeMember { get @@ -957,7 +957,7 @@ private XamlMember ArrayTypeMember } } - private XamlMember _itemsTypeMember = null; + private XamlMember _itemsTypeMember; private XamlMember ItemsTypeMember { get diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs index 26d1000f5..960afb104 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs @@ -29,14 +29,14 @@ class XamlScanner XamlScannerStack _scannerStack; XamlParserContext _parserContext; - XamlText _accumulatedText = null; + XamlText _accumulatedText; List _attributes; int _nextAttribute; XamlScannerNode _currentNode; Queue _readNodesQueue; XamlXmlReaderSettings _settings; XamlAttribute _typeArgumentAttribute; - bool _hasKeyAttribute = false; + bool _hasKeyAttribute; internal XamlScanner(XamlParserContext context, XmlReader xmlReader, XamlXmlReaderSettings settings) { diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlBackgroundReader.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlBackgroundReader.cs index 49798482f..7b01fbb78 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlBackgroundReader.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlBackgroundReader.cs @@ -29,8 +29,8 @@ public class XamlBackgroundReader : XamlReader, IXamlLineInfo XamlWriter _writer; bool _wrappedReaderHasLineInfo; - int _lineNumber=0; - int _linePosition=0; + int _lineNumber; + int _linePosition; Thread _thread; Exception _caughtException; diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs index 6959d9854..a5634c6ec 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs @@ -16,7 +16,7 @@ namespace System.Xaml public class XamlNodeList { List _nodeList; - bool _readMode = false; + bool _readMode; XamlWriter _writer; bool _hasLineInfo; diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlObjectReader.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlObjectReader.cs index d87821796..7e392514e 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlObjectReader.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlObjectReader.cs @@ -994,7 +994,7 @@ public virtual void EnsureNoDuplicateNames(Stack> namesInCurrent class ObjectMarkupInfo : ObjectOrValueMarkupInfo { List properties = new List(); - bool? isAttributableMarkupExtension = null; + bool? isAttributableMarkupExtension; public List Properties { get { return properties; } } public string Name { get; set; } diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs index 07fc3679d..0fb24ef66 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs @@ -683,7 +683,7 @@ internal virtual XamlMember GetAttachableEvent(string name, MethodInfo adder) #region Settings // Unchanging, initialized in ctor - private readonly XamlSchemaContextSettings _settings = null; + private readonly XamlSchemaContextSettings _settings; public bool SupportMarkupExtensionsWithDuplicateArity { From d102362d40937b15b0e0452f86bdb6cbfc7687d0 Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Sat, 26 Jun 2021 18:10:41 -0400 Subject: [PATCH 0008/1033] Enable CA2000 --- eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 1 - .../src/System.Xaml/System/Xaml/XamlServices.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index d870fe24b..e7c59c9ea 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -21,7 +21,6 @@ - \ No newline at end of file diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlServices.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlServices.cs index 7622a2739..3b6883320 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlServices.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlServices.cs @@ -8,6 +8,7 @@ namespace System.Xaml { + [Diagnostics.CodeAnalysis.SuppressMessage("Reliability", "CA2000:Dispose objects before losing scope", Justification = "The IDisposable types in this class don't require dispose.")] public static class XamlServices { // The main function is Load(XamlReader) From 077cb99297fcc19060426fa64f52ccc1e4d2bdbb Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Sat, 26 Jun 2021 18:24:17 -0400 Subject: [PATCH 0009/1033] Enable CA2002 --- eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 1 - .../src/System.Xaml/System/Xaml/Schema/TypeReflector.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index e7c59c9ea..a69f4fa06 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -21,6 +21,5 @@ - \ No newline at end of file diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs index 3ffd1d992..fd98273cf 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs @@ -13,6 +13,7 @@ namespace System.Xaml.Schema { + [Diagnostics.CodeAnalysis.SuppressMessage("Reliability", "CA2002:Do not lock on objects with weak identity", Justification = "This type is internal.")] class TypeReflector : Reflector { private const XamlCollectionKind XamlCollectionKindInvalid = (XamlCollectionKind)byte.MaxValue; From 619767856f1cee4e4ec71de8c43b64e8d8952826 Mon Sep 17 00:00:00 2001 From: Thomas Goulet Date: Wed, 28 Jul 2021 21:30:05 -0400 Subject: [PATCH 0010/1033] Enable CA1062 --- eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset | 3 --- .../src/System.Xaml/System/Windows/Markup/ValueSerializer.cs | 3 +++ .../src/System.Xaml/System/Xaml/XamlSchemaContext.cs | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset index a69f4fa06..4b42f3909 100644 --- a/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset +++ b/eng/WpfArcadeSdk/tools/CodeAnalysis/WpfCodeAnalysis.ruleset @@ -19,7 +19,4 @@ - - - \ No newline at end of file diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs index 75934717a..b0af7e5f5 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs @@ -244,6 +244,9 @@ public static ValueSerializer GetSerializerFor(PropertyDescriptor descriptor, IV /// protected Exception GetConvertToException(object value, Type destinationType) { + if (destinationType == null) + throw new ArgumentNullException(nameof(destinationType)); + string text; if (value == null) { diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs index 0fb24ef66..788933c98 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/XamlSchemaContext.cs @@ -542,6 +542,9 @@ private ConcurrentDictionary, Xam public virtual XamlType GetXamlType(Type type) { + if (type == null) + throw new ArgumentNullException(nameof(type)); + return GetXamlType(type, XamlLanguage.TypeAlias(type)); } From df7ed82c9b3b0abaef4f024603f3158e845a1020 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 12:40:09 +0000 Subject: [PATCH 0011/1033] Update dependencies from https://github.com/dotnet/arcade build 20210817.1 (#5104) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 676c799dc..e083e4041 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 9b7027ba718462aa6410cef61a8be5a4283e7528 + df04f7bfcf0bdd315d5468e158a8cf6696760190 - + https://github.com/dotnet/arcade - 9b7027ba718462aa6410cef61a8be5a4283e7528 + df04f7bfcf0bdd315d5468e158a8cf6696760190 - + https://github.com/dotnet/arcade - 9b7027ba718462aa6410cef61a8be5a4283e7528 + df04f7bfcf0bdd315d5468e158a8cf6696760190 - + https://github.com/dotnet/arcade - 9b7027ba718462aa6410cef61a8be5a4283e7528 + df04f7bfcf0bdd315d5468e158a8cf6696760190 - + https://github.com/dotnet/arcade - 9b7027ba718462aa6410cef61a8be5a4283e7528 + df04f7bfcf0bdd315d5468e158a8cf6696760190 diff --git a/eng/Versions.props b/eng/Versions.props index a4ad24140..2a99b262b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21413.4 - 6.0.0-beta.21413.4 - 6.0.0-beta.21413.4 + 6.0.0-beta.21417.1 + 6.0.0-beta.21417.1 + 6.0.0-beta.21417.1 diff --git a/global.json b/global.json index aa6240686..af6c0342d 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21413.4", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21413.4" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21417.1", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21417.1" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 25ed84892fe49dc1e2b22ec56025729e33646ad0 Mon Sep 17 00:00:00 2001 From: Ryland <41491307+ryalanms@users.noreply.github.com> Date: Wed, 18 Aug 2021 09:53:05 -0700 Subject: [PATCH 0012/1033] Update main branding to .NET 7.0 alpha 1 (#5095) * Update .NET 7.0 branding to alpha 1 * Use preview language version for alpha releases (in addition to rc and preview) --- eng/Versions.props | 4 ++-- eng/WpfArcadeSdk/Sdk/Sdk.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 2a99b262b..8778f1fad 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -1,8 +1,8 @@ - 6.0.0 - rc + 7.0.0 + alpha 1 6.0.0-rc.1.21417.1 6.0.0-rc.1.21417.1 diff --git a/eng/WpfArcadeSdk/Sdk/Sdk.props b/eng/WpfArcadeSdk/Sdk/Sdk.props index f4bd71bf1..b1855fe8f 100644 --- a/eng/WpfArcadeSdk/Sdk/Sdk.props +++ b/eng/WpfArcadeSdk/Sdk/Sdk.props @@ -14,7 +14,7 @@ $(WpfArcadeSdkToolsDir)GenXmlStringTable.pl - preview + preview 10 true true From 02d6d9fb27eb2fee6659801d8564e43664ba6006 Mon Sep 17 00:00:00 2001 From: Ryland <41491307+ryalanms@users.noreply.github.com> Date: Wed, 18 Aug 2021 10:01:32 -0700 Subject: [PATCH 0013/1033] Add net7 and net7 transport feeds (#5107) --- NuGet.config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NuGet.config b/NuGet.config index 2a0f97c3e..a6a686600 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,6 +10,8 @@ + + From 2ddba0e30374b91c71717e5808468ff8a3db7494 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 17:27:10 +0000 Subject: [PATCH 0014/1033] [main] Update dependencies from dotnet/winforms (#5097) [main] Update dependencies from dotnet/winforms --- 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 e083e4041..44d526ba8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 02ef8f0eba399925a34aeeb55642871511378e9e + 9bc46e2130f662297e75cd8132f6e7467f181881 - + https://github.com/dotnet/winforms - 02ef8f0eba399925a34aeeb55642871511378e9e + 9bc46e2130f662297e75cd8132f6e7467f181881 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8778f1fad..ce07fdf91 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 6.0.0-rc.1.21417.4 + 7.0.0-alpha.1.21417.10 From d94fea7d11ed17f862aca11f86663061adab43ae Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 12:17:32 -0700 Subject: [PATCH 0015/1033] Update dependencies from https://github.com/dotnet/winforms build 20210818.4 (#5109) Microsoft.Dotnet.WinForms.ProjectTemplates , Microsoft.Private.Winforms From Version 7.0.0-alpha.1.21417.10 -> To Version 7.0.0-alpha.1.21418.4 Dependency coherency updates System.CodeDom,System.Configuration.ConfigurationManager,System.Diagnostics.EventLog,System.DirectoryServices,System.Drawing.Common,System.Reflection.MetadataLoadContext,System.Security.Cryptography.Xml,System.Security.Permissions,System.Windows.Extensions,Microsoft.NETCore.Platforms,System.IO.Packaging,Microsoft.NETCore.ILDAsm,Microsoft.NETCore.ILAsm,System.Resources.Extensions,Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Runtime.win-x64,VS.Redist.Common.NetCore.SharedFramework.x64.6.0 From Version 6.0.0-rc.1.21417.1 -> To Version 7.0.0-alpha.1.21418.2 (parent: Microsoft.Private.Winforms Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 36 +++++++++---------- 2 files changed, 56 insertions(+), 56 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 44d526ba8..48bf5ea4d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 9bc46e2130f662297e75cd8132f6e7467f181881 + 4c1f44c52a62bf4dafc178fc4a2f900c7c3fb9fa - + https://github.com/dotnet/winforms - 9bc46e2130f662297e75cd8132f6e7467f181881 + 4c1f44c52a62bf4dafc178fc4a2f900c7c3fb9fa - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 14b34eb02bc8969b77c0d3a1e39fb38f450625cf + 58efa4b79751a2dad08d9bf7ca67930f8160afe3 diff --git a/eng/Versions.props b/eng/Versions.props index ce07fdf91..09dbb647d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21417.10 + 7.0.0-alpha.1.21418.4 5.0.0-alpha1.19562.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 + 6.0.0-rc.1.21406.5 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 4.6.0-preview4.19176.11 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 - 6.0.0-rc.1.21417.1 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21418.2 From 02bb2e7b8ade3cb754e4aab822d297b08020336c Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 18 Aug 2021 13:59:38 -0700 Subject: [PATCH 0016/1033] Update runtime package name to fix coherency (#5111) --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 48bf5ea4d..a49018c4d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -77,9 +77,9 @@ https://github.com/dotnet/runtime 69de57bcf2677238bbfb88e601bc38b89dc11dc0 - + https://github.com/dotnet/runtime - 58efa4b79751a2dad08d9bf7ca67930f8160afe3 + 69de57bcf2677238bbfb88e601bc38b89dc11dc0 From 1d37d99f85911f352c03607200abec1941154a6a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 23:08:28 +0000 Subject: [PATCH 0017/1033] Update dependencies from https://github.com/dotnet/winforms build 20210818.9 (#5113) [main] Update dependencies from dotnet/winforms --- 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 a49018c4d..5304b9af0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 4c1f44c52a62bf4dafc178fc4a2f900c7c3fb9fa + 07e0b2fc9b02bcc51b8f7eb2291a13fe5642cec4 - + https://github.com/dotnet/winforms - 4c1f44c52a62bf4dafc178fc4a2f900c7c3fb9fa + 07e0b2fc9b02bcc51b8f7eb2291a13fe5642cec4 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 09dbb647d..7674be515 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21418.4 + 7.0.0-alpha.1.21418.9 From 3f7cd1c8e772e2422ab362794199984de96d1855 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 23:29:21 +0000 Subject: [PATCH 0018/1033] Update dependencies from https://github.com/dotnet/winforms build 20210818.10 (#5114) [main] Update dependencies from dotnet/winforms --- 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 5304b9af0..5720920ed 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 07e0b2fc9b02bcc51b8f7eb2291a13fe5642cec4 + ddea29a315bfb8607f1519fee47a1c256d9acdd1 - + https://github.com/dotnet/winforms - 07e0b2fc9b02bcc51b8f7eb2291a13fe5642cec4 + ddea29a315bfb8607f1519fee47a1c256d9acdd1 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7674be515..9a929702d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21418.9 + 7.0.0-alpha.1.21418.10 From 686456f3aae1f70479ef6e6d2d16d3b09e5148f8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Aug 2021 01:01:00 +0000 Subject: [PATCH 0019/1033] Update dependencies from https://github.com/dotnet/winforms build 20210818.13 (#5115) [main] Update dependencies from dotnet/winforms --- 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 5720920ed..c5e9ea6b7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - ddea29a315bfb8607f1519fee47a1c256d9acdd1 + 0458796fac81601081fb7daf1e15c5c559984dcb - + https://github.com/dotnet/winforms - ddea29a315bfb8607f1519fee47a1c256d9acdd1 + 0458796fac81601081fb7daf1e15c5c559984dcb https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9a929702d..730f49ae6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21418.10 + 7.0.0-alpha.1.21418.13 From b31d850006fc322d7844e7d869543c9d736a53d4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Aug 2021 12:41:29 +0000 Subject: [PATCH 0020/1033] Update dependencies from https://github.com/dotnet/arcade build 20210818.12 (#5118) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 +++++++++--------- eng/Versions.props | 6 +++--- eng/common/build.sh | 1 + .../post-build/sourcelink-validation.ps1 | 17 ++++++++++----- eng/common/sdk-task.ps1 | 1 + .../templates/job/source-index-stage1.yml | 21 +++++++------------ eng/common/tools.ps1 | 21 +++++++++++++++++++ eng/common/tools.sh | 7 +++++++ global.json | 4 ++-- 9 files changed, 65 insertions(+), 33 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c5e9ea6b7..d85ee9dc4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - df04f7bfcf0bdd315d5468e158a8cf6696760190 + ac8b7514ca8bcac1d071a16b7a92cb52f7058871 - + https://github.com/dotnet/arcade - df04f7bfcf0bdd315d5468e158a8cf6696760190 + ac8b7514ca8bcac1d071a16b7a92cb52f7058871 - + https://github.com/dotnet/arcade - df04f7bfcf0bdd315d5468e158a8cf6696760190 + ac8b7514ca8bcac1d071a16b7a92cb52f7058871 - + https://github.com/dotnet/arcade - df04f7bfcf0bdd315d5468e158a8cf6696760190 + ac8b7514ca8bcac1d071a16b7a92cb52f7058871 - + https://github.com/dotnet/arcade - df04f7bfcf0bdd315d5468e158a8cf6696760190 + ac8b7514ca8bcac1d071a16b7a92cb52f7058871 diff --git a/eng/Versions.props b/eng/Versions.props index 730f49ae6..57b0c2919 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21417.1 - 6.0.0-beta.21417.1 - 6.0.0-beta.21417.1 + 6.0.0-beta.21418.12 + 6.0.0-beta.21418.12 + 6.0.0-beta.21418.12 diff --git a/eng/common/build.sh b/eng/common/build.sh index 55b298f16..9d3042a94 100755 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -187,6 +187,7 @@ function InitializeCustomToolset { } function Build { + TryLogClientIpAddress InitializeToolset InitializeCustomToolset diff --git a/eng/common/post-build/sourcelink-validation.ps1 b/eng/common/post-build/sourcelink-validation.ps1 index 85c898617..3b6fc9533 100644 --- a/eng/common/post-build/sourcelink-validation.ps1 +++ b/eng/common/post-build/sourcelink-validation.ps1 @@ -17,6 +17,7 @@ $global:RepoFiles = @{} $MaxParallelJobs = 16 $MaxRetries = 5 +$RetryWaitTimeInSeconds = 30 # Wait time between check for system load $SecondsBetweenLoadChecks = 10 @@ -99,9 +100,9 @@ $ValidatePackage = { $Status = 200 $Cache = $using:RepoFiles - $totalRetries = 0 + $attempts = 0 - while ($totalRetries -lt $using:MaxRetries) { + while ($attempts -lt $using:MaxRetries) { if ( !($Cache.ContainsKey($FilePath)) ) { try { $Uri = $Link -as [System.URI] @@ -113,7 +114,7 @@ $ValidatePackage = { else { # If it's not a github link, we want to break out of the loop and not retry. $Status = 0 - $totalRetries = $using:MaxRetries + $attempts = $using:MaxRetries } } catch { @@ -123,9 +124,15 @@ $ValidatePackage = { } if ($Status -ne 200) { - $totalRetries++ + $attempts++ - if ($totalRetries -ge $using:MaxRetries) { + if ($attempts -lt $using:MaxRetries) + { + $attemptsLeft = $using:MaxRetries - $attempts + Write-Warning "Download failed, $attemptsLeft attempts remaining, will retry in $using:RetryWaitTimeInSeconds seconds" + Start-Sleep -Seconds $using:RetryWaitTimeInSeconds + } + else { if ($NumFailedLinks -eq 0) { if ($FailedFiles.Value -eq 0) { Write-Host diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index b1bca63ab..7ffa3591e 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -83,6 +83,7 @@ try { } if ($restore) { + Try-LogClientIpAddress Build 'Restore' } diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index b58d42364..1cc0c29e4 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -34,29 +34,24 @@ jobs: inputs: packageType: sdk version: 3.1.x - - - task: UseDotNet@2 - displayName: Use .NET Core sdk - inputs: - useGlobalJson: true + installationPath: $(Agent.TempDirectory)/dotnet + workingDirectory: $(Agent.TempDirectory) - script: | - dotnet tool install BinLogToSln --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path .source-index/tools - dotnet tool install UploadIndexStage1 --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path .source-index/tools - echo ##vso[task.prependpath]$(Build.SourcesDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools displayName: Download Tools + # Set working directory to temp directory so 'dotnet' doesn't try to use global.json and use the repo's sdk. + workingDirectory: $(Agent.TempDirectory) - script: ${{ parameters.sourceIndexBuildCommand }} displayName: Build Repository - - script: BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output displayName: Process Binlog into indexable sln - env: - DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2 - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - script: UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) + - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) displayName: Upload stage1 artifacts to source index env: BLOB_CONTAINER_URL: $(source-dot-net-stage1-blob-container-url) - DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 5d526c74d..e607aa436 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -154,6 +154,9 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { return $global:_DotNetInstallDir } + # In case of network error, try to log the current IP for reference + Try-LogClientIpAddress + # Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism $env:DOTNET_MULTILEVEL_LOOKUP=0 @@ -872,3 +875,21 @@ if (!$disableConfigureToolsetImport) { } } } + +function Try-LogClientIpAddress() +{ + Write-Host "Attempting to log this client's IP for Azure Package feed telemetry purposes" + try + { + $result = Invoke-WebRequest -Uri "http://co1.msedge.net/fdv2/diagnostics.aspx" -UseBasicParsing + $lines = $result.Content.Split([Environment]::NewLine) + $socketIp = $lines | Select-String -Pattern "^Socket IP:.*" + Write-Host $socketIp + $clientIp = $lines | Select-String -Pattern "^Client IP:.*" + Write-Host $clientIp + } + catch + { + Write-Host "Unable to get this machine's effective IP address for logging: $_" + } +} diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 828119be4..3c5f3a12c 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -399,6 +399,13 @@ function StopProcesses { return 0 } +function TryLogClientIpAddress () { + echo 'Attempting to log this client''s IP for Azure Package feed telemetry purposes' + if command -v curl > /dev/null; then + curl -s 'http://co1.msedge.net/fdv2/diagnostics.aspx' | grep ' IP: ' + fi +} + function MSBuild { local args=$@ if [[ "$pipelines_log" == true ]]; then diff --git a/global.json b/global.json index af6c0342d..923c3c62f 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21417.1", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21417.1" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21418.12", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21418.12" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 3a7e2a77d41d2e3ec68dc7ad32c60d7df88ab49f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Aug 2021 13:35:20 +0000 Subject: [PATCH 0021/1033] Update dependencies from https://github.com/dotnet/winforms build 20210819.1 (#5119) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21418.2 to 7.0.0-alpha.1.21419.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d85ee9dc4..c84052328 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 0458796fac81601081fb7daf1e15c5c559984dcb + fae92b45b1a747c5f6755c6445fc222369fb63c4 - + https://github.com/dotnet/winforms - 0458796fac81601081fb7daf1e15c5c559984dcb + fae92b45b1a747c5f6755c6445fc222369fb63c4 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 - + https://github.com/dotnet/runtime - 69de57bcf2677238bbfb88e601bc38b89dc11dc0 + 59b6c36b35553a63e4bf1178922ff97d90540220 diff --git a/eng/Versions.props b/eng/Versions.props index 57b0c2919..dcde6fe9b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21418.13 + 7.0.0-alpha.1.21419.1 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 - 7.0.0-alpha.1.21418.2 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21419.1 From b044c20b1a1418dc7e431d044d761cc1d59d6a05 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 20 Aug 2021 12:30:27 +0000 Subject: [PATCH 0022/1033] Update dependencies from https://github.com/dotnet/arcade build 20210819.2 (#5127) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c84052328..12a450d8d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - ac8b7514ca8bcac1d071a16b7a92cb52f7058871 + 23372e950114fb772652f79d9990129db55edff8 - + https://github.com/dotnet/arcade - ac8b7514ca8bcac1d071a16b7a92cb52f7058871 + 23372e950114fb772652f79d9990129db55edff8 - + https://github.com/dotnet/arcade - ac8b7514ca8bcac1d071a16b7a92cb52f7058871 + 23372e950114fb772652f79d9990129db55edff8 - + https://github.com/dotnet/arcade - ac8b7514ca8bcac1d071a16b7a92cb52f7058871 + 23372e950114fb772652f79d9990129db55edff8 - + https://github.com/dotnet/arcade - ac8b7514ca8bcac1d071a16b7a92cb52f7058871 + 23372e950114fb772652f79d9990129db55edff8 diff --git a/eng/Versions.props b/eng/Versions.props index dcde6fe9b..8f11ee173 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21418.12 - 6.0.0-beta.21418.12 - 6.0.0-beta.21418.12 + 6.0.0-beta.21419.2 + 6.0.0-beta.21419.2 + 6.0.0-beta.21419.2 diff --git a/global.json b/global.json index 923c3c62f..26685fe57 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21418.12", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21418.12" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21419.2", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21419.2" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From bb25e42f51254797ac03b9aaef25d170e105903d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 20 Aug 2021 13:15:32 +0000 Subject: [PATCH 0023/1033] Update dependencies from https://github.com/dotnet/winforms build 20210820.1 (#5128) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21419.1 to 7.0.0-alpha.1.21420.5 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 12a450d8d..79be81b70 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - fae92b45b1a747c5f6755c6445fc222369fb63c4 + 9494c450b5a686c911238dc61ac968ee2d3b2b90 - + https://github.com/dotnet/winforms - fae92b45b1a747c5f6755c6445fc222369fb63c4 + 9494c450b5a686c911238dc61ac968ee2d3b2b90 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 - + https://github.com/dotnet/runtime - 59b6c36b35553a63e4bf1178922ff97d90540220 + 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 diff --git a/eng/Versions.props b/eng/Versions.props index 8f11ee173..8fbb2d706 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.1 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 - 7.0.0-alpha.1.21419.1 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.5 From 009dbd452472d8378eda882955f5de4d055db21a Mon Sep 17 00:00:00 2001 From: Sam Bent Date: Fri, 20 Aug 2021 12:40:47 -0700 Subject: [PATCH 0024/1033] GetClickablePoint returns error value when the element is offscreen (#5126) --- .../System/Windows/Automation/Peers/AutomationPeer.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Automation/Peers/AutomationPeer.cs b/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Automation/Peers/AutomationPeer.cs index 2bc28b44f..fb7854bc8 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Automation/Peers/AutomationPeer.cs +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Automation/Peers/AutomationPeer.cs @@ -1181,7 +1181,14 @@ public Point GetClickablePoint() try { _publicCallInProgress = true; - result = GetClickablePointCore(); + if (IsOffscreenCore()) + { + result = new Point(double.NaN, double.NaN); + } + else + { + result = GetClickablePointCore(); + } } finally { From f240aa1470488f41104ab775a6e8c7180a3af4f6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 21 Aug 2021 00:23:38 +0000 Subject: [PATCH 0025/1033] Update dependencies from https://github.com/dotnet/winforms build 20210820.4 (#5134) [main] Update dependencies from dotnet/winforms --- 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 79be81b70..b71df741d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 9494c450b5a686c911238dc61ac968ee2d3b2b90 + 96e812db192512e8345a6d709918a13780bee06c - + https://github.com/dotnet/winforms - 9494c450b5a686c911238dc61ac968ee2d3b2b90 + 96e812db192512e8345a6d709918a13780bee06c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8fbb2d706..c5955f486 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21420.1 + 7.0.0-alpha.1.21420.4 From 060971c4440a04c65bd43a044c40027394d0ec0b Mon Sep 17 00:00:00 2001 From: lindexi Date: Sat, 21 Aug 2021 19:54:00 +0800 Subject: [PATCH 0026/1033] Fix typo in RenderDataDrawingContext comment --- .../System/Windows/Media/RenderDataDrawingContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/RenderDataDrawingContext.cs b/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/RenderDataDrawingContext.cs index b3af609fa..0ae3c43d2 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/RenderDataDrawingContext.cs +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/RenderDataDrawingContext.cs @@ -16,7 +16,7 @@ using System.Security; //------------------------------------------------------------------------------ -// This section lists various things that we could improve on the DrawingContxt +// This section lists various things that we could improve on the DrawingContext // class. // // - Remove the isAnimated flag from being propagated everywhere. Rather mark From 60b93a26595b8f196394df4eb80653263d7a5299 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 21 Aug 2021 12:30:23 +0000 Subject: [PATCH 0027/1033] Update dependencies from https://github.com/dotnet/arcade build 20210820.4 (#5136) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- eng/common/init-tools-native.sh | 2 +- eng/common/native/common-library.sh | 8 ++++++-- global.json | 4 ++-- 5 files changed, 22 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b71df741d..803d51695 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 23372e950114fb772652f79d9990129db55edff8 + fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 - + https://github.com/dotnet/arcade - 23372e950114fb772652f79d9990129db55edff8 + fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 - + https://github.com/dotnet/arcade - 23372e950114fb772652f79d9990129db55edff8 + fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 - + https://github.com/dotnet/arcade - 23372e950114fb772652f79d9990129db55edff8 + fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 - + https://github.com/dotnet/arcade - 23372e950114fb772652f79d9990129db55edff8 + fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 diff --git a/eng/Versions.props b/eng/Versions.props index c5955f486..0c374b1f1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21419.2 - 6.0.0-beta.21419.2 - 6.0.0-beta.21419.2 + 6.0.0-beta.21420.4 + 6.0.0-beta.21420.4 + 6.0.0-beta.21420.4 diff --git a/eng/common/init-tools-native.sh b/eng/common/init-tools-native.sh index 5bd205b5d..3e6a8d6ac 100755 --- a/eng/common/init-tools-native.sh +++ b/eng/common/init-tools-native.sh @@ -10,7 +10,7 @@ force=false download_retries=5 retry_wait_time_seconds=30 global_json_file="$(dirname "$(dirname "${scriptroot}")")/global.json" -declare -A native_assets +declare -a native_assets . $scriptroot/pipeline-logging-functions.sh . $scriptroot/native/common-library.sh diff --git a/eng/common/native/common-library.sh b/eng/common/native/common-library.sh index bf272dcf5..080c2c283 100755 --- a/eng/common/native/common-library.sh +++ b/eng/common/native/common-library.sh @@ -148,8 +148,12 @@ function NewScriptShim { fi if [[ ! -f $tool_file_path ]]; then - Write-PipelineTelemetryError -category 'NativeToolsBootstrap' "Specified tool file path:'$tool_file_path' does not exist" - return 1 + # try to see if the path is lower cased + tool_file_path="$(echo $tool_file_path | tr "[:upper:]" "[:lower:]")" + if [[ ! -f $tool_file_path ]]; then + Write-PipelineTelemetryError -category 'NativeToolsBootstrap' "Specified tool file path:'$tool_file_path' does not exist" + return 1 + fi fi local shim_contents=$'#!/usr/bin/env bash\n' diff --git a/global.json b/global.json index 26685fe57..afde6d2be 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21419.2", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21419.2" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21420.4", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21420.4" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 0b1accb7931c667e0ccf9cf8814d7af634023182 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 22 Aug 2021 04:48:47 +0000 Subject: [PATCH 0028/1033] Update dependencies from https://github.com/dotnet/winforms build 20210821.1 (#5139) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21420.5 to 7.0.0-alpha.1.21420.30 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 803d51695..e8a3c692f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 96e812db192512e8345a6d709918a13780bee06c + c6ff7ad01c86916b891a7331aee8079dd3604386 - + https://github.com/dotnet/winforms - 96e812db192512e8345a6d709918a13780bee06c + c6ff7ad01c86916b891a7331aee8079dd3604386 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 - + https://github.com/dotnet/runtime - 4cb2874d70a99a0512cf667f916a8b5b0c6eba69 + 07d17b67c168b4b47391b458c909658bcf56ff67 diff --git a/eng/Versions.props b/eng/Versions.props index 0c374b1f1..b33a232b2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.4 + 7.0.0-alpha.1.21421.1 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 - 7.0.0-alpha.1.21420.5 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21420.30 From be7ba8e365a4ad25d8ace496acc51b43ef72cdb0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 22 Aug 2021 13:18:36 +0000 Subject: [PATCH 0029/1033] Update dependencies from https://github.com/dotnet/winforms build 20210822.1 (#5140) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21420.30 to 7.0.0-alpha.1.21421.5 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e8a3c692f..bbf87af13 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - c6ff7ad01c86916b891a7331aee8079dd3604386 + 0559c690da54e4f4884193deac5df45cbb8eb7c6 - + https://github.com/dotnet/winforms - c6ff7ad01c86916b891a7331aee8079dd3604386 + 0559c690da54e4f4884193deac5df45cbb8eb7c6 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 - + https://github.com/dotnet/runtime - 07d17b67c168b4b47391b458c909658bcf56ff67 + 15484f8117dd9a13233d7be93a43d1a83591acc2 diff --git a/eng/Versions.props b/eng/Versions.props index b33a232b2..19d99493d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.1 + 7.0.0-alpha.1.21422.1 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 - 7.0.0-alpha.1.21420.30 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21421.5 From 40efe8aa79850bd69ce3eb98a52a21d34e41bc9d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 23 Aug 2021 17:49:06 +0000 Subject: [PATCH 0030/1033] Update dependencies from https://github.com/dotnet/winforms build 20210823.6 (#5147) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21421.5 to 7.0.0-alpha.1.21422.3 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bbf87af13..73e505432 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 0559c690da54e4f4884193deac5df45cbb8eb7c6 + e807d2d4e0cfac4e3144d5a1ed5024bcc24f229c - + https://github.com/dotnet/winforms - 0559c690da54e4f4884193deac5df45cbb8eb7c6 + e807d2d4e0cfac4e3144d5a1ed5024bcc24f229c - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 - + https://github.com/dotnet/runtime - 15484f8117dd9a13233d7be93a43d1a83591acc2 + 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 diff --git a/eng/Versions.props b/eng/Versions.props index 19d99493d..54f1dd219 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.1 + 7.0.0-alpha.1.21423.6 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 - 7.0.0-alpha.1.21421.5 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21422.3 From 3b2aecb44b45e831d0954d1f14abfba48b50b818 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 23 Aug 2021 22:57:02 +0000 Subject: [PATCH 0031/1033] Update dependencies from https://github.com/dotnet/winforms build 20210823.9 (#5149) [main] Update dependencies from dotnet/winforms --- 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 73e505432..be07b414c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - e807d2d4e0cfac4e3144d5a1ed5024bcc24f229c + 8693468f247ca5d64db3ea7a34f702792a7bf08b - + https://github.com/dotnet/winforms - e807d2d4e0cfac4e3144d5a1ed5024bcc24f229c + 8693468f247ca5d64db3ea7a34f702792a7bf08b https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 54f1dd219..88dab1b97 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21423.6 + 7.0.0-alpha.1.21423.9 From 1d2877a0dfcb45762cc080a24fd81ba970be8a4c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 23 Aug 2021 23:43:04 +0000 Subject: [PATCH 0032/1033] Update dependencies from https://github.com/dotnet/winforms build 20210823.10 (#5150) [main] Update dependencies from dotnet/winforms --- 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 be07b414c..6396a9e9e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 8693468f247ca5d64db3ea7a34f702792a7bf08b + 962e1d337fb9ed65e8a61d06ce3758702c575a9a - + https://github.com/dotnet/winforms - 8693468f247ca5d64db3ea7a34f702792a7bf08b + 962e1d337fb9ed65e8a61d06ce3758702c575a9a https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 88dab1b97..a1fb32691 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21423.9 + 7.0.0-alpha.1.21423.10 From 0e1c857ed5e8805151dfa20c8c4983ce93cf6c21 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 24 Aug 2021 21:48:59 +0000 Subject: [PATCH 0033/1033] Update dependencies from https://github.com/dotnet/winforms build 20210824.12 (#5160) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21422.3 to 7.0.0-alpha.1.21423.17 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6396a9e9e..f2f6b9497 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 962e1d337fb9ed65e8a61d06ce3758702c575a9a + f6349d77313bd7a1fb15d170c11d32d401909080 - + https://github.com/dotnet/winforms - 962e1d337fb9ed65e8a61d06ce3758702c575a9a + f6349d77313bd7a1fb15d170c11d32d401909080 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 - + https://github.com/dotnet/runtime - 3d5d26181cd7bc07ea6c6f87710c14ccd043b415 + 96c179aadcf0a7df20d928536484551789fbaf50 diff --git a/eng/Versions.props b/eng/Versions.props index a1fb32691..eb823bd1d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.10 + 7.0.0-alpha.1.21424.12 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 - 7.0.0-alpha.1.21422.3 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21423.17 From ff3d90e5ba35b466a6b7c725bcc5b73f8a0d69cc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 09:19:19 +0000 Subject: [PATCH 0034/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.1 (#5162) [main] Update dependencies from dotnet/winforms --- 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 f2f6b9497..c2a4d4d14 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - f6349d77313bd7a1fb15d170c11d32d401909080 + 56c318cccca5db1f05a6e4010d94537e59b1bf4a - + https://github.com/dotnet/winforms - f6349d77313bd7a1fb15d170c11d32d401909080 + 56c318cccca5db1f05a6e4010d94537e59b1bf4a https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index eb823bd1d..7c5391bed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21424.12 + 7.0.0-alpha.1.21425.1 From e4441035f0475972840c67c77b438600b1873ef4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 12:37:37 +0000 Subject: [PATCH 0035/1033] Update dependencies from https://github.com/dotnet/arcade build 20210824.3 (#5163) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- eng/common/build.sh | 5 ++++- eng/common/sdk-task.ps1 | 4 +++- eng/common/tools.ps1 | 6 +++--- eng/common/tools.sh | 2 +- global.json | 4 ++-- 7 files changed, 26 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c2a4d4d14..d35b080eb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 + 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e - + https://github.com/dotnet/arcade - fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 + 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e - + https://github.com/dotnet/arcade - fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 + 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e - + https://github.com/dotnet/arcade - fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 + 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e - + https://github.com/dotnet/arcade - fe787bd48ed72e51a98eb5e4e5e5af74edb531e5 + 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e diff --git a/eng/Versions.props b/eng/Versions.props index 7c5391bed..ec3defb8a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21420.4 - 6.0.0-beta.21420.4 - 6.0.0-beta.21420.4 + 6.0.0-beta.21424.3 + 6.0.0-beta.21424.3 + 6.0.0-beta.21424.3 diff --git a/eng/common/build.sh b/eng/common/build.sh index 9d3042a94..bc07a1c68 100755 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -187,7 +187,10 @@ function InitializeCustomToolset { } function Build { - TryLogClientIpAddress + + if [[ "$ci" == true ]]; then + TryLogClientIpAddress + fi InitializeToolset InitializeCustomToolset diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 7ffa3591e..7ab9baac5 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -83,7 +83,9 @@ try { } if ($restore) { - Try-LogClientIpAddress + if ($ci) { + Try-LogClientIpAddress + } Build 'Restore' } diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index e607aa436..56ee4a577 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -154,9 +154,6 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { return $global:_DotNetInstallDir } - # In case of network error, try to log the current IP for reference - Try-LogClientIpAddress - # Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism $env:DOTNET_MULTILEVEL_LOOKUP=0 @@ -166,6 +163,9 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { # Disable telemetry on CI. if ($ci) { $env:DOTNET_CLI_TELEMETRY_OPTOUT=1 + + # In case of network error, try to log the current IP for reference + Try-LogClientIpAddress } # Source Build uses DotNetCoreSdkDir variable diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 3c5f3a12c..41e323104 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -402,7 +402,7 @@ function StopProcesses { function TryLogClientIpAddress () { echo 'Attempting to log this client''s IP for Azure Package feed telemetry purposes' if command -v curl > /dev/null; then - curl -s 'http://co1.msedge.net/fdv2/diagnostics.aspx' | grep ' IP: ' + curl -s 'http://co1.msedge.net/fdv2/diagnostics.aspx' | grep ' IP: ' || true fi } diff --git a/global.json b/global.json index afde6d2be..06b54b345 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21420.4", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21420.4" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21424.3", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21424.3" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 79673f495c45a83914928ed18c82b98a1f07e021 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 18:14:30 +0000 Subject: [PATCH 0036/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.3 (#5164) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21423.17 to 7.0.0-alpha.1.21425.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d35b080eb..5ab203aa4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 56c318cccca5db1f05a6e4010d94537e59b1bf4a + 443f0223d7d0395fd017e8aeb02c6dcbad3b59f8 - + https://github.com/dotnet/winforms - 56c318cccca5db1f05a6e4010d94537e59b1bf4a + 443f0223d7d0395fd017e8aeb02c6dcbad3b59f8 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 - + https://github.com/dotnet/runtime - 96c179aadcf0a7df20d928536484551789fbaf50 + 3633a7d0930abaca701385c1059b80ca157e98c6 diff --git a/eng/Versions.props b/eng/Versions.props index ec3defb8a..05b9f09d9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.3 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 - 7.0.0-alpha.1.21423.17 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21425.1 From 957adf8aac7a72e025e26a13ce8b1b2b4ed7c0fc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 19:47:20 +0000 Subject: [PATCH 0037/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.4 (#5166) [main] Update dependencies from dotnet/winforms --- 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 5ab203aa4..8b1313603 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 443f0223d7d0395fd017e8aeb02c6dcbad3b59f8 + ba2f6111abc60faf6dd921f0a19ef5f9ef89ce4c - + https://github.com/dotnet/winforms - 443f0223d7d0395fd017e8aeb02c6dcbad3b59f8 + ba2f6111abc60faf6dd921f0a19ef5f9ef89ce4c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 05b9f09d9..a9ddc496f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.3 + 7.0.0-alpha.1.21425.4 From 805a118294bcbb6966e74da618f2087858a2352a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 20:55:59 +0000 Subject: [PATCH 0038/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.14 (#5174) [main] Update dependencies from dotnet/winforms --- 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 8b1313603..2f3d9ff9e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - ba2f6111abc60faf6dd921f0a19ef5f9ef89ce4c + afcb6fed7a0c46aa6687500fc9b3e674361e1c6d - + https://github.com/dotnet/winforms - ba2f6111abc60faf6dd921f0a19ef5f9ef89ce4c + afcb6fed7a0c46aa6687500fc9b3e674361e1c6d https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index a9ddc496f..8e37505dd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.4 + 7.0.0-alpha.1.21425.14 From 65cf4e10b84535fcf461014430911659844323aa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 23:19:12 +0000 Subject: [PATCH 0039/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.18 (#5181) [main] Update dependencies from dotnet/winforms --- 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 2f3d9ff9e..df90d92f5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - afcb6fed7a0c46aa6687500fc9b3e674361e1c6d + 83ea914331962f91c6db2225271f1e3880bfc261 - + https://github.com/dotnet/winforms - afcb6fed7a0c46aa6687500fc9b3e674361e1c6d + 83ea914331962f91c6db2225271f1e3880bfc261 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8e37505dd..fe6ec4c68 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.14 + 7.0.0-alpha.1.21425.18 From fc4b1ef192125388585ed4bdf8700b97f3ff4bb0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 01:28:35 +0000 Subject: [PATCH 0040/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.19 (#5183) [main] Update dependencies from dotnet/winforms --- 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 df90d92f5..2375e8674 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 83ea914331962f91c6db2225271f1e3880bfc261 + 08b29bcd36af441b653b89a32a9a4ce285a35ae9 - + https://github.com/dotnet/winforms - 83ea914331962f91c6db2225271f1e3880bfc261 + 08b29bcd36af441b653b89a32a9a4ce285a35ae9 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index fe6ec4c68..504c36b7e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.18 + 7.0.0-alpha.1.21425.19 From c1755693e49085270eb708fc7109652518a7400b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 01:54:04 +0000 Subject: [PATCH 0041/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.20 (#5184) [main] Update dependencies from dotnet/winforms --- 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 2375e8674..a0c75a30e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 08b29bcd36af441b653b89a32a9a4ce285a35ae9 + c47af80d7099109ca6a60d053d309180604021a9 - + https://github.com/dotnet/winforms - 08b29bcd36af441b653b89a32a9a4ce285a35ae9 + c47af80d7099109ca6a60d053d309180604021a9 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 504c36b7e..bdf19dee7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.19 + 7.0.0-alpha.1.21425.20 From 3d9a6f5434727a3f6f5fd3cc20314f518632eae7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 03:25:53 +0000 Subject: [PATCH 0042/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.23 (#5186) [main] Update dependencies from dotnet/winforms --- 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 a0c75a30e..aedcb5b5a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - c47af80d7099109ca6a60d053d309180604021a9 + 8b099dc847ccc153782b7c1591f677ff779ae9a8 - + https://github.com/dotnet/winforms - c47af80d7099109ca6a60d053d309180604021a9 + 8b099dc847ccc153782b7c1591f677ff779ae9a8 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index bdf19dee7..fa926b9f5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.20 + 7.0.0-alpha.1.21425.23 From 63b0767f1e6e3e8c763cce96efec2ed4f100f0b1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 06:18:05 +0000 Subject: [PATCH 0043/1033] Update dependencies from https://github.com/dotnet/winforms build 20210825.24 (#5187) [main] Update dependencies from dotnet/winforms --- 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 aedcb5b5a..a795c8243 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 8b099dc847ccc153782b7c1591f677ff779ae9a8 + b54f76a33bb0375ddb081d8d970676b31c4bae9f - + https://github.com/dotnet/winforms - 8b099dc847ccc153782b7c1591f677ff779ae9a8 + b54f76a33bb0375ddb081d8d970676b31c4bae9f https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index fa926b9f5..2dc4ffe3f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21425.23 + 7.0.0-alpha.1.21425.24 From 2fbab34b0606110c00ed158d57e12930f6152939 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 12:41:52 +0000 Subject: [PATCH 0044/1033] Update dependencies from https://github.com/dotnet/arcade build 20210825.3 (#5189) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 +++++++++---------- eng/Versions.props | 6 +++--- .../post-build/sourcelink-validation.ps1 | 8 ++++++-- global.json | 4 ++-- 4 files changed, 21 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a795c8243..bd917a4cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e + 809cbb58dea1d1e477ab0e12855d1758d50844a8 - + https://github.com/dotnet/arcade - 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e + 809cbb58dea1d1e477ab0e12855d1758d50844a8 - + https://github.com/dotnet/arcade - 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e + 809cbb58dea1d1e477ab0e12855d1758d50844a8 - + https://github.com/dotnet/arcade - 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e + 809cbb58dea1d1e477ab0e12855d1758d50844a8 - + https://github.com/dotnet/arcade - 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e + 809cbb58dea1d1e477ab0e12855d1758d50844a8 diff --git a/eng/Versions.props b/eng/Versions.props index 2dc4ffe3f..d8623491f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21424.3 - 6.0.0-beta.21424.3 - 6.0.0-beta.21424.3 + 6.0.0-beta.21425.3 + 6.0.0-beta.21425.3 + 6.0.0-beta.21425.3 diff --git a/eng/common/post-build/sourcelink-validation.ps1 b/eng/common/post-build/sourcelink-validation.ps1 index 3b6fc9533..e8ab29afe 100644 --- a/eng/common/post-build/sourcelink-validation.ps1 +++ b/eng/common/post-build/sourcelink-validation.ps1 @@ -107,8 +107,12 @@ $ValidatePackage = { try { $Uri = $Link -as [System.URI] - # Only GitHub links are valid - if ($Uri.AbsoluteURI -ne $null -and ($Uri.Host -match 'github' -or $Uri.Host -match 'githubusercontent')) { + if ($Link -match "submodules") { + # Skip submodule links until sourcelink properly handles submodules + $Status = 200 + } + elseif ($Uri.AbsoluteURI -ne $null -and ($Uri.Host -match 'github' -or $Uri.Host -match 'githubusercontent')) { + # Only GitHub links are valid $Status = (Invoke-WebRequest -Uri $Link -UseBasicParsing -Method HEAD -TimeoutSec 5).StatusCode } else { diff --git a/global.json b/global.json index 06b54b345..4bcd2072c 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21424.3", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21424.3" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21425.3", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21425.3" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 62fb6862f2914cd534beafe7ff7ce981267e466e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 13:47:00 +0000 Subject: [PATCH 0045/1033] Update dependencies from https://github.com/dotnet/winforms build 20210826.1 (#5190) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21425.1 to 7.0.0-alpha.1.21426.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bd917a4cf..4b06e4613 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - b54f76a33bb0375ddb081d8d970676b31c4bae9f + abd4bfb98df2e8676334fa35879f7a81436db7cf - + https://github.com/dotnet/winforms - b54f76a33bb0375ddb081d8d970676b31c4bae9f + abd4bfb98df2e8676334fa35879f7a81436db7cf - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d - + https://github.com/dotnet/runtime - 3633a7d0930abaca701385c1059b80ca157e98c6 + 48090398ac359a8862a87682b3265cb3e2f80a9d diff --git a/eng/Versions.props b/eng/Versions.props index d8623491f..5e604c26b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21425.24 + 7.0.0-alpha.1.21426.1 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 - 7.0.0-alpha.1.21425.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.1 From b0c8d68b4bbcc91326be70807dc332dec655f9f1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 22:39:41 +0000 Subject: [PATCH 0046/1033] Update dependencies from https://github.com/dotnet/winforms build 20210826.6 (#5194) [main] Update dependencies from dotnet/winforms --- 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 4b06e4613..4701baa20 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - abd4bfb98df2e8676334fa35879f7a81436db7cf + 3fd722a7a616479def0d9d2ea4e4607b2492ac83 - + https://github.com/dotnet/winforms - abd4bfb98df2e8676334fa35879f7a81436db7cf + 3fd722a7a616479def0d9d2ea4e4607b2492ac83 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5e604c26b..f55748381 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21426.6 From 7d2a1f384f674acebb4aa3fef8727680e6542d57 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 12:37:14 +0000 Subject: [PATCH 0047/1033] Update dependencies from https://github.com/dotnet/arcade build 20210826.2 (#5196) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4701baa20..0421b8354 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 809cbb58dea1d1e477ab0e12855d1758d50844a8 + e737b1f920e7e1a37f99dae198bbd957c293b9c8 - + https://github.com/dotnet/arcade - 809cbb58dea1d1e477ab0e12855d1758d50844a8 + e737b1f920e7e1a37f99dae198bbd957c293b9c8 - + https://github.com/dotnet/arcade - 809cbb58dea1d1e477ab0e12855d1758d50844a8 + e737b1f920e7e1a37f99dae198bbd957c293b9c8 - + https://github.com/dotnet/arcade - 809cbb58dea1d1e477ab0e12855d1758d50844a8 + e737b1f920e7e1a37f99dae198bbd957c293b9c8 - + https://github.com/dotnet/arcade - 809cbb58dea1d1e477ab0e12855d1758d50844a8 + e737b1f920e7e1a37f99dae198bbd957c293b9c8 diff --git a/eng/Versions.props b/eng/Versions.props index f55748381..bf5fdd4b4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21425.3 - 6.0.0-beta.21425.3 - 6.0.0-beta.21425.3 + 6.0.0-beta.21426.2 + 6.0.0-beta.21426.2 + 6.0.0-beta.21426.2 diff --git a/global.json b/global.json index 4bcd2072c..56355f57a 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21425.3", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21425.3" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21426.2", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21426.2" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From be47aee7182911c84bdc2e7f29139ed75681adfb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 13:49:22 +0000 Subject: [PATCH 0048/1033] Update dependencies from https://github.com/dotnet/winforms build 20210827.3 (#5197) [main] Update dependencies from dotnet/winforms --- 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 0421b8354..602eb442d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 3fd722a7a616479def0d9d2ea4e4607b2492ac83 + 3a0f3dcc4d6377426c276e59b23bf27412540434 - + https://github.com/dotnet/winforms - 3fd722a7a616479def0d9d2ea4e4607b2492ac83 + 3a0f3dcc4d6377426c276e59b23bf27412540434 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index bf5fdd4b4..10f8bfd1b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21426.6 + 7.0.0-alpha.1.21427.3 From efdfb76828eb0cbeb1d639ccf8e2cc6bcb41d91b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 14:12:29 +0000 Subject: [PATCH 0049/1033] Update dependencies from https://github.com/dotnet/winforms build 20210827.4 (#5198) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21426.1 to 7.0.0-alpha.1.21427.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 76 ++++++++++++++++++++--------------------- eng/Versions.props | 34 +++++++++--------- 2 files changed, 55 insertions(+), 55 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 602eb442d..8bd081214 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,85 +1,85 @@ - + https://github.com/dotnet/winforms - 3a0f3dcc4d6377426c276e59b23bf27412540434 + 4e37c9231420d062d8ff78c9871862140c71f42c - + https://github.com/dotnet/winforms - 3a0f3dcc4d6377426c276e59b23bf27412540434 + 4e37c9231420d062d8ff78c9871862140c71f42c - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - + https://github.com/dotnet/runtime - 48090398ac359a8862a87682b3265cb3e2f80a9d + 3cd4e393d9cb69bcb6f53db80998b6c45693e117 diff --git a/eng/Versions.props b/eng/Versions.props index 10f8bfd1b..1459d60c5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,38 +4,38 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.3 + 7.0.0-alpha.1.21427.4 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 - 7.0.0-alpha.1.21426.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21427.1 From e033acbda7dff387bd23a0a2b621ef7613ad1a0a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 19:07:56 +0000 Subject: [PATCH 0050/1033] Update dependencies from https://github.com/dotnet/winforms build 20210827.9 (#5202) [main] Update dependencies from dotnet/winforms --- 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 8bd081214..c94ac3ad5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 4e37c9231420d062d8ff78c9871862140c71f42c + 8f3f971fcf4dbbffab9751ae95aecc24a8ecbcf2 - + https://github.com/dotnet/winforms - 4e37c9231420d062d8ff78c9871862140c71f42c + 8f3f971fcf4dbbffab9751ae95aecc24a8ecbcf2 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1459d60c5..0810b02bb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21427.4 + 7.0.0-alpha.1.21427.9 From db0de4fe0de64b17d2ef75ff9cdaef75f7734364 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 20:30:41 +0000 Subject: [PATCH 0051/1033] Update dependencies from https://github.com/dotnet/winforms build 20210827.14 (#5205) [main] Update dependencies from dotnet/winforms --- 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 c94ac3ad5..c2d76ca7d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 8f3f971fcf4dbbffab9751ae95aecc24a8ecbcf2 + 469246369a3ad1e9607b20c0e24bfd230abe339b - + https://github.com/dotnet/winforms - 8f3f971fcf4dbbffab9751ae95aecc24a8ecbcf2 + 469246369a3ad1e9607b20c0e24bfd230abe339b https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 0810b02bb..cd4efc7cc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21427.9 + 7.0.0-alpha.1.21427.14 From 3390df7638a3fab1c23373b7cc9904677e65be2b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 20:56:30 +0000 Subject: [PATCH 0052/1033] Update dependencies from https://github.com/dotnet/winforms build 20210827.15 (#5206) [main] Update dependencies from dotnet/winforms --- 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 c2d76ca7d..147a0d9a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 469246369a3ad1e9607b20c0e24bfd230abe339b + 3f7166098be6bc3f97318f9202258ef8095ee543 - + https://github.com/dotnet/winforms - 469246369a3ad1e9607b20c0e24bfd230abe339b + 3f7166098be6bc3f97318f9202258ef8095ee543 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index cd4efc7cc..ca92ab6da 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21427.14 + 7.0.0-alpha.1.21427.15 From 7b7a5309f62d86aa5bbe6a0692febf2d4bae8f99 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 28 Aug 2021 12:40:53 +0000 Subject: [PATCH 0053/1033] Update dependencies from https://github.com/dotnet/arcade build 20210827.6 (#5210) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- eng/common/templates/job/job.yml | 2 +- global.json | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 147a0d9a5..54ec98628 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - e737b1f920e7e1a37f99dae198bbd957c293b9c8 + 474307e526160c813c9fd58060eb8356ccca6099 - + https://github.com/dotnet/arcade - e737b1f920e7e1a37f99dae198bbd957c293b9c8 + 474307e526160c813c9fd58060eb8356ccca6099 - + https://github.com/dotnet/arcade - e737b1f920e7e1a37f99dae198bbd957c293b9c8 + 474307e526160c813c9fd58060eb8356ccca6099 - + https://github.com/dotnet/arcade - e737b1f920e7e1a37f99dae198bbd957c293b9c8 + 474307e526160c813c9fd58060eb8356ccca6099 - + https://github.com/dotnet/arcade - e737b1f920e7e1a37f99dae198bbd957c293b9c8 + 474307e526160c813c9fd58060eb8356ccca6099 diff --git a/eng/Versions.props b/eng/Versions.props index ca92ab6da..9c2e812a3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21426.2 - 6.0.0-beta.21426.2 - 6.0.0-beta.21426.2 + 6.0.0-beta.21427.6 + 6.0.0-beta.21427.6 + 6.0.0-beta.21427.6 diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 866967934..37dceb1ba 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -103,7 +103,7 @@ jobs: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - - task: MicroBuildSigningPlugin@2 + - task: MicroBuildSigningPlugin@3 displayName: Install MicroBuild plugin inputs: signType: $(_SignType) diff --git a/global.json b/global.json index 56355f57a..03422258c 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21426.2", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21426.2" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21427.6", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21427.6" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 6f6f1bc51e97bf6ae2c6db76078cdb953fd3eef9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 31 Aug 2021 12:37:03 +0000 Subject: [PATCH 0054/1033] Update dependencies from https://github.com/dotnet/arcade build 20210830.1 (#5228) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 54ec98628..ed68f63f0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 474307e526160c813c9fd58060eb8356ccca6099 + e0260cb677c04cb0244aad7537c33bec4adce422 - + https://github.com/dotnet/arcade - 474307e526160c813c9fd58060eb8356ccca6099 + e0260cb677c04cb0244aad7537c33bec4adce422 - + https://github.com/dotnet/arcade - 474307e526160c813c9fd58060eb8356ccca6099 + e0260cb677c04cb0244aad7537c33bec4adce422 - + https://github.com/dotnet/arcade - 474307e526160c813c9fd58060eb8356ccca6099 + e0260cb677c04cb0244aad7537c33bec4adce422 - + https://github.com/dotnet/arcade - 474307e526160c813c9fd58060eb8356ccca6099 + e0260cb677c04cb0244aad7537c33bec4adce422 diff --git a/eng/Versions.props b/eng/Versions.props index 9c2e812a3..5b2d295bf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21427.6 - 6.0.0-beta.21427.6 - 6.0.0-beta.21427.6 + 6.0.0-beta.21430.1 + 6.0.0-beta.21430.1 + 6.0.0-beta.21430.1 diff --git a/global.json b/global.json index 03422258c..7520c6c34 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21427.6", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21427.6" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21430.1", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21430.1" }, "sdk": { "version": "6.0.100-rc.1.21416.15" From 6186c4b9af75bd24ea504170f30b3a5a16a276f6 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Wed, 1 Sep 2021 17:35:18 -0700 Subject: [PATCH 0055/1033] Localized file check-in by OneLocBuild Task: Build definition ID 217: Build ID 1331085 (#5229) * Localized file check-in by OneLocBuild Task * Localized file check-in by OneLocBuild Task --- .../localize/templatestrings.cs.json | 28 ++++++++--------- .../localize/templatestrings.de.json | 28 ++++++++--------- .../localize/templatestrings.es.json | 28 ++++++++--------- .../localize/templatestrings.fr.json | 28 ++++++++--------- .../localize/templatestrings.it.json | 28 ++++++++--------- .../localize/templatestrings.ja.json | 28 ++++++++--------- .../localize/templatestrings.ko.json | 28 ++++++++--------- .../localize/templatestrings.pl.json | 28 ++++++++--------- .../localize/templatestrings.pt-BR.json | 28 ++++++++--------- .../localize/templatestrings.ru.json | 30 +++++++++---------- .../localize/templatestrings.tr.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hans.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hant.json | 28 ++++++++--------- .../localize/templatestrings.cs.json | 26 ++++++++-------- .../localize/templatestrings.de.json | 26 ++++++++-------- .../localize/templatestrings.es.json | 26 ++++++++-------- .../localize/templatestrings.fr.json | 26 ++++++++-------- .../localize/templatestrings.it.json | 26 ++++++++-------- .../localize/templatestrings.ja.json | 26 ++++++++-------- .../localize/templatestrings.ko.json | 26 ++++++++-------- .../localize/templatestrings.pl.json | 26 ++++++++-------- .../localize/templatestrings.pt-BR.json | 26 ++++++++-------- .../localize/templatestrings.ru.json | 28 ++++++++--------- .../localize/templatestrings.tr.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hans.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hant.json | 26 ++++++++-------- .../localize/templatestrings.cs.json | 28 ++++++++--------- .../localize/templatestrings.de.json | 28 ++++++++--------- .../localize/templatestrings.es.json | 28 ++++++++--------- .../localize/templatestrings.fr.json | 28 ++++++++--------- .../localize/templatestrings.it.json | 28 ++++++++--------- .../localize/templatestrings.ja.json | 28 ++++++++--------- .../localize/templatestrings.ko.json | 28 ++++++++--------- .../localize/templatestrings.pl.json | 28 ++++++++--------- .../localize/templatestrings.pt-BR.json | 28 ++++++++--------- .../localize/templatestrings.ru.json | 30 +++++++++---------- .../localize/templatestrings.tr.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hans.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hant.json | 28 ++++++++--------- .../localize/templatestrings.cs.json | 26 ++++++++-------- .../localize/templatestrings.de.json | 26 ++++++++-------- .../localize/templatestrings.es.json | 26 ++++++++-------- .../localize/templatestrings.fr.json | 26 ++++++++-------- .../localize/templatestrings.it.json | 26 ++++++++-------- .../localize/templatestrings.ja.json | 26 ++++++++-------- .../localize/templatestrings.ko.json | 26 ++++++++-------- .../localize/templatestrings.pl.json | 26 ++++++++-------- .../localize/templatestrings.pt-BR.json | 26 ++++++++-------- .../localize/templatestrings.ru.json | 28 ++++++++--------- .../localize/templatestrings.tr.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hans.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hant.json | 26 ++++++++-------- .../localize/templatestrings.cs.json | 28 ++++++++--------- .../localize/templatestrings.de.json | 28 ++++++++--------- .../localize/templatestrings.es.json | 28 ++++++++--------- .../localize/templatestrings.fr.json | 28 ++++++++--------- .../localize/templatestrings.it.json | 28 ++++++++--------- .../localize/templatestrings.ja.json | 28 ++++++++--------- .../localize/templatestrings.ko.json | 28 ++++++++--------- .../localize/templatestrings.pl.json | 28 ++++++++--------- .../localize/templatestrings.pt-BR.json | 28 ++++++++--------- .../localize/templatestrings.ru.json | 30 +++++++++---------- .../localize/templatestrings.tr.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hans.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hant.json | 28 ++++++++--------- .../localize/templatestrings.cs.json | 26 ++++++++-------- .../localize/templatestrings.de.json | 26 ++++++++-------- .../localize/templatestrings.es.json | 26 ++++++++-------- .../localize/templatestrings.fr.json | 26 ++++++++-------- .../localize/templatestrings.it.json | 26 ++++++++-------- .../localize/templatestrings.ja.json | 26 ++++++++-------- .../localize/templatestrings.ko.json | 26 ++++++++-------- .../localize/templatestrings.pl.json | 26 ++++++++-------- .../localize/templatestrings.pt-BR.json | 26 ++++++++-------- .../localize/templatestrings.ru.json | 28 ++++++++--------- .../localize/templatestrings.tr.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hans.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hant.json | 26 ++++++++-------- .../localize/templatestrings.cs.json | 28 ++++++++--------- .../localize/templatestrings.de.json | 28 ++++++++--------- .../localize/templatestrings.es.json | 28 ++++++++--------- .../localize/templatestrings.fr.json | 28 ++++++++--------- .../localize/templatestrings.it.json | 28 ++++++++--------- .../localize/templatestrings.ja.json | 28 ++++++++--------- .../localize/templatestrings.ko.json | 28 ++++++++--------- .../localize/templatestrings.pl.json | 28 ++++++++--------- .../localize/templatestrings.pt-BR.json | 28 ++++++++--------- .../localize/templatestrings.ru.json | 30 +++++++++---------- .../localize/templatestrings.tr.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hans.json | 28 ++++++++--------- .../localize/templatestrings.zh-Hant.json | 28 ++++++++--------- .../localize/templatestrings.cs.json | 26 ++++++++-------- .../localize/templatestrings.de.json | 26 ++++++++-------- .../localize/templatestrings.es.json | 26 ++++++++-------- .../localize/templatestrings.fr.json | 26 ++++++++-------- .../localize/templatestrings.it.json | 26 ++++++++-------- .../localize/templatestrings.ja.json | 26 ++++++++-------- .../localize/templatestrings.ko.json | 26 ++++++++-------- .../localize/templatestrings.pl.json | 26 ++++++++-------- .../localize/templatestrings.pt-BR.json | 26 ++++++++-------- .../localize/templatestrings.ru.json | 28 ++++++++--------- .../localize/templatestrings.tr.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hans.json | 26 ++++++++-------- .../localize/templatestrings.zh-Hant.json | 26 ++++++++-------- 104 files changed, 1412 insertions(+), 1412 deletions(-) diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.cs.json index edc6b1ef5..d44b9cfdf 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.cs.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplikace WPF", + "description": "Projekt pro vytvoÅ™ení aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "symbols/Nullable/description": "UrÄuje, zda se mají pro tento projekt povolit odkazové typy s možnou hodnotou null.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e MainWindow.xaml v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.de.json index edc6b1ef5..38aec73cc 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.de.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF-Anwendung", + "description": "Ein Projekt zum Erstellen einer .NET WPF-Anwendung", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "symbols/Nullable/description": "Gibt an, ob Nullable-Verweistypen für dieses Projekt aktiviert werden sollen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet MainWindow.xaml im Editor." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.es.json index edc6b1ef5..62b6d49de 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.es.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplicación WPF", + "description": "Proyecto para crear una aplicación WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "symbols/Nullable/description": "Indica si se deben habilitar tipos de referencia que aceptan valores NULL para este proyecto.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre MainWindow.xaml en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.fr.json index edc6b1ef5..9b42056f1 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.fr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Application WPF", + "description": "Projet de création d'une application WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "symbols/Nullable/description": "Indique s’il faut activer les types référence Nullable pour ce projet.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre MainWindow. xaml dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.it.json index edc6b1ef5..a66613263 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.it.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Applicazione WPF", + "description": "Progetto per la creazione di un'applicazione WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "symbols/Nullable/description": "Indica se abilitare i tipi di riferimento che ammettono i valori Null per questo progetto.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre MainWindow. XAML nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ja.json index edc6b1ef5..af6976c02 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ja.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF アプリケーション", + "description": ".NET WPF アプリケーションを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "symbols/Nullable/description": "ã“ã®ãƒ—ロジェクト㮠null 許容å‚照型を有効ã«ã™ã‚‹ã‹ã©ã†ã‹ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠MainWindow.xaml ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ko.json index edc6b1ef5..d2ef430f4 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ko.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 애플리케ì´ì…˜", + "description": ".NET WPF 애플리케ì´ì…˜ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "symbols/Nullable/description": "ì´ í”„ë¡œì íŠ¸ì— 대해 nullable 참조 형ì‹ì„ 사용할지 여부를 지정합니다.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ MainWindow.xamlì„ ì—½ë‹ˆë‹¤." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pl.json index edc6b1ef5..d65f14667 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pl.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplikacja WPF", + "description": "Projekt sÅ‚użący do tworzenia aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "symbols/Nullable/description": "OkreÅ›la, czy w przypadku tego projektu majÄ… być wÅ‚Ä…czane typy pustych referencji.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik MainWindow.xaml w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pt-BR.json index edc6b1ef5..4f35820f5 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.pt-BR.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplicativo WPF", + "description": "Um projeto para a criação de um aplicativo .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "symbols/Nullable/description": "Se permitir tipos de referência anuláveis para este projeto.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abrir o MainWindow.xaml no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ru.json index edc6b1ef5..394f4610f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.ru.json @@ -1,17 +1,17 @@ { - "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "author": "МайкроÑофт", + "name": "Приложение WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ WPF .NET", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "symbols/Nullable/description": "Следует ли включить ÑÑылочные типы, допуÑкающие значение null, Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открывает MainWindow.xaml в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.tr.json index edc6b1ef5..3cc1fc6f1 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.tr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF Uygulaması", + "description": ".NET WPF Uygulaması oluÅŸturmaya yönelik proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "symbols/Nullable/description": "Bu proje için null atanabilir baÅŸvuru türlerinin etkinleÅŸtirilip etkinleÅŸtirilmeyeceÄŸini belirtir.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide MainWindow.xaml açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hans.json index edc6b1ef5..a37572a5d 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hans.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 应用程åº", + "description": "用于创建 .NET WPF 应用程åºçš„项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "symbols/Nullable/description": "是å¦ä¸ºæ­¤é¡¹ç›®å¯ç”¨å¯ä¸º null 的引用类型。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 MainWindow.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hant.json index edc6b1ef5..58abaee40 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-CSharp/.template.config/localize/templatestrings.zh-Hant.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 應用程å¼", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹ .NET WPF 應用程å¼", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "symbols/Nullable/description": "是å¦è¦å•Ÿç”¨æ­¤å°ˆæ¡ˆçš„å¯ null åƒè€ƒé¡žåž‹ã€‚", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 MainWindow.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.cs.json index df226778d..50fb33b11 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.cs.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplikace WPF", + "description": "Projekt pro vytvoÅ™ení aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e MainWindow.xaml v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.de.json index df226778d..11e4dc101 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF-Anwendung", + "description": "Ein Projekt zum Erstellen einer .NET WPF-Anwendung", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet MainWindow.xaml im Editor." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.es.json index df226778d..ea2786175 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.es.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplicación WPF", + "description": "Proyecto para crear una aplicación WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre MainWindow.xaml en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.fr.json index df226778d..bc789624e 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.fr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Application WPF", + "description": "Projet de création d'une application WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre MainWindow. xaml dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.it.json index df226778d..dd239432a 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.it.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Applicazione WPF", + "description": "Progetto per la creazione di un'applicazione WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre MainWindow. XAML nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ja.json index df226778d..af688c0ec 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ja.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF アプリケーション", + "description": ".NET WPF アプリケーションを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠MainWindow.xaml ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ko.json index df226778d..34a71612f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ko.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 애플리케ì´ì…˜", + "description": ".NET WPF 애플리케ì´ì…˜ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ MainWindow.xamlì„ ì—½ë‹ˆë‹¤." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pl.json index df226778d..35ac204b5 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pl.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplikacja WPF", + "description": "Projekt sÅ‚użący do tworzenia aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik MainWindow.xaml w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pt-BR.json index df226778d..3b5c261b3 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.pt-BR.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "Aplicativo WPF", + "description": "Um projeto para a criação de um aplicativo .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abrir o MainWindow.xaml no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ru.json index df226778d..96bc53bf7 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.ru.json @@ -1,16 +1,16 @@ { - "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "author": "МайкроÑофт", + "name": "Приложение WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ WPF .NET", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открывает MainWindow.xaml в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.tr.json index df226778d..55ed8e204 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF Uygulaması", + "description": ".NET WPF Uygulaması oluÅŸturmaya yönelik proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide MainWindow.xaml açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json index df226778d..cc9152c5b 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 应用程åº", + "description": "用于创建 .NET WPF 应用程åºçš„项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 MainWindow.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json index df226778d..a27039c8b 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfApplication-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Application", - "description": "A project for creating a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens MainWindow.xaml in the editor" + "name": "WPF 應用程å¼", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹ .NET WPF 應用程å¼", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 MainWindow.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.cs.json index 6e96122a8..d30bb96bc 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.cs.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Knihovna tříd WPF", + "description": "Projekt pro vytvoÅ™ení knihovny tříd urÄené pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "symbols/Nullable/description": "UrÄuje, zda se mají pro tento projekt povolit odkazové typy s možnou hodnotou null.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e Class1.cs v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.de.json index 6e96122a8..f9eaa6dce 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.de.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF-Klassenbibliothek", + "description": "Ein Projekt zum Erstellen einer Klassenbibliothek für eine .NET WPF-Anwendung", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "symbols/Nullable/description": "Gibt an, ob Nullable-Verweistypen für dieses Projekt aktiviert werden sollen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet „Class1.cs“ im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.es.json index 6e96122a8..950d14e1f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.es.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Biblioteca de clases de WPF", + "description": "Proyecto para crear una biblioteca de clases destinada a una aplicación WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "symbols/Nullable/description": "Indica si se deben habilitar tipos de referencia que aceptan valores NULL para este proyecto.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre Class1.cs en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.fr.json index 6e96122a8..c18c096b8 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.fr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Bibliothèque de classes WPF", + "description": "Projet de création d'une bibliothèque de classes qui cible une application WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "symbols/Nullable/description": "Indique s’il faut activer les types référence Nullable pour ce projet.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre Class1.cs dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.it.json index 6e96122a8..2500baff1 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.it.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Libreria di classi WPF", + "description": "Progetto per la creazione di una libreria di classi destinata a un'applicazione WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "symbols/Nullable/description": "Indica se abilitare i tipi di riferimento che ammettono i valori Null per questo progetto.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre Class1.cs nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ja.json index 6e96122a8..de2c6a82f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ja.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF クラス ライブラリ", + "description": ".NET WPF アプリケーションを対象ã¨ã™ã‚‹ã‚¯ãƒ©ã‚¹ ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "symbols/Nullable/description": "ã“ã®ãƒ—ロジェクト㮠null 許容å‚照型を有効ã«ã™ã‚‹ã‹ã©ã†ã‹ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠Class1.cs ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ko.json index 6e96122a8..7f7f98d6e 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ko.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF í´ëž˜ìŠ¤ ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET Core WPF 애플리케ì´ì…˜ì„ 대ìƒìœ¼ë¡œ 하는 í´ëž˜ìŠ¤ ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "symbols/Nullable/description": "ì´ í”„ë¡œì íŠ¸ì— 대해 nullable 참조 형ì‹ì„ 사용할지 여부를 지정합니다.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ Class1.cs를 엽니다" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pl.json index 6e96122a8..35345e07e 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pl.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Biblioteka klas WPF", + "description": "Projekt sÅ‚użący do tworzenia biblioteki klas przeznaczonej dla aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "symbols/Nullable/description": "OkreÅ›la, czy w przypadku tego projektu majÄ… być wÅ‚Ä…czane typy pustych referencji.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik Class1.cs w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json index 6e96122a8..2b2bad9ca 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "Biblioteca de Classes WPF", + "description": "Um projeto para a criação de uma biblioteca de classes voltada para um aplicativo .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "symbols/Nullable/description": "Se permitir tipos de referência anuláveis para este projeto.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abrir Class1.cs no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ru.json index 6e96122a8..0669f0a5c 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.ru.json @@ -1,17 +1,17 @@ { - "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "author": "МайкроÑофт", + "name": "Библиотека клаÑÑов WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ клаÑÑов, иÑпользующей приложение WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "symbols/Nullable/description": "Следует ли включить ÑÑылочные типы, допуÑкающие значение null, Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открывает файл Class1.cs в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.tr.json index 6e96122a8..3d7c6de2d 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.tr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF Sınıf Kitaplığı", + "description": "Bir .NET WPF Uygulamasını hedefleyen bir sınıf kitaplığı oluÅŸturmaya yönelik bir proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "symbols/Nullable/description": "Bu proje için null atanabilir baÅŸvuru türlerinin etkinleÅŸtirilip etkinleÅŸtirilmeyeceÄŸini belirtir.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide Class1.cs dosyasını açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json index 6e96122a8..57eafeebd 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF 类库", + "description": "用于创建目标为 .NET WPF 应用程åºçš„类库的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "symbols/Nullable/description": "是å¦ä¸ºæ­¤é¡¹ç›®å¯ç”¨å¯ä¸º null 的引用类型。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 Class1.cs" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json index 6e96122a8..125e75066 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.cs in the editor" + "name": "WPF 類別庫", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„類別庫", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "symbols/Nullable/description": "是å¦è¦å•Ÿç”¨æ­¤å°ˆæ¡ˆçš„å¯ null åƒè€ƒé¡žåž‹ã€‚", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 Class1.cs" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json index 1b9f8c232..f88f69a24 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Knihovna tříd WPF", + "description": "Projekt pro vytvoÅ™ení knihovny tříd urÄené pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e Class1.vb v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.de.json index 1b9f8c232..a4c2ba3ba 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF-Klassenbibliothek", + "description": "Ein Projekt zum Erstellen einer Klassenbibliothek für eine .NET WPF-Anwendung", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet „Class1.vb“ im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.es.json index 1b9f8c232..5a2ad9fdf 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.es.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Biblioteca de clases de WPF", + "description": "Proyecto para crear una biblioteca de clases destinada a una aplicación WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre Class1.vb en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json index 1b9f8c232..75c81f809 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Bibliothèque de classes WPF", + "description": "Projet de création d'une bibliothèque de classes qui cible une application WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre Class1.vb dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.it.json index 1b9f8c232..da1d78e63 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.it.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Libreria di classi WPF", + "description": "Progetto per la creazione di una libreria di classi destinata a un'applicazione WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre Class1.vb nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json index 1b9f8c232..aaf8f5358 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF クラス ライブラリ", + "description": ".NET WPF アプリケーションを対象ã¨ã™ã‚‹ã‚¯ãƒ©ã‚¹ ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠Class1.vb ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json index 1b9f8c232..15d33a931 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF í´ëž˜ìŠ¤ ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET Core WPF 애플리케ì´ì…˜ì„ 대ìƒìœ¼ë¡œ 하는 í´ëž˜ìŠ¤ ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ Class1.vb를 엽니다" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json index 1b9f8c232..b12e946c1 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Biblioteka klas WPF", + "description": "Projekt sÅ‚użący do tworzenia biblioteki klas przeznaczonej dla aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik Class1.vb w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json index 1b9f8c232..828d193d0 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "Biblioteca de Classes WPF", + "description": "Um projeto para a criação de uma biblioteca de classes voltada para um aplicativo .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abre Class1.vb no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json index 1b9f8c232..0439bfd39 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json @@ -1,16 +1,16 @@ { - "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "author": "МайкроÑофт", + "name": "Библиотека клаÑÑов WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ клаÑÑов, иÑпользующей приложение WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открывает файл Class1.vb в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json index 1b9f8c232..625539c95 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF Sınıf Kitaplığı", + "description": "Bir .NET WPF Uygulamasını hedefleyen bir sınıf kitaplığı oluÅŸturmaya yönelik bir proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide Class1.vb dosyasını açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json index 1b9f8c232..b4fe71ff3 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF 类库", + "description": "用于创建目标为 .NET WPF 应用程åºçš„类库的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 Class1.vb" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json index 1b9f8c232..81c0f684f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfClassLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Class Library", - "description": "A project for creating a class library that targets a .NET WPF Application", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens Class1.vb in the editor" + "name": "WPF 類別庫", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„類別庫", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 Class1.vb" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json index b8332cd87..08a278f91 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Knihovna vlastních ovládacích prvků WPF", + "description": "Projekt pro vytvoÅ™ení knihovny vlastních ovládacích prvků pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "symbols/Nullable/description": "UrÄuje, zda se mají pro tento projekt povolit odkazové typy s možnou hodnotou null.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e CustomControl1.cs v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.de.json index b8332cd87..f43120532 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.de.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Bibliothek benutzerdefinierter WPF-Steuerelemente", + "description": "Ein Projekt zum Erstellen einer Bibliothek benutzerdefinierter Steuerelemente für .NET WPF-Anwendungen", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "symbols/Nullable/description": "Gibt an, ob Nullable-Verweistypen für dieses Projekt aktiviert werden sollen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet \"CustomControl1.cs\" im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.es.json index b8332cd87..7629030af 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.es.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Biblioteca de control personalizada de WPF", + "description": "Proyecto para crear una biblioteca de control personalizada para aplicaciones WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "symbols/Nullable/description": "Indica si se deben habilitar tipos de referencia que aceptan valores NULL para este proyecto.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre CustomControl1.cs en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json index b8332cd87..56811e3cd 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Bibliothèque de contrôles personnalisés WPF", + "description": "Projet de création d'une bibliothèque de contrôles personnalisés pour les applications WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "symbols/Nullable/description": "Indique s’il faut activer les types référence Nullable pour ce projet.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre CustomControl1.cs dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.it.json index b8332cd87..cf0e30afa 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.it.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Libreria di controlli personalizzati WPF", + "description": "Progetto per la creazione di una libreria di controlli personalizzati per applicazioni WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "symbols/Nullable/description": "Indica se abilitare i tipi di riferimento che ammettono i valori Null per questo progetto.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre CustomControl1.cs nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json index b8332cd87..25389c31f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "WPF カスタム コントロール ライブラリ", + "description": ".NET WPF アプリケーション用ã®ã‚«ã‚¹ã‚¿ãƒ  コントロール ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "symbols/Nullable/description": "ã“ã®ãƒ—ロジェクト㮠null 許容å‚照型を有効ã«ã™ã‚‹ã‹ã©ã†ã‹ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠CustomControl1.cs ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json index b8332cd87..9cd2220e3 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "WPF ì‚¬ìš©ìž ì§€ì • 컨트롤 ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET Core WPF 애플리케ì´ì…˜ìš© ì‚¬ìš©ìž ì§€ì • 컨트롤 ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "symbols/Nullable/description": "ì´ í”„ë¡œì íŠ¸ì— 대해 nullable 참조 형ì‹ì„ 사용할지 여부를 지정합니다.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ CustomControl1.cs를 엽니다." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json index b8332cd87..d611338b9 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Biblioteka niestandardowych kontrolek WPF", + "description": "Projekt sÅ‚użący do tworzenia niestandardowej biblioteki kontrolek na potrzeby aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "symbols/Nullable/description": "OkreÅ›la, czy w przypadku tego projektu majÄ… być wÅ‚Ä…czane typy pustych referencji.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik CustomControl1.cs w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json index b8332cd87..2660bf79e 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "Biblioteca de Controles Personalizados do WPF", + "description": "Um projeto para a criação de uma biblioteca de controles personalizada para aplicativos .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "symbols/Nullable/description": "Se permitir tipos de referência anuláveis para este projeto.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abre o CustomControl1.cs no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json index b8332cd87..c52b3fef1 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json @@ -1,17 +1,17 @@ { - "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "author": "МайкроÑофт", + "name": "Библиотека наÑтраиваемых Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ наÑтраиваемых Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ð¹ WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "symbols/Nullable/description": "Следует ли включить ÑÑылочные типы, допуÑкающие значение null, Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открытие CustomControl1.cs в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json index b8332cd87..20c748c00 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "WPF Özel Denetim Kitaplığı", + "description": ".NET WPF Uygulamaları için özel bir denetim kitaplığı oluÅŸturmaya yönelik bir proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "symbols/Nullable/description": "Bu proje için null atanabilir baÅŸvuru türlerinin etkinleÅŸtirilip etkinleÅŸtirilmeyeceÄŸini belirtir.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide CustomControl1.cs'i açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json index b8332cd87..cd693d6f4 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "WPF 自定义控件库", + "description": "用于为 .NET WPF 应用程åºåˆ›å»ºè‡ªå®šä¹‰æŽ§ä»¶åº“的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "symbols/Nullable/description": "是å¦ä¸ºæ­¤é¡¹ç›®å¯ç”¨å¯ä¸º null 的引用类型。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 CustomControl1.cs" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json index b8332cd87..37fd60107 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.cs in the editor" + "name": "WPF 自訂控制項程å¼åº«", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„自訂控制項程å¼åº«", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "symbols/Nullable/description": "是å¦è¦å•Ÿç”¨æ­¤å°ˆæ¡ˆçš„å¯ null åƒè€ƒé¡žåž‹ã€‚", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 CustomControl1.cs" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json index 0b6a31ab3..d46d6029b 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Knihovna vlastních ovládacích prvků WPF", + "description": "Projekt pro vytvoÅ™ení knihovny vlastních ovládacích prvků pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e CustomControl1.vb v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json index 0b6a31ab3..691d9ac77 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Bibliothek benutzerdefinierter WPF-Steuerelemente", + "description": "Ein Projekt zum Erstellen einer Bibliothek benutzerdefinierter Steuerelemente für .NET WPF-Anwendungen", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet \"CustomControl1.vb\" im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json index 0b6a31ab3..a2a6194fc 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Biblioteca de control personalizada de WPF", + "description": "Proyecto para crear una biblioteca de control personalizada para aplicaciones WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre CustomControl1.vb en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json index 0b6a31ab3..bdbba6d50 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Bibliothèque de contrôles personnalisés WPF", + "description": "Projet de création d'une bibliothèque de contrôles personnalisés pour les applications WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre CustomControl1.vb dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json index 0b6a31ab3..142cd92c8 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Libreria di controlli personalizzati WPF", + "description": "Progetto per la creazione di una libreria di controlli personalizzati per applicazioni WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre CustomControl1.vb nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json index 0b6a31ab3..73877e0df 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "WPF カスタム コントロール ライブラリ", + "description": ".NET WPF アプリケーション用ã®ã‚«ã‚¹ã‚¿ãƒ  コントロール ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠CustomControl1.vb ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json index 0b6a31ab3..4e5d048b9 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "WPF ì‚¬ìš©ìž ì§€ì • 컨트롤 ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET Core WPF 애플리케ì´ì…˜ìš© ì‚¬ìš©ìž ì§€ì • 컨트롤 ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ CustomControl1.vb를 엽니다." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json index 0b6a31ab3..954b9addd 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Biblioteka niestandardowych kontrolek WPF", + "description": "Projekt sÅ‚użący do tworzenia niestandardowej biblioteki kontrolek na potrzeby aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik CustomControl1.vb w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json index 0b6a31ab3..79ce7a475 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "Biblioteca de Controles Personalizados do WPF", + "description": "Um projeto para a criação de uma biblioteca de controles personalizada para aplicativos .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abre o CustomControl1.vb no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json index 0b6a31ab3..6e2031773 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json @@ -1,16 +1,16 @@ { - "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "author": "МайкроÑофт", + "name": "Библиотека наÑтраиваемых Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ наÑтраиваемых Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ð¹ WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открытие CustomControl1.vb в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json index 0b6a31ab3..229d37f45 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "WPF Özel Denetim Kitaplığı", + "description": ".NET WPF Uygulamaları için özel bir denetim kitaplığı oluÅŸturmaya yönelik bir proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide CustomControl1.vb’si açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json index 0b6a31ab3..5af786354 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "WPF 自定义控件库", + "description": "用于为 .NET WPF 应用程åºåˆ›å»ºè‡ªå®šä¹‰æŽ§ä»¶åº“的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 CustomControl1.vb" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json index 0b6a31ab3..c17df0cdb 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfCustomControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF Custom Control Library", - "description": "A project for creating a custom control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens CustomControl1.vb in the editor" + "name": "WPF 自訂控制項程å¼åº«", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„自訂控制項程å¼åº«", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 CustomControl1.vb" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json index c14f0cc23..bf52be35d 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.cs.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Knihovna uživatelských ovládacích prvků WPF", + "description": "Projekt pro vytvoÅ™ení knihovny uživatelských ovládacích prvků pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "symbols/Nullable/description": "UrÄuje, zda se mají pro tento projekt povolit odkazové typy s možnou hodnotou null.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e UserControl1.xaml v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.de.json index c14f0cc23..3ae510a71 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.de.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Bibliothek von WPF-Benutzersteuerelementen", + "description": "Ein Projekt zum Erstellen einer Bibliothek von Benutzersteuerelementen für .NET WPF-Anwendungen", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "symbols/Nullable/description": "Gibt an, ob Nullable-Verweistypen für dieses Projekt aktiviert werden sollen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet UserControl1.xmal im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.es.json index c14f0cc23..291a01df9 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.es.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteca de controles de usuario de WPF", + "description": "Proyecto para crear una biblioteca de controles de usuario para aplicaciones WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "symbols/Nullable/description": "Indica si se deben habilitar tipos de referencia que aceptan valores NULL para este proyecto.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre UserControl1.xaml en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json index c14f0cc23..5bb327acb 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.fr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Bibliothèque de contrôles utilisateur WPF", + "description": "Projet de création d'une bibliothèque de contrôles utilisateur pour les applications WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "symbols/Nullable/description": "Indique s’il faut activer les types référence Nullable pour ce projet.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre UserControl1.xaml dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.it.json index c14f0cc23..7901b6ce4 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.it.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Libreria di controlli utente WPF", + "description": "Progetto per la creazione di una libreria di controlli utente per applicazioni WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "symbols/Nullable/description": "Indica se abilitare i tipi di riferimento che ammettono i valori Null per questo progetto.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre UserControl1.xaml nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json index c14f0cc23..ad49b1405 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ja.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF ユーザー コントロール ライブラリ", + "description": ".NET Core WPF アプリケーション用ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ コントロール ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "symbols/Nullable/description": "ã“ã®ãƒ—ロジェクト㮠null 許容å‚照型を有効ã«ã™ã‚‹ã‹ã©ã†ã‹ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠UserControl1.xaml ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json index c14f0cc23..598d39e19 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ko.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF ì‚¬ìš©ìž ì •ì˜ ì»¨íŠ¸ë¡¤ ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET WPF 애플리케ì´ì…˜ìš© ì‚¬ìš©ìž ì •ì˜ ì»¨íŠ¸ë¡¤ ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "symbols/Nullable/description": "ì´ í”„ë¡œì íŠ¸ì— 대해 nullable 참조 형ì‹ì„ 사용할지 여부를 지정합니다.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ UserControl1.xamlì„ ì—½ë‹ˆë‹¤." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json index c14f0cc23..28bee750f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pl.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteka kontrolek użytkownika WPF", + "description": "Projekt sÅ‚użący do tworzenia biblioteki kontrolek użytkownika na potrzeby aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "symbols/Nullable/description": "OkreÅ›la, czy w przypadku tego projektu majÄ… być wÅ‚Ä…czane typy pustych referencji.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik UserControl1.xaml w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json index c14f0cc23..e5326c759 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.pt-BR.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteca de Controles de Usuário do WPF", + "description": "Um projeto para criar uma biblioteca de controles de usuário para aplicativos .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "symbols/Nullable/description": "Se permitir tipos de referência anuláveis para este projeto.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abre o UserControl1.xaml no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json index c14f0cc23..96e523b17 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.ru.json @@ -1,17 +1,17 @@ { - "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "author": "МайкроÑофт", + "name": "Библиотека пользовательÑких Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ пользовательÑких Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ð¹ WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "symbols/Nullable/description": "Следует ли включить ÑÑылочные типы, допуÑкающие значение null, Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открытие UserControl1.xaml в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json index c14f0cc23..d8e101716 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.tr.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF Kullanıcı Denetimi Kitaplığı", + "description": ".NET WPF Uygulamaları için kullanıcı kontrolü kitaplığı oluÅŸturmaya yönelik proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "symbols/Nullable/description": "Bu proje için null atanabilir baÅŸvuru türlerinin etkinleÅŸtirilip etkinleÅŸtirilmeyeceÄŸini belirtir.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide UserControl1.xaml'i açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json index c14f0cc23..a84a4c8d3 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hans.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF 用户控件库", + "description": "用于为 .NET WPF 应用程åºåˆ›å»ºç”¨æˆ·æŽ§ä»¶åº“的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "symbols/Nullable/description": "是å¦ä¸ºæ­¤é¡¹ç›®å¯ç”¨å¯ä¸º null 的引用类型。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 UserControl1.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json index c14f0cc23..1494b32da 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-CSharp/.template.config/localize/templatestrings.zh-Hant.json @@ -1,17 +1,17 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "symbols/Nullable/description": "Whether to enable nullable reference types for this project.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF 使用者控制項程å¼åº«", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„使用者控制項程å¼åº«", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "symbols/Nullable/description": "是å¦è¦å•Ÿç”¨æ­¤å°ˆæ¡ˆçš„å¯ null åƒè€ƒé¡žåž‹ã€‚", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 UserControl1.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json index 579a5c1b6..6b64a7df5 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.cs.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Knihovna uživatelských ovládacích prvků WPF", + "description": "Projekt pro vytvoÅ™ení knihovny uživatelských ovládacích prvků pro aplikace WPF .NET", + "symbols/TargetFrameworkOverride/description": "PÅ™epíše cílovou architekturu.", + "symbols/Framework/description": "Cílová architektura pro projekt", + "symbols/Framework/choices/netcoreapp3.0/description": "Cílit na netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Cílit na netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Cílit na net5.0", + "symbols/Framework/choices/net6.0/description": "Cílit na net6.0", + "symbols/langVersion/description": "Nastaví langVersion ve vytvoÅ™eném souboru projektu.", + "symbols/skipRestore/description": "Pokud se tato možnost zadá, pÅ™eskoÄí automatické obnovení projektu pÅ™i vytvoÅ™ení.", + "postActions/restore/description": "Obnoví balíÄky NuGet vyžadované tímto projektem.", + "postActions/restore/manualInstructions/default/text": "Spustit dotnet restore", + "postActions/editor/description": "OtevÅ™e UserControl1.xaml v editoru." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json index 579a5c1b6..fa06d879f 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.de.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Bibliothek von WPF-Benutzersteuerelementen", + "description": "Ein Projekt zum Erstellen einer Bibliothek von Benutzersteuerelementen für .NET WPF-Anwendungen", + "symbols/TargetFrameworkOverride/description": "Ãœberschreibt das Zielframework", + "symbols/Framework/description": "Das Zielframework für das Projekt.", + "symbols/Framework/choices/netcoreapp3.0/description": "Auf „netcoreapp3.0“ abzielen", + "symbols/Framework/choices/netcoreapp3.1/description": "Auf „netcoreapp3.1“ abzielen", + "symbols/Framework/choices/net5.0/description": "Auf „net5.0“ abzielen", + "symbols/Framework/choices/net6.0/description": "Auf „net6.0“ abzielen", + "symbols/langVersion/description": "Legt „langVersion“ in der erstellten Projektdatei fest", + "symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.", + "postActions/restore/description": "Stellt die NuGet-Pakete wieder her, die für dieses Projekt erforderlich sind.", + "postActions/restore/manualInstructions/default/text": "„dotnet restore“ ausführen", + "postActions/editor/description": "Öffnet UserControl1.xmal im Editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json index 579a5c1b6..c0005a097 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.es.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteca de controles de usuario de WPF", + "description": "Proyecto para crear una biblioteca de controles de usuario para aplicaciones WPF de .NET.", + "symbols/TargetFrameworkOverride/description": "Invalida la plataforma de destino", + "symbols/Framework/description": "Marco de destino del proyecto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Objetivo netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Objetivo netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Objetivo net5.0", + "symbols/Framework/choices/net6.0/description": "Objetivo net6.0", + "symbols/langVersion/description": "Establece langVersion en el archivo de proyecto creado.", + "symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.", + "postActions/restore/description": "Restaure los paquetes NuGet necesarios para este proyecto.", + "postActions/restore/manualInstructions/default/text": "Ejecutar \"dotnet restore\"", + "postActions/editor/description": "Abre UserControl1.xaml en el editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json index 579a5c1b6..0153608aa 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.fr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Bibliothèque de contrôles utilisateur WPF", + "description": "Projet de création d'une bibliothèque de contrôles utilisateur pour les applications WPF .NET", + "symbols/TargetFrameworkOverride/description": "Remplace l’infrastructure cible", + "symbols/Framework/description": "Framework cible du projet.", + "symbols/Framework/choices/netcoreapp3.0/description": "netcoreapp3.0 cible", + "symbols/Framework/choices/netcoreapp3.1/description": "netcoreapp3.1 cible", + "symbols/Framework/choices/net5.0/description": "net5.0 cible", + "symbols/Framework/choices/net6.0/description": "net6.0 cible", + "symbols/langVersion/description": "Définit langVersion dans le fichier projet créé", + "symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.", + "postActions/restore/description": "Restaurez les packages NuGet requis par ce projet.", + "postActions/restore/manualInstructions/default/text": "Exécuter « dotnet restore »", + "postActions/editor/description": "Ouvre UserControl1.xaml dans l’éditeur" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json index 579a5c1b6..518e03cac 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.it.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Libreria di controlli utente WPF", + "description": "Progetto per la creazione di una libreria di controlli utente per applicazioni WPF .NET", + "symbols/TargetFrameworkOverride/description": "Ignora il framework di destinazione", + "symbols/Framework/description": "Il framework di destinazione per il progetto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 di destinazione", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 di destinazione", + "symbols/Framework/choices/net5.0/description": "Net5.0 di destinazione", + "symbols/Framework/choices/net6.0/description": "Net6.0 di destinazione", + "symbols/langVersion/description": "Imposta langVersion nel file di progetto creato", + "symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.", + "postActions/restore/description": "Ripristina i pacchetti NuGet richiesti da questo progetto.", + "postActions/restore/manualInstructions/default/text": "Esegui 'dotnet restore'", + "postActions/editor/description": "Apre UserControl1.xaml nell'editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json index 579a5c1b6..9780fcfd0 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ja.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF ユーザー コントロール ライブラリ", + "description": ".NET Core WPF アプリケーション用ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ コントロール ライブラリを作æˆã™ã‚‹ãŸã‚ã®ãƒ—ロジェクト", + "symbols/TargetFrameworkOverride/description": "ターゲット フレームワークをオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã—ã¾ã™", + "symbols/Framework/description": "プロジェクトã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆ フレームワークã§ã™ã€‚", + "symbols/Framework/choices/netcoreapp3.0/description": "ターゲット netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ターゲット netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ターゲット net5.0", + "symbols/Framework/choices/net6.0/description": "ターゲット net6.0", + "symbols/langVersion/description": "作æˆã•ã‚ŒãŸãƒ—ロジェクト ファイル㧠langVersion を設定ã—ã¾ã™", + "symbols/skipRestore/description": "指定ã—ãŸå ´åˆã€ä½œæˆæ™‚ã«ãƒ—ロジェクトã®è‡ªå‹•å¾©å…ƒãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã™ã€‚", + "postActions/restore/description": "ã“ã®ãƒ—ロジェクトã«å¿…è¦ãª NuGet パッケージを復元ã—ã¾ã™ã€‚", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' を実行ã™ã‚‹", + "postActions/editor/description": "エディター㧠UserControl1.xaml ã‚’é–‹ãã¾ã™" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json index 579a5c1b6..695e099d4 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ko.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF ì‚¬ìš©ìž ì •ì˜ ì»¨íŠ¸ë¡¤ ë¼ì´ë¸ŒëŸ¬ë¦¬", + "description": ".NET WPF 애플리케ì´ì…˜ìš© ì‚¬ìš©ìž ì •ì˜ ì»¨íŠ¸ë¡¤ ë¼ì´ë¸ŒëŸ¬ë¦¬ 만들기 프로ì íŠ¸", + "symbols/TargetFrameworkOverride/description": "ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ë¥¼ 재정ì˜í•©ë‹ˆë‹¤", + "symbols/Framework/description": "프로ì íŠ¸ì— 대한 ëŒ€ìƒ í”„ë ˆìž„ì›Œí¬ìž…니다.", + "symbols/Framework/choices/netcoreapp3.0/description": "ëŒ€ìƒ netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "ëŒ€ìƒ netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "ëŒ€ìƒ net5.0", + "symbols/Framework/choices/net6.0/description": "ëŒ€ìƒ net6.0", + "symbols/langVersion/description": "만든 프로ì íŠ¸ 파ì¼ì˜ langVersion를 설정합니다", + "symbols/skipRestore/description": "ì§€ì •ëœ ê²½ìš°, 프로ì íŠ¸ ìƒì„± ì‹œ ìžë™ ë³µì›ì„ 건너ëœë‹ˆë‹¤.", + "postActions/restore/description": "ì´ í”„ë¡œì íŠ¸ì— 필요한 NuGet 패키지를 ë³µì›í•©ë‹ˆë‹¤.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' 실행", + "postActions/editor/description": "편집기ì—ì„œ UserControl1.xamlì„ ì—½ë‹ˆë‹¤." } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json index 579a5c1b6..bc87a3f45 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pl.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteka kontrolek użytkownika WPF", + "description": "Projekt sÅ‚użący do tworzenia biblioteki kontrolek użytkownika na potrzeby aplikacji WPF w środowisku .NET", + "symbols/TargetFrameworkOverride/description": "ZastÄ™puje platformÄ™ docelowÄ…", + "symbols/Framework/description": "Platforma docelowa dla tego projektu.", + "symbols/Framework/choices/netcoreapp3.0/description": "Docelowy netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Docelowy netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Docelowy net5.0", + "symbols/Framework/choices/net6.0/description": "Docelowy net6.0", + "symbols/langVersion/description": "Ustawia langVersion w utworzonym pliku projektu", + "symbols/skipRestore/description": "JeÅ›li ta opcja jest okreÅ›lona, pomija automatyczne przywracanie projektu podczas tworzenia.", + "postActions/restore/description": "Przywróć pakiety NuGet wymagane przez ten projekt.", + "postActions/restore/manualInstructions/default/text": "Uruchom polecenie \"dotnet restore\"", + "postActions/editor/description": "Otwiera plik UserControl1.xaml w edytorze" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json index 579a5c1b6..c291f840c 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.pt-BR.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "Biblioteca de Controles de Usuário do WPF", + "description": "Um projeto para criar uma biblioteca de controles de usuário para aplicativos .NET WPF", + "symbols/TargetFrameworkOverride/description": "Substitui a estrutura de destino", + "symbols/Framework/description": "A estrutura de destino do projeto.", + "symbols/Framework/choices/netcoreapp3.0/description": "Netcoreapp3.0 de destino", + "symbols/Framework/choices/netcoreapp3.1/description": "Netcoreapp3.1 de destino", + "symbols/Framework/choices/net5.0/description": "Net5.0 de destino", + "symbols/Framework/choices/net6.0/description": "Net6.0 de destino", + "symbols/langVersion/description": "Define a langVersion no arquivo do projeto criado", + "symbols/skipRestore/description": "Se especificado, ignora a restauração automática do projeto sendo criado.", + "postActions/restore/description": "Restaura os pacotes do NuGet exigidos por este projeto.", + "postActions/restore/manualInstructions/default/text": "Executar 'dotnet restore'", + "postActions/editor/description": "Abre o UserControl1.xaml no editor" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json index 579a5c1b6..ab38f4d27 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.ru.json @@ -1,16 +1,16 @@ { - "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "author": "МайкроÑофт", + "name": "Библиотека пользовательÑких Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ WPF", + "description": "Проект Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¸ пользовательÑких Ñлементов ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ð¹ WPF .NET.", + "symbols/TargetFrameworkOverride/description": "ПереопределÑет целевую платформу", + "symbols/Framework/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð° Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°.", + "symbols/Framework/choices/netcoreapp3.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net5.0", + "symbols/Framework/choices/net6.0/description": "Ð¦ÐµÐ»ÐµÐ²Ð°Ñ Ð¿Ð»Ð°Ñ‚Ñ„Ð¾Ñ€Ð¼Ð°: net6.0", + "symbols/langVersion/description": "Задает ÑвойÑтво langVersion в Ñозданном файле проекта", + "symbols/skipRestore/description": "ЕÑли уÑтановлено, автоматичеÑкое воÑÑтановление проекта при Ñоздании пропуÑкаетÑÑ.", + "postActions/restore/description": "ВоÑÑтановление пакетов NuGet, необходимых Ð´Ð»Ñ Ñтого проекта.", + "postActions/restore/manualInstructions/default/text": "Выполнить команду \"dotnet restore\"", + "postActions/editor/description": "Открытие UserControl1.xaml в редакторе" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json index 579a5c1b6..65191a71a 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.tr.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF Kullanıcı Denetimi Kitaplığı", + "description": ".NET WPF Uygulamaları için kullanıcı kontrolü kitaplığı oluÅŸturmaya yönelik proje", + "symbols/TargetFrameworkOverride/description": "Hedef çerçeveyi geçersiz kılar", + "symbols/Framework/description": "Projenin hedef çerçevesi.", + "symbols/Framework/choices/netcoreapp3.0/description": "Hedef netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "Hedef netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "Hedef net5.0", + "symbols/Framework/choices/net6.0/description": "Hedef net6.0", + "symbols/langVersion/description": "OluÅŸturulan proje dosyasında langVersion'ı ayarlar", + "symbols/skipRestore/description": "BelirtilmiÅŸse, oluÅŸturulmakta olan projenin otomatik geri yüklenmesini atlar.", + "postActions/restore/description": "Bu projenin gerektirdiÄŸi NuGet paketlerini geri yükleyin.", + "postActions/restore/manualInstructions/default/text": "'dotnet restore' çalıştır", + "postActions/editor/description": "Düzenleyicide UserControl1.xaml'i açar" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json index 579a5c1b6..d6d282109 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hans.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF 用户控件库", + "description": "用于为 .NET WPF 应用程åºåˆ›å»ºç”¨æˆ·æŽ§ä»¶åº“的项目", + "symbols/TargetFrameworkOverride/description": "替代目标框架", + "symbols/Framework/description": "项目的目标框架。", + "symbols/Framework/choices/netcoreapp3.0/description": "目标 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目标 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目标 net5.0", + "symbols/Framework/choices/net6.0/description": "目标 net6.0", + "symbols/langVersion/description": "在创建的项目文件中设置 langVersion", + "symbols/skipRestore/description": "如果指定,则在创建时跳过项目的自动还原。", + "postActions/restore/description": "还原此项目所需的 NuGet 包。", + "postActions/restore/manualInstructions/default/text": "è¿è¡Œ \"dotnet restore\"", + "postActions/editor/description": "在编辑器中打开 UserControl1.xaml" } \ No newline at end of file diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json index 579a5c1b6..095b248ec 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/content/WpfUserControlLibrary-VisualBasic/.template.config/localize/templatestrings.zh-Hant.json @@ -1,16 +1,16 @@ { "author": "Microsoft", - "name": "WPF User Control Library", - "description": "A project for creating a user control library for .NET WPF Applications", - "symbols/TargetFrameworkOverride/description": "Overrides the target framework", - "symbols/Framework/description": "The target framework for the project.", - "symbols/Framework/choices/netcoreapp3.0/description": "Target netcoreapp3.0", - "symbols/Framework/choices/netcoreapp3.1/description": "Target netcoreapp3.1", - "symbols/Framework/choices/net5.0/description": "Target net5.0", - "symbols/Framework/choices/net6.0/description": "Target net6.0", - "symbols/langVersion/description": "Sets langVersion in the created project file", - "symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", - "postActions/restore/description": "Restore NuGet packages required by this project.", - "postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", - "postActions/editor/description": "Opens UserControl1.xaml in the editor" + "name": "WPF 使用者控制項程å¼åº«", + "description": "此專案å¯ç”¨æ–¼å»ºç«‹é©ç”¨æ–¼ .NET WPF 應用程å¼çš„使用者控制項程å¼åº«", + "symbols/TargetFrameworkOverride/description": "覆寫目標 Framework", + "symbols/Framework/description": "專案的目標 Framework。", + "symbols/Framework/choices/netcoreapp3.0/description": "目標 netcoreapp3.0", + "symbols/Framework/choices/netcoreapp3.1/description": "目標 netcoreapp3.1", + "symbols/Framework/choices/net5.0/description": "目標 net5.0", + "symbols/Framework/choices/net6.0/description": "目標 net6.0", + "symbols/langVersion/description": "在建立的專案檔中設定 langVersion", + "symbols/skipRestore/description": "若指定,會在建立時跳éŽå°ˆæ¡ˆçš„自動還原。", + "postActions/restore/description": "還原此專案所需的 NuGet 套件。", + "postActions/restore/manualInstructions/default/text": "執行 'dotnet restore'", + "postActions/editor/description": "在編輯器中開啟 UserControl1.xaml" } \ No newline at end of file From 893fcebb359377ef2c35b7a95dabb122b482ea13 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 2 Sep 2021 12:37:29 +0000 Subject: [PATCH 0056/1033] Update dependencies from https://github.com/dotnet/arcade build 20210901.3 (#5238) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- eng/common/tools.ps1 | 11 +++++++++++ eng/common/tools.sh | 9 +++++++++ global.json | 8 ++++---- 5 files changed, 37 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ed68f63f0..c9b90ed1a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - e0260cb677c04cb0244aad7537c33bec4adce422 + 923c95ec2e9512285f801c84145a8af3728b1e3b - + https://github.com/dotnet/arcade - e0260cb677c04cb0244aad7537c33bec4adce422 + 923c95ec2e9512285f801c84145a8af3728b1e3b - + https://github.com/dotnet/arcade - e0260cb677c04cb0244aad7537c33bec4adce422 + 923c95ec2e9512285f801c84145a8af3728b1e3b - + https://github.com/dotnet/arcade - e0260cb677c04cb0244aad7537c33bec4adce422 + 923c95ec2e9512285f801c84145a8af3728b1e3b - + https://github.com/dotnet/arcade - e0260cb677c04cb0244aad7537c33bec4adce422 + 923c95ec2e9512285f801c84145a8af3728b1e3b diff --git a/eng/Versions.props b/eng/Versions.props index 5b2d295bf..c3ecaa066 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21430.1 - 6.0.0-beta.21430.1 - 6.0.0-beta.21430.1 + 6.0.0-beta.21451.3 + 6.0.0-beta.21451.3 + 6.0.0-beta.21451.3 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 56ee4a577..02347914f 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -709,6 +709,15 @@ function MSBuild() { Write-PipelineSetVariable -Name 'NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS' -Value '20' } + if ($ci) { + $env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true' + $env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6 + $env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000 + Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true' + Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6' + Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' + } + $toolsetBuildProject = InitializeToolset $basePath = Split-Path -parent $toolsetBuildProject $possiblePaths = @( @@ -717,6 +726,8 @@ function MSBuild() { (Join-Path $basePath (Join-Path $buildTool.Framework 'Microsoft.DotNet.Arcade.Sdk.dll')), (Join-Path $basePath (Join-Path netcoreapp2.1 'Microsoft.DotNet.ArcadeLogging.dll')), (Join-Path $basePath (Join-Path netcoreapp2.1 'Microsoft.DotNet.Arcade.Sdk.dll')) + (Join-Path $basePath (Join-Path netcoreapp3.1 'Microsoft.DotNet.ArcadeLogging.dll')), + (Join-Path $basePath (Join-Path netcoreapp3.1 'Microsoft.DotNet.Arcade.Sdk.dll')) ) $selectedPath = $null foreach ($path in $possiblePaths) { diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 41e323104..6a4871ef7 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -417,6 +417,13 @@ function MSBuild { export NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS=20 Write-PipelineSetVariable -name "NUGET_PLUGIN_HANDSHAKE_TIMEOUT_IN_SECONDS" -value "20" Write-PipelineSetVariable -name "NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS" -value "20" + + export NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY=true + export NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT=6 + export NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS=1000 + Write-PipelineSetVariable -name "NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY" -value "true" + Write-PipelineSetVariable -name "NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT" -value "6" + Write-PipelineSetVariable -name "NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS" -value "1000" fi local toolset_dir="${_InitializeToolset%/*}" @@ -427,6 +434,8 @@ function MSBuild { possiblePaths+=( "$toolset_dir/$_InitializeBuildToolFramework/Microsoft.DotNet.Arcade.Sdk.dll" ) possiblePaths+=( "$toolset_dir/netcoreapp2.1/Microsoft.DotNet.ArcadeLogging.dll" ) possiblePaths+=( "$toolset_dir/netcoreapp2.1/Microsoft.DotNet.Arcade.Sdk.dll" ) + possiblePaths+=( "$toolset_dir/netcoreapp3.1/Microsoft.DotNet.ArcadeLogging.dll" ) + possiblePaths+=( "$toolset_dir/netcoreapp3.1/Microsoft.DotNet.Arcade.Sdk.dll" ) for path in "${possiblePaths[@]}"; do if [[ -f $path ]]; then selectedPath=$path diff --git a/global.json b/global.json index 7520c6c34..f884a93be 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "tools": { - "dotnet": "6.0.100-rc.1.21416.15", + "dotnet": "6.0.100-rc.1.21430.12", "runtimes": { "dotnet": [ "2.1.7", @@ -12,11 +12,11 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21430.1", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21430.1" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21451.3", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21451.3" }, "sdk": { - "version": "6.0.100-rc.1.21416.15" + "version": "6.0.100-rc.1.21430.12" }, "native-tools": { "strawberry-perl": "5.28.1.1-1", From 3cb2d041078e9657c8fa335e4aa5b09c4bcdbdb7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 3 Sep 2021 12:42:02 +0000 Subject: [PATCH 0057/1033] Update dependencies from https://github.com/dotnet/arcade build 20210902.4 (#5242) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c9b90ed1a..4999b3a95 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -83,25 +83,25 @@ - + https://github.com/dotnet/arcade - 923c95ec2e9512285f801c84145a8af3728b1e3b + 00949c51badfda4edd51d217a82ba607db7c4576 - + https://github.com/dotnet/arcade - 923c95ec2e9512285f801c84145a8af3728b1e3b + 00949c51badfda4edd51d217a82ba607db7c4576 - + https://github.com/dotnet/arcade - 923c95ec2e9512285f801c84145a8af3728b1e3b + 00949c51badfda4edd51d217a82ba607db7c4576 - + https://github.com/dotnet/arcade - 923c95ec2e9512285f801c84145a8af3728b1e3b + 00949c51badfda4edd51d217a82ba607db7c4576 - + https://github.com/dotnet/arcade - 923c95ec2e9512285f801c84145a8af3728b1e3b + 00949c51badfda4edd51d217a82ba607db7c4576 diff --git a/eng/Versions.props b/eng/Versions.props index c3ecaa066..6ec94991a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -39,9 +39,9 @@ - 6.0.0-beta.21451.3 - 6.0.0-beta.21451.3 - 6.0.0-beta.21451.3 + 7.0.0-beta.21452.4 + 7.0.0-beta.21452.4 + 7.0.0-beta.21452.4 diff --git a/global.json b/global.json index f884a93be..64ae46df7 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21451.3", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21451.3" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21452.4", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21452.4" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From a42d28193b3ec2b67eafc084d3da00d713ef22b4 Mon Sep 17 00:00:00 2001 From: ThomasGoulet73 <51839772+ThomasGoulet73@users.noreply.github.com> Date: Fri, 3 Sep 2021 16:38:01 -0400 Subject: [PATCH 0058/1033] Remove master branch links from documentations (#5241) --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- Documentation/api-compat.md | 2 +- Documentation/c++-private-tools.md | 4 ++-- Documentation/developer-guide.md | 2 +- Documentation/gen-api.md | 2 +- Documentation/getting-started.md | 4 ++-- Documentation/testing-in-helix.md | 2 +- README.md | 4 ++-- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f0c224abd..155b52d17 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,9 +11,9 @@ assignees: '' * Windows version: (`winver`) * Does the bug reproduce also in WPF for .NET Framework 4.8?: Yes/No * Is this bug related specifically to tooling in Visual Studio (e.g. XAML Designer, Code editing, etc...)? If yes, please file the issue via the instructions [here](https://docs.microsoft.com/visualstudio/ide/how-to-report-a-problem-with-visual-studio?view=vs-2019). -* Security issues and bugs should be reported privately, learn more via our [responsible disclosure guidelines](https://github.com/dotnet/wpf/blob/master/README.md#reporting-security-issues-and-security-bugs). +* Security issues and bugs should be reported privately, learn more via our [responsible disclosure guidelines](https://github.com/dotnet/wpf/blob/main/README.md#reporting-security-issues-and-security-bugs). - + **Problem description:** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b42039c16..204fb16c4 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -9,4 +9,4 @@ assignees: SamBent Is this feature request related specifically to tooling in Visual Studio (e.g. XAML Designer, Code editing, etc...)? If yes, please file the request via the instructions here: https://docs.microsoft.com/visualstudio/ide/suggest-a-feature?view=vs-2019 - + diff --git a/Documentation/api-compat.md b/Documentation/api-compat.md index 8cccac74a..b2d6129f0 100644 --- a/Documentation/api-compat.md +++ b/Documentation/api-compat.md @@ -5,7 +5,7 @@ For `WPF on .NET Core`, this means the following: * All `WPF on .NET Core` reference assemblies contain **at least** the API surface area contained by `WPF on .NET Framework 4.8` reference assemblies. * All hand-crafted reference assemblies for `WPF on .NET Core` contain **exactly** the needed API surface area defined by their corresponding runtime assemblies. (If you're adding new API surface area, you will need to update the hand-crafted reference assemblies, following [these instructions](https://github.com/dotnet/wpf/blob/main/Documentation/gen-api.md).) -This is accomplished by the use of the [Arcade API Compatibility tool](https://github.com/dotnet/arcade/blob/master/src/Microsoft.DotNet.ApiCompat) with some modifications to fit our specific needs. +This is accomplished by the use of the [Arcade API Compatibility tool](https://github.com/dotnet/arcade/blob/main/src/Microsoft.DotNet.ApiCompat) with some modifications to fit our specific needs. ## [ApiCompat.props](/eng/WpfArcadeSdk/tools/ApiCompat.props) This props file implements necessary elements to trigger and control the usage of API Compatibility checks. diff --git a/Documentation/c++-private-tools.md b/Documentation/c++-private-tools.md index ca537a033..849802d25 100644 --- a/Documentation/c++-private-tools.md +++ b/Documentation/c++-private-tools.md @@ -8,7 +8,7 @@ A fix was available in mid Mar, 2019, but this change could not make it into Dev In collaboration with the C++ team, we decided to build our repo using private (but signed) copies of `c1xx.dll` and `msvcurt(d)_netcore.dll`. -We have uploaded these private DLL's to an Azure blob at this location using Arcade's [_Native Toolset Bootstrapping_](https://github.com/dotnet/arcade/blob/master/Documentation/NativeToolBootstrapping.md) process. +We have uploaded these private DLL's to an Azure blob at this location using Arcade's [_Native Toolset Bootstrapping_](https://github.com/dotnet/arcade/blob/main/Documentation/NativeToolBootstrapping.md) process. This results in the the packages being uploaded to locations like these: @@ -36,7 +36,7 @@ In Azure Storage Explorer, the blobs can be found at this location: - msvcurt-c1xx-0.0.0.3-win32-x86.zip ``` -Writing to this storage account requires special permissions and is only available to Microsoft Employees - please work with DncEng if you need to do this. Also refer to [Native Toolset Bootstrapping documentation](https://github.com/dotnet/arcade/blob/master/Documentation/NativeToolBootstrapping.md). +Writing to this storage account requires special permissions and is only available to Microsoft Employees - please work with DncEng if you need to do this. Also refer to [Native Toolset Bootstrapping documentation](https://github.com/dotnet/arcade/blob/main/Documentation/NativeToolBootstrapping.md). #### How does msvcurt-c1xx work? diff --git a/Documentation/developer-guide.md b/Documentation/developer-guide.md index e62d6244a..ab3f7da8d 100644 --- a/Documentation/developer-guide.md +++ b/Documentation/developer-guide.md @@ -176,7 +176,7 @@ If you don't have the ability to build from source, you can update the *.runtime ``` #### Finding a specific version of Microsoft.WindowsDesktop.App that interests you -Follow the steps defined [here](https://github.com/dotnet/arcade/blob/master/Documentation/SeePackagesLatestVersion.md) to get setup for [swagger API](https://maestro-prod.westus2.cloudapp.azure.com/swagger/ui/index.html). Note that you need to authorize each time you login, so keep note of your token or you'll have to generate a new one. Assuming you have a commit (and therefore an Azure DevOps build id) that you are interested in, you can enter the build id into your query. +Follow the steps defined [here](https://github.com/dotnet/arcade/blob/main/Documentation/SeePackagesLatestVersion.md) to get setup for [swagger API](https://maestro-prod.westus2.cloudapp.azure.com/swagger/ui/index.html). Note that you need to authorize each time you login, so keep note of your token or you'll have to generate a new one. Assuming you have a commit (and therefore an Azure DevOps build id) that you are interested in, you can enter the build id into your query. ### Testing PresentationBuildTasks -- add more content here -- diff --git a/Documentation/gen-api.md b/Documentation/gen-api.md index 366ca5d68..fc8824362 100644 --- a/Documentation/gen-api.md +++ b/Documentation/gen-api.md @@ -1,5 +1,5 @@ # GenApi Usage in WPF on .NET Core -In WPF on .NET Core, C# reference assemblies are created via the use of [GenAPI](https://github.com/dotnet/arcade/tree/master/src/Microsoft.DotNet.GenAPI) and a separate reference assembly project located in the `ref` directory under a particular assemblies source directory. +In WPF on .NET Core, C# reference assemblies are created via the use of [GenAPI](https://github.com/dotnet/arcade/tree/main/src/Microsoft.DotNet.GenAPI) and a separate reference assembly project located in the `ref` directory under a particular assemblies source directory. WPF assemblies make extensive use of the [InternalsVisibleToAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.internalsvisibletoattribute?view=netcore-3.0) which precludes the use of [ProduceReferenceAssembly](https://docs.microsoft.com/en-us/visualstudio/msbuild/common-msbuild-project-properties?view=vs-2019) or [ProduceOnlyReferenceAssembly](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/refonly-compiler-option). This is because these compiler options will include internal types and members in the reference assembly. In WPF, this creates dangling references to assemblies that do not exist in the `WindowsDesktop` reference pack. diff --git a/Documentation/getting-started.md b/Documentation/getting-started.md index 67947c62b..ef7c110d5 100644 --- a/Documentation/getting-started.md +++ b/Documentation/getting-started.md @@ -7,7 +7,7 @@ This document describes the experience of using WPF on .NET Core. The [Developer Choose one of these options: 1. [.NET Core 3.1 SDK (recommended)](https://www.microsoft.com/net/download) -2. [.NET Core 3.1 daily build (latest changes, but less stable)](https://github.com/dotnet/core/blob/master/daily-builds.md) +2. [.NET Core 3.1 daily build (latest changes, but less stable)](https://github.com/dotnet/core/blob/main/daily-builds.md) ## Creating new applications @@ -23,7 +23,7 @@ dotnet run ## Samples -Check out the [WPF for .NET Core 3 samples](https://github.com/dotnet/samples/tree/master/wpf) for HelloWorld example. The existing [WPF for .NET Framework samples](https://github.com/Microsoft/WPF-Samples) have also been updated to dual-target .NET Framework and .NET Core 3. +Check out the [WPF for .NET Core 3 samples](https://github.com/dotnet/samples/tree/main/wpf) for HelloWorld example. The existing [WPF for .NET Framework samples](https://github.com/Microsoft/WPF-Samples) have also been updated to dual-target .NET Framework and .NET Core 3. ## Documentation diff --git a/Documentation/testing-in-helix.md b/Documentation/testing-in-helix.md index cdb6b85f0..530cc6f86 100644 --- a/Documentation/testing-in-helix.md +++ b/Documentation/testing-in-helix.md @@ -1,6 +1,6 @@ # Testing in Helix -I'd recommend seeing the official Helix [readme](https://github.com/dotnet/arcade/blob/master/src/Microsoft.DotNet.Helix/Sdk/Readme.md) if you are interested in some of the general Helix concepts. I'll briefly outline what we are doing that is a bit unique: +I'd recommend seeing the official Helix [readme](https://github.com/dotnet/arcade/blob/main/src/Microsoft.DotNet.Helix/Sdk/Readme.md) if you are interested in some of the general Helix concepts. I'll briefly outline what we are doing that is a bit unique: 1. Helix has built-in support for running xUnit tests. Since we are not using xUnit, we have to manually setup our machines so that they work with QualityVault and STI. During the build, we create a payload directory that contains the infrastructure we need. A single project (in our case `DrtXaml`) is responsible for creating this directory (see instances of the MSBuild property `CreateTestPayload`). 2. After the build is done, we utilize Arcade's `AfterSolutionBuild.targets` extension point to finish creating the rest of the payload if the `-test` parameter is passed to the build. Here we add the just built DRTs and if `-ci` was **not** passed into to the build, run the tests. diff --git a/README.md b/README.md index abfa3e03b..428f9ced8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Windows Presentation Foundation (WPF) [![.NET Foundation](https://img.shields.io/badge/.NET%20Foundation-blueviolet.svg)](https://www.dotnetfoundation.org/) [![Build Status](https://dnceng.visualstudio.com/public/_apis/build/status/dotnet/wpf/dotnet-wpf%20CI)](https://dnceng.visualstudio.com/public/_build/latest?definitionId=270) -[![MIT License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/dotnet/wpf/blob/master/LICENSE.TXT) +[![MIT License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/dotnet/wpf/blob/main/LICENSE.TXT) Windows Presentation Foundation (WPF) is a UI framework for building Windows desktop applications. WPF supports a broad set of application development features, including an application model, resources, controls, graphics, layout, data binding and documents. WPF uses the Extensible Application Markup Language (XAML) to provide a declarative model for application programming. @@ -39,7 +39,7 @@ The Visual Studio WPF designer is now available as part of Visual Studio 2019. Some of the best ways to contribute are to try things out, file bugs, join in design conversations, and fix issues. -* This repo defines [contributing guidelines](Documentation/contributing.md) and also follows the more general [.NET Core contributing guide](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md). +* This repo defines [contributing guidelines](Documentation/contributing.md) and also follows the more general [.NET Core contributing guide](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md). * If you have a question or have found a bug, [file an issue](https://github.com/dotnet/wpf/issues/new). * Use [daily builds](Documentation/getting-started.md#installation) if you want to contribute and stay up to date with the team. From 581cd5d247f259bea18eef9a8b48b7da299efbf2 Mon Sep 17 00:00:00 2001 From: ThomasGoulet73 <51839772+ThomasGoulet73@users.noreply.github.com> Date: Fri, 3 Sep 2021 16:39:08 -0400 Subject: [PATCH 0059/1033] Remove ILAsm/ILDasm (#5240) --- eng/Version.Details.xml | 8 -------- eng/Versions.props | 2 -- 2 files changed, 10 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4999b3a95..518b3ed9e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -57,14 +57,6 @@ https://github.com/dotnet/runtime 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - - https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - - - https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 - https://github.com/dotnet/runtime 3cd4e393d9cb69bcb6f53db80998b6c45693e117 diff --git a/eng/Versions.props b/eng/Versions.props index 6ec94991a..efbbd26d8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -14,8 +14,6 @@ 5.0.0-alpha1.19562.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 From 6733504e91aa076f5039062c9b902f9cbecc4180 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Fri, 3 Sep 2021 13:46:01 -0700 Subject: [PATCH 0060/1033] Localized file check-in by OneLocBuild Task: Build definition ID 217: Build ID 1326305 (#5211) * Localized file check-in by OneLocBuild Task * Localized file check-in by OneLocBuild Task From b95e8c2977c8781fac855ae591b093035a02515e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 3 Sep 2021 21:13:07 +0000 Subject: [PATCH 0061/1033] [main] Update dependencies from dotnet/winforms (#5212) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILDAsm: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.ILAsm: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21427.1 to 7.0.0-alpha.1.21453.1 (parent: Microsoft.Private.Winforms) - Merge branch 'main' into darc-main-6135067d-e034-47ce-af6b-28e16f5b1dd6 - Remove Analyzers coming from net6.0 ref pack These require VS 2022 Roslyn v4.0, but the CI machine is still using VS 2019. - Respond to PR feedback from https://github.com/dotnet/wpf/pull/5208 (#5225) --- Directory.Build.targets | 8 +++++ eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 3 files changed, 57 insertions(+), 49 deletions(-) diff --git a/Directory.Build.targets b/Directory.Build.targets index 1394a2067..4d75fdd84 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -6,4 +6,12 @@ + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 518b3ed9e..07decbd85 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 3f7166098be6bc3f97318f9202258ef8095ee543 + 30891a7c73e146a38f82f5c7c5500423c0ffc04f - + https://github.com/dotnet/winforms - 3f7166098be6bc3f97318f9202258ef8095ee543 + 30891a7c73e146a38f82f5c7c5500423c0ffc04f - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a - + https://github.com/dotnet/runtime - 3cd4e393d9cb69bcb6f53db80998b6c45693e117 + 19eba6bcbb1f9b9482c4e01c250cf412a91e882a diff --git a/eng/Versions.props b/eng/Versions.props index efbbd26d8..4f579e079 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21427.15 + 7.0.0-alpha.1.21453.8 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 - 7.0.0-alpha.1.21427.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21453.1 From 2c9fea427cda8b85d2a8ccbde7549b903e57bbc3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 4 Sep 2021 12:42:00 +0000 Subject: [PATCH 0062/1033] Update dependencies from https://github.com/dotnet/arcade build 20210903.2 (#5245) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 07decbd85..ac30d6ccb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 00949c51badfda4edd51d217a82ba607db7c4576 + 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 - + https://github.com/dotnet/arcade - 00949c51badfda4edd51d217a82ba607db7c4576 + 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 - + https://github.com/dotnet/arcade - 00949c51badfda4edd51d217a82ba607db7c4576 + 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 - + https://github.com/dotnet/arcade - 00949c51badfda4edd51d217a82ba607db7c4576 + 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 - + https://github.com/dotnet/arcade - 00949c51badfda4edd51d217a82ba607db7c4576 + 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 diff --git a/eng/Versions.props b/eng/Versions.props index 4f579e079..6dd9374e2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21452.4 - 7.0.0-beta.21452.4 - 7.0.0-beta.21452.4 + 7.0.0-beta.21453.2 + 7.0.0-beta.21453.2 + 7.0.0-beta.21453.2 diff --git a/global.json b/global.json index 64ae46df7..c08caa3b1 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21452.4", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21452.4" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21453.2", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21453.2" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From abc527991a2c5bc402502b779715313e5d7f8ffe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 6 Sep 2021 01:35:23 +0000 Subject: [PATCH 0063/1033] Update dependencies from https://github.com/dotnet/winforms build 20210905.1 (#5247) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21453.1 to 7.0.0-alpha.1.21454.3 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ac30d6ccb..a43814b0b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 30891a7c73e146a38f82f5c7c5500423c0ffc04f + 3af0ee4c397e199d21117240ad465056a4e6be57 - + https://github.com/dotnet/winforms - 30891a7c73e146a38f82f5c7c5500423c0ffc04f + 3af0ee4c397e199d21117240ad465056a4e6be57 - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc - + https://github.com/dotnet/runtime - 19eba6bcbb1f9b9482c4e01c250cf412a91e882a + 804a933e2b699e10391e7f8b4ccbbbfad41bfefc diff --git a/eng/Versions.props b/eng/Versions.props index 6dd9374e2..6ba25e31c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21453.8 + 7.0.0-alpha.1.21455.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 - 7.0.0-alpha.1.21453.1 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21454.3 From 04ef481dd65c097e686ec8759ec637872e4faada Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 09:09:10 +0000 Subject: [PATCH 0064/1033] Update dependencies from https://github.com/dotnet/winforms build 20210907.1 (#5250) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21454.3 to 7.0.0-alpha.1.21456.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a43814b0b..e5147fd2a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 3af0ee4c397e199d21117240ad465056a4e6be57 + 3c8ee839065d24aeb32bbe9f8a19d134d3cacc96 - + https://github.com/dotnet/winforms - 3af0ee4c397e199d21117240ad465056a4e6be57 + 3c8ee839065d24aeb32bbe9f8a19d134d3cacc96 - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e - + https://github.com/dotnet/runtime - 804a933e2b699e10391e7f8b4ccbbbfad41bfefc + b7e10374429b5af32debc4660aa9bce41cfb903e diff --git a/eng/Versions.props b/eng/Versions.props index 6ba25e31c..8c81b5bd5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21455.1 + 7.0.0-alpha.1.21457.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 - 7.0.0-alpha.1.21454.3 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21456.1 From 3f39809d236aaa756eb271efd53c8868f9144cc3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 12:41:36 +0000 Subject: [PATCH 0065/1033] Update dependencies from https://github.com/dotnet/arcade build 20210906.1 (#5251) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e5147fd2a..3895fc597 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 + 7309c692126e24bc10702f39fe45b2a295b224d2 - + https://github.com/dotnet/arcade - 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 + 7309c692126e24bc10702f39fe45b2a295b224d2 - + https://github.com/dotnet/arcade - 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 + 7309c692126e24bc10702f39fe45b2a295b224d2 - + https://github.com/dotnet/arcade - 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 + 7309c692126e24bc10702f39fe45b2a295b224d2 - + https://github.com/dotnet/arcade - 0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 + 7309c692126e24bc10702f39fe45b2a295b224d2 diff --git a/eng/Versions.props b/eng/Versions.props index 8c81b5bd5..3dfa1fd6b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21453.2 - 7.0.0-beta.21453.2 - 7.0.0-beta.21453.2 + 7.0.0-beta.21456.1 + 7.0.0-beta.21456.1 + 7.0.0-beta.21456.1 diff --git a/global.json b/global.json index c08caa3b1..9ddd17726 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21453.2", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21453.2" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21456.1", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21456.1" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From 3962b020fe52757f7b5193b386c50abb2a3d52e0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 13:23:14 +0000 Subject: [PATCH 0066/1033] Update dependencies from https://github.com/dotnet/winforms build 20210907.4 (#5253) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21456.1 to 7.0.0-alpha.1.21457.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3895fc597..33a09c76d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 3c8ee839065d24aeb32bbe9f8a19d134d3cacc96 + bcc8ca13872cd70c4dd0457eb45c6b89b68f84f5 - + https://github.com/dotnet/winforms - 3c8ee839065d24aeb32bbe9f8a19d134d3cacc96 + bcc8ca13872cd70c4dd0457eb45c6b89b68f84f5 - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c - + https://github.com/dotnet/runtime - b7e10374429b5af32debc4660aa9bce41cfb903e + 7292301fc5e0071b2e6e0a7d221d82ba7199e73c diff --git a/eng/Versions.props b/eng/Versions.props index 3dfa1fd6b..adaa8f645 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.4 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 - 7.0.0-alpha.1.21456.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21457.1 From cf2a8903f9569239476b38c57058c892cabd9e8e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 13:43:42 +0000 Subject: [PATCH 0067/1033] Update dependencies from https://github.com/dotnet/winforms build 20210907.5 (#5254) [main] Update dependencies from dotnet/winforms --- 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 33a09c76d..e0ed27ba9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - bcc8ca13872cd70c4dd0457eb45c6b89b68f84f5 + 9b1c202ee5f8b5c8a44b01de95d25b9047040263 - + https://github.com/dotnet/winforms - bcc8ca13872cd70c4dd0457eb45c6b89b68f84f5 + 9b1c202ee5f8b5c8a44b01de95d25b9047040263 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index adaa8f645..341f3d449 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21457.4 + 7.0.0-alpha.1.21457.5 From c3c07d972c1a4fa24d4bde010239d505d1652c89 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 18:08:43 +0000 Subject: [PATCH 0068/1033] Update dependencies from https://github.com/dotnet/winforms build 20210907.6 (#5260) [main] Update dependencies from dotnet/winforms --- 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 e0ed27ba9..816d0215c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 9b1c202ee5f8b5c8a44b01de95d25b9047040263 + 9b77d919753564d3a47799c59ca426686e7daf70 - + https://github.com/dotnet/winforms - 9b1c202ee5f8b5c8a44b01de95d25b9047040263 + 9b77d919753564d3a47799c59ca426686e7daf70 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 341f3d449..6cbcbf863 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21457.5 + 7.0.0-alpha.1.21457.6 From cec21d48874122bb018cb7d92e81e5fef67e284f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Sep 2021 18:24:11 +0000 Subject: [PATCH 0069/1033] Update dependencies from https://github.com/dotnet/winforms build 20210907.7 (#5262) [main] Update dependencies from dotnet/winforms --- 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 816d0215c..daed038c6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 9b77d919753564d3a47799c59ca426686e7daf70 + a7761d15f796db76b306cfbc2597d22b46513e5e - + https://github.com/dotnet/winforms - 9b77d919753564d3a47799c59ca426686e7daf70 + a7761d15f796db76b306cfbc2597d22b46513e5e https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6cbcbf863..319ab4ae4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21457.6 + 7.0.0-alpha.1.21457.7 From bd8c75113af9fad11514494c75bfc40aea3a4ea4 Mon Sep 17 00:00:00 2001 From: Nirmal Guru Date: Wed, 8 Sep 2021 22:16:42 +0530 Subject: [PATCH 0070/1033] Remove trailing white-space and Fixup new-lines (#4629) Only in 'Microsoft.WinFX.targets' file Respect EditorConfig preferences for whitespace and new-lines --- .../Microsoft.WinFX.targets | 92 ++++--------------- 1 file changed, 17 insertions(+), 75 deletions(-) diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/Microsoft.WinFX.targets b/src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/Microsoft.WinFX.targets index 2b51517e7..771f6780e 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/Microsoft.WinFX.targets +++ b/src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/Microsoft.WinFX.targets @@ -40,7 +40,6 @@ Installed true .g$(DefaultLanguageSourceExtension) - 5.1.2600.0 @@ -55,7 +54,6 @@ true - @@ -79,7 +76,6 @@ - @@ -89,14 +85,15 @@ + - + <_AfterCompileWinFXInternalDependsOn> PrepareResourcesForSatelliteAssemblies; @@ -165,11 +157,10 @@ - - + - - - @@ -306,7 +290,7 @@ XamlDebuggingInformation="$(XamlDebuggingInformation)" GeneratedBaml="" OutputPath="$(IntermediateOutputPath)" - ContinueOnError="false" + ContinueOnError="false" SupportCustomOutputPaths="$(IncludePackageReferencesDuringMarkupCompilation)"> - - @@ -362,12 +342,10 @@ <_CompileTargetNameForLocalType Condition="'$(_CompileTargetNameForLocalType)' == ''">_CompileTemporaryAssembly - true <_ResolveProjectReferencesTargetName Condition="'$(IncludePackageReferencesDuringMarkupCompilation)' != 'false'">ResolveProjectReferences <_CompileTemporaryAssemblyDependsOn>BuildOnlySettings;ResolveKeySource;$(_ResolveProjectReferencesTargetName);CoreCompile - @@ -376,17 +354,15 @@ - - @@ -401,9 +377,10 @@ - @@ -425,7 +402,7 @@ <_DestGeneratedNuGetPropsAndTargets Include="$(BaseIntermediateOutputPath)project.assets.json"/> <_DestGeneratedNuGetPropsAndTargets Include="$(BaseIntermediateOutputPath)project.nuget.cache"/> - + - @@ -490,17 +466,15 @@ Condition="'$(IncludePackageReferencesDuringMarkupCompilation)' != 'false' and '$(GenerateTemporaryTargetAssemblyDebuggingInformation)' != 'true'" Files="@(_DestGeneratedNuGetPropsAndTargets)" /> - - @@ -509,13 +483,10 @@ - - - - true $(GenerateManifests) - false - Internet - - @@ -591,7 +555,6 @@ $(MSBuildProjectDirectory)\bin\$(Configuration)\$(TargetDeployManifestFileName) -debug "$(StartURL)" $(StartArguments) -DebugSecurityZoneURL "$(DebugSecurityZoneURL)" - @@ -619,7 +582,6 @@ - @@ -644,7 +606,6 @@ CertificateThumbprint="$(_DeploymentResolvedManifestCertificateThumbprint)" TimestampUrl="$(ManifestTimestampUrl)" SigningTarget="@(ApplicationManifest)"/> - @@ -662,7 +623,6 @@ CertificateThumbprint="$(_DeploymentResolvedManifestCertificateThumbprint)" TimestampUrl="$(ManifestTimestampUrl)" SigningTarget="@(DeployManifest)"/> - @@ -672,7 +632,6 @@ ================================================================ Classify baml and image files into different groups for Main assembly and satellite assembly respectively. - --> @@ -690,12 +649,10 @@ - - - @@ -750,11 +705,10 @@ $(IntermediateOutputPath)$(_ResourceNameInMainAssembly) - - - - + @@ -882,7 +832,6 @@ Condition="'$(UICulture)' != ''"> - @@ -893,7 +842,6 @@ Condition="'@(NonResxWithCulture)' != ''"> - @@ -904,7 +852,6 @@ - @@ -913,7 +860,6 @@ Condition="'@(Page)' != '' or '@(ApplicationDefinition)' != ''"> - - + - + - + - From cae240e62e53649a66edc0c3c309d4edbbd1336d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 00:34:46 +0000 Subject: [PATCH 0071/1033] Update dependencies from https://github.com/dotnet/winforms build 20210908.9 (#5273) [main] Update dependencies from dotnet/winforms --- 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 daed038c6..b691781c3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - a7761d15f796db76b306cfbc2597d22b46513e5e + 22417511734cee7ec5a562893bec0c5bb5434c33 - + https://github.com/dotnet/winforms - a7761d15f796db76b306cfbc2597d22b46513e5e + 22417511734cee7ec5a562893bec0c5bb5434c33 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 319ab4ae4..392fc863a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21457.7 + 7.0.0-alpha.1.21458.9 From 64bde4776eb04c039a304f6071ec25809242a287 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 00:52:58 +0000 Subject: [PATCH 0072/1033] Update dependencies from https://github.com/dotnet/winforms build 20210908.10 (#5274) [main] Update dependencies from dotnet/winforms --- 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 b691781c3..dfcca1898 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 22417511734cee7ec5a562893bec0c5bb5434c33 + c4833eb87044d738b9070bdee6e3ceb138541dae - + https://github.com/dotnet/winforms - 22417511734cee7ec5a562893bec0c5bb5434c33 + c4833eb87044d738b9070bdee6e3ceb138541dae https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 392fc863a..305a8913c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21458.9 + 7.0.0-alpha.1.21458.10 From b849385a9fa050ab88544e550afae6222be19c5e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 10:19:43 +0000 Subject: [PATCH 0073/1033] Update dependencies from https://github.com/dotnet/winforms build 20210909.1 (#5277) [main] Update dependencies from dotnet/winforms --- 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 dfcca1898..12c202acd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - c4833eb87044d738b9070bdee6e3ceb138541dae + 1a8a8664ea6401ff49ca3ee10c91cc2f69f6f482 - + https://github.com/dotnet/winforms - c4833eb87044d738b9070bdee6e3ceb138541dae + 1a8a8664ea6401ff49ca3ee10c91cc2f69f6f482 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 305a8913c..77bff5b96 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21458.10 + 7.0.0-alpha.1.21459.1 From 4ac670d421997de822014f97b8afc7e72ba2230d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 12:33:25 +0000 Subject: [PATCH 0074/1033] Update dependencies from https://github.com/dotnet/arcade build 20210907.3 (#5278) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 12c202acd..3245466d0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 7309c692126e24bc10702f39fe45b2a295b224d2 + 1e11251dfea77c00eea2228660c1afa011347d17 - + https://github.com/dotnet/arcade - 7309c692126e24bc10702f39fe45b2a295b224d2 + 1e11251dfea77c00eea2228660c1afa011347d17 - + https://github.com/dotnet/arcade - 7309c692126e24bc10702f39fe45b2a295b224d2 + 1e11251dfea77c00eea2228660c1afa011347d17 - + https://github.com/dotnet/arcade - 7309c692126e24bc10702f39fe45b2a295b224d2 + 1e11251dfea77c00eea2228660c1afa011347d17 - + https://github.com/dotnet/arcade - 7309c692126e24bc10702f39fe45b2a295b224d2 + 1e11251dfea77c00eea2228660c1afa011347d17 diff --git a/eng/Versions.props b/eng/Versions.props index 77bff5b96..b5616c679 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21456.1 - 7.0.0-beta.21456.1 - 7.0.0-beta.21456.1 + 7.0.0-beta.21457.3 + 7.0.0-beta.21457.3 + 7.0.0-beta.21457.3 diff --git a/global.json b/global.json index 9ddd17726..0f3554d1c 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21456.1", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21456.1" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21457.3", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21457.3" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From 9ea906285a6daadcafc57d1a558be7f02c660548 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 13:30:55 +0000 Subject: [PATCH 0075/1033] Update dependencies from https://github.com/dotnet/winforms build 20210909.2 (#5279) [main] Update dependencies from dotnet/winforms --- 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 3245466d0..2991143da 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 1a8a8664ea6401ff49ca3ee10c91cc2f69f6f482 + 0fbeea632f08a3d56430d62995914ddb661b1166 - + https://github.com/dotnet/winforms - 1a8a8664ea6401ff49ca3ee10c91cc2f69f6f482 + 0fbeea632f08a3d56430d62995914ddb661b1166 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index b5616c679..38f419094 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.2 From 73d862cf204ec0fa89cc12933cb9f0e6d4e23c1c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 12:38:02 +0000 Subject: [PATCH 0076/1033] Update dependencies from https://github.com/dotnet/arcade build 20210909.5 (#5287) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2991143da..c9258b11d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 1e11251dfea77c00eea2228660c1afa011347d17 + fa4a48044d33222537e6dbd000f8a2adaa7a15c7 - + https://github.com/dotnet/arcade - 1e11251dfea77c00eea2228660c1afa011347d17 + fa4a48044d33222537e6dbd000f8a2adaa7a15c7 - + https://github.com/dotnet/arcade - 1e11251dfea77c00eea2228660c1afa011347d17 + fa4a48044d33222537e6dbd000f8a2adaa7a15c7 - + https://github.com/dotnet/arcade - 1e11251dfea77c00eea2228660c1afa011347d17 + fa4a48044d33222537e6dbd000f8a2adaa7a15c7 - + https://github.com/dotnet/arcade - 1e11251dfea77c00eea2228660c1afa011347d17 + fa4a48044d33222537e6dbd000f8a2adaa7a15c7 diff --git a/eng/Versions.props b/eng/Versions.props index 38f419094..da5eea44d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21457.3 - 7.0.0-beta.21457.3 - 7.0.0-beta.21457.3 + 7.0.0-beta.21459.5 + 7.0.0-beta.21459.5 + 7.0.0-beta.21459.5 diff --git a/global.json b/global.json index 0f3554d1c..41efc58e6 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21457.3", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21457.3" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21459.5", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21459.5" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From ee75f65a2d7a23960ad8928d535cf1db84ef2a51 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 13:27:19 +0000 Subject: [PATCH 0077/1033] Update dependencies from https://github.com/dotnet/winforms build 20210910.1 (#5288) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21457.1 to 7.0.0-alpha.1.21459.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c9258b11d..1d5a8b63d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 0fbeea632f08a3d56430d62995914ddb661b1166 + e287a168d59cd4b51c9985c6dbec635613f97f20 - + https://github.com/dotnet/winforms - 0fbeea632f08a3d56430d62995914ddb661b1166 + e287a168d59cd4b51c9985c6dbec635613f97f20 - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d - + https://github.com/dotnet/runtime - 7292301fc5e0071b2e6e0a7d221d82ba7199e73c + d93136afd2459f071634fec715cbd56f549b7e5d diff --git a/eng/Versions.props b/eng/Versions.props index da5eea44d..45ad62258 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.2 + 7.0.0-alpha.1.21460.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 - 7.0.0-alpha.1.21457.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21459.1 From f6265e9ce56f2ee8824a360ea5afd8c9a0d1c6a4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 13:52:54 +0000 Subject: [PATCH 0078/1033] Update dependencies from https://github.com/dotnet/winforms build 20210910.2 (#5289) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21459.1 to 7.0.0-alpha.1.21460.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1d5a8b63d..e1b4ad9dc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - e287a168d59cd4b51c9985c6dbec635613f97f20 + be8f8cc9e5576aeb81c96999c686cf550b10acb2 - + https://github.com/dotnet/winforms - e287a168d59cd4b51c9985c6dbec635613f97f20 + be8f8cc9e5576aeb81c96999c686cf550b10acb2 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 - + https://github.com/dotnet/runtime - d93136afd2459f071634fec715cbd56f549b7e5d + 2679c1eaec27d15a222455c4954d4527a85d0c20 diff --git a/eng/Versions.props b/eng/Versions.props index 45ad62258..83214311b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.2 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 - 7.0.0-alpha.1.21459.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.1 From 71533dbb400686bef699086594cacc66219f483a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 18:35:09 +0000 Subject: [PATCH 0079/1033] Update dependencies from https://github.com/dotnet/winforms build 20210910.3 (#5290) [main] Update dependencies from dotnet/winforms --- 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 e1b4ad9dc..b9e5ba7bd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - be8f8cc9e5576aeb81c96999c686cf550b10acb2 + d67fccdafd68c2237fdc3b9d41e4f67c3bd252e6 - + https://github.com/dotnet/winforms - be8f8cc9e5576aeb81c96999c686cf550b10acb2 + d67fccdafd68c2237fdc3b9d41e4f67c3bd252e6 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 83214311b..6f22dce38 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21460.2 + 7.0.0-alpha.1.21460.3 From 52915112871fd78d5ed5e395cc3bcbda2ba7f25d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 11 Sep 2021 13:24:58 +0000 Subject: [PATCH 0080/1033] Update dependencies from https://github.com/dotnet/winforms build 20210911.1 (#5294) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21460.1 to 7.0.0-alpha.1.21460.17 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b9e5ba7bd..0b3665205 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - d67fccdafd68c2237fdc3b9d41e4f67c3bd252e6 + d28d25ff095ada8de4f02c742aacfa8527072854 - + https://github.com/dotnet/winforms - d67fccdafd68c2237fdc3b9d41e4f67c3bd252e6 + d28d25ff095ada8de4f02c742aacfa8527072854 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 - + https://github.com/dotnet/runtime - 2679c1eaec27d15a222455c4954d4527a85d0c20 + 8012edd17d6980f89b7b01d9a6c9ee73559771f3 diff --git a/eng/Versions.props b/eng/Versions.props index 6f22dce38..c56305fc4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.3 + 7.0.0-alpha.1.21461.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 - 7.0.0-alpha.1.21460.1 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21460.17 From 6be750a94b67436c9579fb4829cbaf7f994c1549 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 12 Sep 2021 13:30:45 +0000 Subject: [PATCH 0081/1033] Update dependencies from https://github.com/dotnet/winforms build 20210912.1 (#5298) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21460.17 to 7.0.0-alpha.1.21461.7 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0b3665205..e1cfffc62 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - d28d25ff095ada8de4f02c742aacfa8527072854 + f97bc3e02cc1423d1c444b562f0e502dbc83cf71 - + https://github.com/dotnet/winforms - d28d25ff095ada8de4f02c742aacfa8527072854 + f97bc3e02cc1423d1c444b562f0e502dbc83cf71 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 - + https://github.com/dotnet/runtime - 8012edd17d6980f89b7b01d9a6c9ee73559771f3 + f29484a8681d67e5605fcf86d56f7d46e18f4396 diff --git a/eng/Versions.props b/eng/Versions.props index c56305fc4..1de07a76e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.1 + 7.0.0-alpha.1.21462.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 - 7.0.0-alpha.1.21460.17 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21461.7 From 5bf12b99e251ace1d5cebf1a4de048a346ee6cc9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 13 Sep 2021 00:54:52 +0000 Subject: [PATCH 0082/1033] Update dependencies from https://github.com/dotnet/winforms build 20210912.2 (#5299) [main] Update dependencies from dotnet/winforms --- 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 e1cfffc62..29237f6de 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - f97bc3e02cc1423d1c444b562f0e502dbc83cf71 + 4c97940229f21a3fac5ffcfcdb0f70f08c524a2d - + https://github.com/dotnet/winforms - f97bc3e02cc1423d1c444b562f0e502dbc83cf71 + 4c97940229f21a3fac5ffcfcdb0f70f08c524a2d https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1de07a76e..8f5b6d385 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21462.1 + 7.0.0-alpha.1.21462.2 From c477e918fbeb4b84c087f0c2e540b2f987a3e1fc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 13 Sep 2021 01:16:05 +0000 Subject: [PATCH 0083/1033] Update dependencies from https://github.com/dotnet/winforms build 20210912.3 (#5300) [main] Update dependencies from dotnet/winforms --- 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 29237f6de..5c4565948 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 4c97940229f21a3fac5ffcfcdb0f70f08c524a2d + 028ddf9a27c4748b9f19e71e8d4ebfa1d0374583 - + https://github.com/dotnet/winforms - 4c97940229f21a3fac5ffcfcdb0f70f08c524a2d + 028ddf9a27c4748b9f19e71e8d4ebfa1d0374583 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8f5b6d385..b3ae18a68 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21462.2 + 7.0.0-alpha.1.21462.3 From 6400e64bc2015d8efe8d61f5561fd91c3fb8e717 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 13 Sep 2021 18:12:17 +0000 Subject: [PATCH 0084/1033] Update dependencies from https://github.com/dotnet/winforms build 20210913.5 (#5303) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21461.7 to 7.0.0-alpha.1.21463.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5c4565948..7820c1d4b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 028ddf9a27c4748b9f19e71e8d4ebfa1d0374583 + 118a1682519fd8dc4db8a37d87b0cd3ba50f5b90 - + https://github.com/dotnet/winforms - 028ddf9a27c4748b9f19e71e8d4ebfa1d0374583 + 118a1682519fd8dc4db8a37d87b0cd3ba50f5b90 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 - + https://github.com/dotnet/runtime - f29484a8681d67e5605fcf86d56f7d46e18f4396 + 0becd27f728f9e1eeb2a168789418ad4191ade99 diff --git a/eng/Versions.props b/eng/Versions.props index b3ae18a68..97085e1af 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21462.3 + 7.0.0-alpha.1.21463.5 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 - 7.0.0-alpha.1.21461.7 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.1 From 830448b79ad5b5bfe10a881e28c2ef2ffa317546 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 00:40:42 +0000 Subject: [PATCH 0085/1033] Update dependencies from https://github.com/dotnet/winforms build 20210913.12 (#5307) [main] Update dependencies from dotnet/winforms --- 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 7820c1d4b..b542c5268 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 118a1682519fd8dc4db8a37d87b0cd3ba50f5b90 + 75d0c92ba05bbbe7a78cad3040ac19929ab40013 - + https://github.com/dotnet/winforms - 118a1682519fd8dc4db8a37d87b0cd3ba50f5b90 + 75d0c92ba05bbbe7a78cad3040ac19929ab40013 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 97085e1af..27da23d20 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21463.5 + 7.0.0-alpha.1.21463.12 From 9f4857c83ba72717f290bf23669d33f9682c4c8c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 01:57:13 +0000 Subject: [PATCH 0086/1033] Update dependencies from https://github.com/dotnet/winforms build 20210913.15 (#5309) [main] Update dependencies from dotnet/winforms --- 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 b542c5268..2cd3f1d8c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 75d0c92ba05bbbe7a78cad3040ac19929ab40013 + 03056d99860af775fb43ba9bd5eaca235ff27b95 - + https://github.com/dotnet/winforms - 75d0c92ba05bbbe7a78cad3040ac19929ab40013 + 03056d99860af775fb43ba9bd5eaca235ff27b95 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 27da23d20..35a7d27fe 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21463.12 + 7.0.0-alpha.1.21463.15 From f6b854e979094f182f255a00c8d4acf8ce29515b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 04:29:09 +0000 Subject: [PATCH 0087/1033] Update dependencies from https://github.com/dotnet/winforms build 20210913.16 (#5310) [main] Update dependencies from dotnet/winforms --- 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 2cd3f1d8c..1f237c468 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 03056d99860af775fb43ba9bd5eaca235ff27b95 + 7a1507357c59fcf863ec04f7a803e3e35d9f96dc - + https://github.com/dotnet/winforms - 03056d99860af775fb43ba9bd5eaca235ff27b95 + 7a1507357c59fcf863ec04f7a803e3e35d9f96dc https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 35a7d27fe..ff6e4ffe1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21463.15 + 7.0.0-alpha.1.21463.16 From f879e0bed3867a83a31cc3e00509ee4bb8f9fb6a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 06:17:56 +0000 Subject: [PATCH 0088/1033] Update dependencies from https://github.com/dotnet/winforms build 20210913.19 (#5312) [main] Update dependencies from dotnet/winforms --- 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 1f237c468..ab37465f6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 7a1507357c59fcf863ec04f7a803e3e35d9f96dc + 40ac9b629d104529c7a3d346582327e787486b69 - + https://github.com/dotnet/winforms - 7a1507357c59fcf863ec04f7a803e3e35d9f96dc + 40ac9b629d104529c7a3d346582327e787486b69 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index ff6e4ffe1..63da8fbeb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21463.16 + 7.0.0-alpha.1.21463.19 From 33fe5e923be3ed119ff07b87e816afb5f80efe64 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 12:44:49 +0000 Subject: [PATCH 0089/1033] Update dependencies from https://github.com/dotnet/arcade build 20210913.4 (#5313) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++-- eng/Versions.props | 6 +- eng/common/cross/build-rootfs.sh | 40 ++------ eng/common/cross/toolchain.cmake | 9 +- ...nd-native-compiler.sh => init-compiler.sh} | 98 ++++++++++--------- global.json | 4 +- 6 files changed, 81 insertions(+), 96 deletions(-) rename eng/common/native/{find-native-compiler.sh => init-compiler.sh} (52%) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ab37465f6..9f7979af9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - fa4a48044d33222537e6dbd000f8a2adaa7a15c7 + 4b7c80f398fd3dcea03fdc4e454789b61181d300 - + https://github.com/dotnet/arcade - fa4a48044d33222537e6dbd000f8a2adaa7a15c7 + 4b7c80f398fd3dcea03fdc4e454789b61181d300 - + https://github.com/dotnet/arcade - fa4a48044d33222537e6dbd000f8a2adaa7a15c7 + 4b7c80f398fd3dcea03fdc4e454789b61181d300 - + https://github.com/dotnet/arcade - fa4a48044d33222537e6dbd000f8a2adaa7a15c7 + 4b7c80f398fd3dcea03fdc4e454789b61181d300 - + https://github.com/dotnet/arcade - fa4a48044d33222537e6dbd000f8a2adaa7a15c7 + 4b7c80f398fd3dcea03fdc4e454789b61181d300 diff --git a/eng/Versions.props b/eng/Versions.props index 63da8fbeb..9ac31c6e0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21459.5 - 7.0.0-beta.21459.5 - 7.0.0-beta.21459.5 + 7.0.0-beta.21463.4 + 7.0.0-beta.21463.4 + 7.0.0-beta.21463.4 diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh index 5c05b39f1..6fa2c8aa5 100755 --- a/eng/common/cross/build-rootfs.sh +++ b/eng/common/cross/build-rootfs.sh @@ -6,7 +6,7 @@ usage() { echo "Usage: $0 [BuildArch] [CodeName] [lldbx.y] [--skipunmount] --rootfsdir ]" echo "BuildArch can be: arm(default), armel, arm64, x86" - echo "CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine, alpine3.9 or alpine3.13. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen." + echo "CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine, alpine3.13 or alpine3.14. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen." echo " for FreeBSD can be: freebsd11, freebsd12, freebsd13" echo " for illumos can be: illumos." echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD" @@ -32,9 +32,9 @@ __UbuntuPackages="build-essential" __AlpinePackages="alpine-base" __AlpinePackages+=" build-base" __AlpinePackages+=" linux-headers" -__AlpinePackagesEdgeCommunity=" lldb-dev" -__AlpinePackagesEdgeMain+=" python3" -__AlpinePackagesEdgeMain+=" libedit" +__AlpinePackages+=" lldb-dev" +__AlpinePackages+=" python3" +__AlpinePackages+=" libedit" # symlinks fixer __UbuntuPackages+=" symlinks" @@ -185,23 +185,17 @@ while :; do __UbuntuRepo= __Tizen=tizen ;; - alpine|alpine3.9) + alpine|alpine3.13) __CodeName=alpine __UbuntuRepo= - __AlpineVersion=3.9 - __AlpinePackagesEdgeMain+=" llvm11-libs" - __AlpinePackagesEdgeMain+=" clang-libs" + __AlpineVersion=3.13 + __AlpinePackages+=" llvm10-libs" ;; - alpine3.13) + alpine3.14) __CodeName=alpine __UbuntuRepo= - __AlpineVersion=3.13 - # Alpine 3.13 has all the packages we need in the 3.13 repository - __AlpinePackages+=$__AlpinePackagesEdgeCommunity - __AlpinePackagesEdgeCommunity= - __AlpinePackages+=$__AlpinePackagesEdgeMain - __AlpinePackagesEdgeMain= - __AlpinePackages+=" llvm10-libs" + __AlpineVersion=3.14 + __AlpinePackages+=" llvm11-libs" ;; freebsd11) __FreeBSDBase="11.3-RELEASE" @@ -279,20 +273,6 @@ if [[ "$__CodeName" == "alpine" ]]; then -U --allow-untrusted --root $__RootfsDir --arch $__AlpineArch --initdb \ add $__AlpinePackages - if [[ -n "$__AlpinePackagesEdgeMain" ]]; then - $__ApkToolsDir/apk-tools-$__ApkToolsVersion/apk \ - -X http://dl-cdn.alpinelinux.org/alpine/edge/main \ - -U --allow-untrusted --root $__RootfsDir --arch $__AlpineArch --initdb \ - add $__AlpinePackagesEdgeMain - fi - - if [[ -n "$__AlpinePackagesEdgeCommunity" ]]; then - $__ApkToolsDir/apk-tools-$__ApkToolsVersion/apk \ - -X http://dl-cdn.alpinelinux.org/alpine/edge/community \ - -U --allow-untrusted --root $__RootfsDir --arch $__AlpineArch --initdb \ - add $__AlpinePackagesEdgeCommunity - fi - rm -r $__ApkToolsDir elif [[ "$__CodeName" == "freebsd" ]]; then mkdir -p $__RootfsDir/usr/local/etc diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index fc11001aa..6501c3a95 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -44,7 +44,7 @@ elseif(TARGET_ARCH_NAME STREQUAL "x86") set(TOOLCHAIN "i686-linux-gnu") elseif (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") set(CMAKE_SYSTEM_PROCESSOR "x86_64") - set(triple "x86_64-unknown-freebsd11") + set(triple "x86_64-unknown-freebsd12") elseif (ILLUMOS) set(CMAKE_SYSTEM_PROCESSOR "x86_64") set(TOOLCHAIN "x86_64-illumos") @@ -91,6 +91,9 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") set(CMAKE_CXX_COMPILER_TARGET ${triple}) set(CMAKE_ASM_COMPILER_TARGET ${triple}) set(CMAKE_SYSROOT "${CROSS_ROOTFS}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fuse-ld=lld") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fuse-ld=lld") + set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -fuse-ld=lld") elseif(ILLUMOS) set(CMAKE_SYSROOT "${CROSS_ROOTFS}") @@ -138,8 +141,8 @@ function(add_toolchain_linker_flag Flag) if (NOT Config STREQUAL "") set(CONFIG_SUFFIX "_${Config}") endif() - set("CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}" "${CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}} ${Flag}" PARENT_SCOPE) - set("CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}" "${CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}} ${Flag}" PARENT_SCOPE) + set("CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}_INIT" "${CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}_INIT} ${Flag}" PARENT_SCOPE) + set("CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}_INIT" "${CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}_INIT} ${Flag}" PARENT_SCOPE) endfunction() if(CMAKE_SYSTEM_NAME STREQUAL "Linux") diff --git a/eng/common/native/find-native-compiler.sh b/eng/common/native/init-compiler.sh similarity index 52% rename from eng/common/native/find-native-compiler.sh rename to eng/common/native/init-compiler.sh index aed19d07d..1daadf32a 100644 --- a/eng/common/native/find-native-compiler.sh +++ b/eng/common/native/init-compiler.sh @@ -1,39 +1,32 @@ #!/usr/bin/env bash # -# This file locates the native compiler with the given name and version and sets the environment variables to locate it. +# This file detects the C/C++ compiler and exports it to the CC/CXX environment variables # -source="${BASH_SOURCE[0]}" - -# resolve $SOURCE until the file is no longer a symlink -while [[ -h $source ]]; do - scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" - source="$(readlink "$source")" - - # if $source was a relative symlink, we need to resolve it relative to the path where the - # symlink file was located - [[ $source != /* ]] && source="$scriptroot/$source" -done -scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" - -if [ $# -lt 0 ] -then +if [[ "$#" -lt 2 ]]; then echo "Usage..." - echo "find-native-compiler.sh " + echo "init-compiler.sh " + echo "Specify the target architecture." echo "Specify the name of compiler (clang or gcc)." echo "Specify the major version of compiler." echo "Specify the minor version of compiler." exit 1 fi -. $scriptroot/../pipeline-logging-functions.sh +. "$( cd -P "$( dirname "$0" )" && pwd )"/../pipeline-logging-functions.sh -compiler="$1" +build_arch="$1" +compiler="$2" cxxCompiler="$compiler++" -majorVersion="$2" -minorVersion="$3" +majorVersion="$3" +minorVersion="$4" -if [ "$compiler" = "gcc" ]; then cxxCompiler="g++"; fi +# clear the existing CC and CXX from environment +CC= +CXX= +LDFLAGS= + +if [[ "$compiler" == "gcc" ]]; then cxxCompiler="g++"; fi check_version_exists() { desired_version=-1 @@ -50,38 +43,38 @@ check_version_exists() { echo "$desired_version" } -if [ -z "$CLR_CC" ]; then +if [[ -z "$CLR_CC" ]]; then # Set default versions - if [ -z "$majorVersion" ]; then + if [[ -z "$majorVersion" ]]; then # note: gcc (all versions) and clang versions higher than 6 do not have minor version in file name, if it is zero. - if [ "$compiler" = "clang" ]; then versions=( 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5 ) - elif [ "$compiler" = "gcc" ]; then versions=( 9 8 7 6 5 4.9 ); fi + if [[ "$compiler" == "clang" ]]; then versions=( 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5 ) + elif [[ "$compiler" == "gcc" ]]; then versions=( 11 10 9 8 7 6 5 4.9 ); fi for version in "${versions[@]}"; do parts=(${version//./ }) desired_version="$(check_version_exists "${parts[0]}" "${parts[1]}")" - if [ "$desired_version" != "-1" ]; then majorVersion="${parts[0]}"; break; fi + if [[ "$desired_version" != "-1" ]]; then majorVersion="${parts[0]}"; break; fi done - if [ -z "$majorVersion" ]; then + if [[ -z "$majorVersion" ]]; then if command -v "$compiler" > /dev/null; then - if [ "$(uname)" != "Darwin" ]; then + if [[ "$(uname)" != "Darwin" ]]; then Write-PipelineTelemetryError -category "Build" -type "warning" "Specific version of $compiler not found, falling back to use the one in PATH." fi - export CC="$(command -v "$compiler")" - export CXX="$(command -v "$cxxCompiler")" + CC="$(command -v "$compiler")" + CXX="$(command -v "$cxxCompiler")" else Write-PipelineTelemetryError -category "Build" "No usable version of $compiler found." exit 1 fi else - if [ "$compiler" = "clang" ] && [ "$majorVersion" -lt 5 ]; then - if [ "$build_arch" = "arm" ] || [ "$build_arch" = "armel" ]; then + if [[ "$compiler" == "clang" && "$majorVersion" -lt 5 ]]; then + if [[ "$build_arch" == "arm" || "$build_arch" == "armel" ]]; then if command -v "$compiler" > /dev/null; then Write-PipelineTelemetryError -category "Build" -type "warning" "Found clang version $majorVersion which is not supported on arm/armel architectures, falling back to use clang from PATH." - export CC="$(command -v "$compiler")" - export CXX="$(command -v "$cxxCompiler")" + CC="$(command -v "$compiler")" + CXX="$(command -v "$cxxCompiler")" else Write-PipelineTelemetryError -category "Build" "Found clang version $majorVersion which is not supported on arm/armel architectures, and there is no clang in PATH." exit 1 @@ -91,31 +84,40 @@ if [ -z "$CLR_CC" ]; then fi else desired_version="$(check_version_exists "$majorVersion" "$minorVersion")" - if [ "$desired_version" = "-1" ]; then + if [[ "$desired_version" == "-1" ]]; then Write-PipelineTelemetryError -category "Build" "Could not find specific version of $compiler: $majorVersion $minorVersion." exit 1 fi fi - if [ -z "$CC" ]; then - export CC="$(command -v "$compiler$desired_version")" - export CXX="$(command -v "$cxxCompiler$desired_version")" - if [ -z "$CXX" ]; then export CXX="$(command -v "$cxxCompiler")"; fi + if [[ -z "$CC" ]]; then + CC="$(command -v "$compiler$desired_version")" + CXX="$(command -v "$cxxCompiler$desired_version")" + if [[ -z "$CXX" ]]; then CXX="$(command -v "$cxxCompiler")"; fi fi else - if [ ! -f "$CLR_CC" ]; then + if [[ ! -f "$CLR_CC" ]]; then Write-PipelineTelemetryError -category "Build" "CLR_CC is set but path '$CLR_CC' does not exist" exit 1 fi - export CC="$CLR_CC" - export CXX="$CLR_CXX" + CC="$CLR_CC" + CXX="$CLR_CXX" fi -if [ -z "$CC" ]; then - Write-PipelineTelemetryError -category "Build" "Unable to find $compiler." +if [[ -z "$CC" ]]; then + Write-PipelineTelemetryError -category "Build" "Unable to find $compiler." exit 1 fi -export CCC_CC="$CC" -export CCC_CXX="$CXX" -export SCAN_BUILD_COMMAND="$(command -v "scan-build$desired_version")" +if [[ "$compiler" == "clang" ]]; then + if command -v "lld$desired_version" > /dev/null; then + # Only lld version >= 9 can be considered stable + if [[ "$majorVersion" -ge 9 ]]; then + LDFLAGS="-fuse-ld=lld" + fi + fi +fi + +SCAN_BUILD_COMMAND="$(command -v "scan-build$desired_version")" + +export CC CXX LDFLAGS SCAN_BUILD_COMMAND diff --git a/global.json b/global.json index 41efc58e6..69a9bf8f9 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21459.5", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21459.5" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21463.4", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21463.4" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From daa905698cdb3fa044fe6ed646f3233fd7b880c6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Sep 2021 19:25:49 +0000 Subject: [PATCH 0090/1033] Update dependencies from https://github.com/dotnet/winforms build 20210914.4 (#5315) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21463.1 to 7.0.0-alpha.1.21463.20 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9f7979af9..54d94df7b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 40ac9b629d104529c7a3d346582327e787486b69 + bbc554f60c5371d66c71b82b739a54e21c88f61c - + https://github.com/dotnet/winforms - 40ac9b629d104529c7a3d346582327e787486b69 + bbc554f60c5371d66c71b82b739a54e21c88f61c - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 - + https://github.com/dotnet/runtime - 0becd27f728f9e1eeb2a168789418ad4191ade99 + 9035d94a5075a482307383132e46974699fe08b3 diff --git a/eng/Versions.props b/eng/Versions.props index 9ac31c6e0..d4c31495c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.19 + 7.0.0-alpha.1.21464.4 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 - 7.0.0-alpha.1.21463.1 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21463.20 From 76864c4b41a0e9f6070f4f98af5573a54234e201 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 15 Sep 2021 01:50:00 +0000 Subject: [PATCH 0091/1033] Update dependencies from https://github.com/dotnet/winforms build 20210914.9 (#5321) [main] Update dependencies from dotnet/winforms --- 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 54d94df7b..51b3af9d8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - bbc554f60c5371d66c71b82b739a54e21c88f61c + 4622b534f611de1dc37fc5fcc449ba41e830ff66 - + https://github.com/dotnet/winforms - bbc554f60c5371d66c71b82b739a54e21c88f61c + 4622b534f611de1dc37fc5fcc449ba41e830ff66 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index d4c31495c..7f1917d12 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.9 From 29ac266aebb341093db65f818000fd675545c62d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 15 Sep 2021 04:59:56 +0000 Subject: [PATCH 0092/1033] Update dependencies from https://github.com/dotnet/winforms build 20210914.13 (#5323) [main] Update dependencies from dotnet/winforms --- 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 51b3af9d8..05c44254c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 4622b534f611de1dc37fc5fcc449ba41e830ff66 + 1c09e4695ada14b522b58f8b1201715e3cd398fc - + https://github.com/dotnet/winforms - 4622b534f611de1dc37fc5fcc449ba41e830ff66 + 1c09e4695ada14b522b58f8b1201715e3cd398fc https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7f1917d12..cd700501c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21464.9 + 7.0.0-alpha.1.21464.13 From 8d0186b93161bf503e53235e6ea7afcfea610d2b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 15 Sep 2021 05:40:28 +0000 Subject: [PATCH 0093/1033] Update dependencies from https://github.com/dotnet/winforms build 20210914.14 (#5324) [main] Update dependencies from dotnet/winforms --- 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 05c44254c..e82e8bb7a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 1c09e4695ada14b522b58f8b1201715e3cd398fc + d3772ebec9d58c4bcff318b6c2c3afc927332e86 - + https://github.com/dotnet/winforms - 1c09e4695ada14b522b58f8b1201715e3cd398fc + d3772ebec9d58c4bcff318b6c2c3afc927332e86 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index cd700501c..630b0bb07 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21464.13 + 7.0.0-alpha.1.21464.14 From 1cd0c349b204593be1f38dfab8ab8bb4d915e7a7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 16 Sep 2021 01:18:36 +0000 Subject: [PATCH 0094/1033] Update dependencies from https://github.com/dotnet/winforms build 20210915.4 (#5333) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21463.20 to 7.0.0-alpha.1.21464.4 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e82e8bb7a..7eb59d3a9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - d3772ebec9d58c4bcff318b6c2c3afc927332e86 + 163d9766c33034632a92d940de5ebce80d8e4f1c - + https://github.com/dotnet/winforms - d3772ebec9d58c4bcff318b6c2c3afc927332e86 + 163d9766c33034632a92d940de5ebce80d8e4f1c - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 - + https://github.com/dotnet/runtime - 9035d94a5075a482307383132e46974699fe08b3 + a56b7321692d682bedf328c53dc8d47bbb193154 diff --git a/eng/Versions.props b/eng/Versions.props index 630b0bb07..66c18b29d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.14 + 7.0.0-alpha.1.21465.4 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 - 7.0.0-alpha.1.21463.20 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21464.4 From 846b0559381c33b60b316463a1c25aa1ed30ec6e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 16 Sep 2021 23:51:52 +0000 Subject: [PATCH 0095/1033] Update dependencies from https://github.com/dotnet/winforms build 20210916.1 (#5335) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21464.4 to 7.0.0-alpha.1.21466.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7eb59d3a9..36cac67c2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 163d9766c33034632a92d940de5ebce80d8e4f1c + 3d1587d39a405b58266275d6a581e6dad530e44e - + https://github.com/dotnet/winforms - 163d9766c33034632a92d940de5ebce80d8e4f1c + 3d1587d39a405b58266275d6a581e6dad530e44e - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 - + https://github.com/dotnet/runtime - a56b7321692d682bedf328c53dc8d47bbb193154 + 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 diff --git a/eng/Versions.props b/eng/Versions.props index 66c18b29d..acf17b5b8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21465.4 + 7.0.0-alpha.1.21466.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 - 7.0.0-alpha.1.21464.4 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.1 From 3f4bd178022264c3624f13218d7239f248ffc619 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Sep 2021 01:56:38 +0000 Subject: [PATCH 0096/1033] Update dependencies from https://github.com/dotnet/winforms build 20210916.6 (#5338) [main] Update dependencies from dotnet/winforms --- 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 36cac67c2..6d86ed21b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 3d1587d39a405b58266275d6a581e6dad530e44e + 8b918a8f476b7e5742e719aa7a9bb0debcb1590c - + https://github.com/dotnet/winforms - 3d1587d39a405b58266275d6a581e6dad530e44e + 8b918a8f476b7e5742e719aa7a9bb0debcb1590c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index acf17b5b8..ea00dee1b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21466.6 From dde5e13f580ae55919a98283cbf92811544bc6f2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Sep 2021 12:41:52 +0000 Subject: [PATCH 0097/1033] Update dependencies from https://github.com/dotnet/arcade build 20210916.4 (#5341) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6d86ed21b..87a9713fb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 4b7c80f398fd3dcea03fdc4e454789b61181d300 + 734d875ba2abfb5c8f5f52368e7d4711ee366e31 - + https://github.com/dotnet/arcade - 4b7c80f398fd3dcea03fdc4e454789b61181d300 + 734d875ba2abfb5c8f5f52368e7d4711ee366e31 - + https://github.com/dotnet/arcade - 4b7c80f398fd3dcea03fdc4e454789b61181d300 + 734d875ba2abfb5c8f5f52368e7d4711ee366e31 - + https://github.com/dotnet/arcade - 4b7c80f398fd3dcea03fdc4e454789b61181d300 + 734d875ba2abfb5c8f5f52368e7d4711ee366e31 - + https://github.com/dotnet/arcade - 4b7c80f398fd3dcea03fdc4e454789b61181d300 + 734d875ba2abfb5c8f5f52368e7d4711ee366e31 diff --git a/eng/Versions.props b/eng/Versions.props index ea00dee1b..f306f246c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21463.4 - 7.0.0-beta.21463.4 - 7.0.0-beta.21463.4 + 7.0.0-beta.21466.4 + 7.0.0-beta.21466.4 + 7.0.0-beta.21466.4 diff --git a/global.json b/global.json index 69a9bf8f9..33228b19c 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21463.4", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21463.4" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21466.4", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21466.4" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From ff89fcef3e12afb24054a0c80eb9087519a763db Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Sep 2021 13:28:08 +0000 Subject: [PATCH 0098/1033] Update dependencies from https://github.com/dotnet/winforms build 20210917.1 (#5342) [main] Update dependencies from dotnet/winforms --- 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 87a9713fb..220093dc1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 8b918a8f476b7e5742e719aa7a9bb0debcb1590c + c2ad69b5e2e784d11394031201470690022d42d7 - + https://github.com/dotnet/winforms - 8b918a8f476b7e5742e719aa7a9bb0debcb1590c + c2ad69b5e2e784d11394031201470690022d42d7 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index f306f246c..b2ca06cdd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21466.6 + 7.0.0-alpha.1.21467.1 From d5030faca19d4d6ce5529f7da48b6851337d15a7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Sep 2021 13:55:33 +0000 Subject: [PATCH 0099/1033] Update dependencies from https://github.com/dotnet/winforms build 20210917.2 (#5343) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21466.1 to 7.0.0-alpha.1.21467.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 220093dc1..cbae54ffb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - c2ad69b5e2e784d11394031201470690022d42d7 + a74b720dd381d30b33ac199c0ea35eab551c4b62 - + https://github.com/dotnet/winforms - c2ad69b5e2e784d11394031201470690022d42d7 + a74b720dd381d30b33ac199c0ea35eab551c4b62 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 - + https://github.com/dotnet/runtime - 8ef8151c69b4c3c87377afdecf43f0c57ff8c815 + ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 diff --git a/eng/Versions.props b/eng/Versions.props index b2ca06cdd..c6e6fa613 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.2 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 - 7.0.0-alpha.1.21466.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.1 From cc6de3e097982f0db4dded3c5ca189ea8f1a3744 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 18 Sep 2021 13:26:29 +0000 Subject: [PATCH 0100/1033] Update dependencies from https://github.com/dotnet/winforms build 20210918.1 (#5349) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21467.1 to 7.0.0-alpha.1.21467.27 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cbae54ffb..8fc101ea2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - a74b720dd381d30b33ac199c0ea35eab551c4b62 + 3615fa79bad9467205906e0e5ffc24b51deca0a7 - + https://github.com/dotnet/winforms - a74b720dd381d30b33ac199c0ea35eab551c4b62 + 3615fa79bad9467205906e0e5ffc24b51deca0a7 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 - + https://github.com/dotnet/runtime - ae46d07eb778fd9e1d4cdfe799a9e1ee7ed1d570 + a842e7a1dc6c241c928c6291411393cdb2516608 diff --git a/eng/Versions.props b/eng/Versions.props index c6e6fa613..9c1448bd4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.2 + 7.0.0-alpha.1.21468.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 - 7.0.0-alpha.1.21467.1 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21467.27 From 6a541b1f43b1a5f38dffedf8973c3819a029753e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 18 Sep 2021 18:45:40 +0000 Subject: [PATCH 0101/1033] Update dependencies from https://github.com/dotnet/winforms build 20210918.4 (#5350) [main] Update dependencies from dotnet/winforms --- 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 8fc101ea2..43060b2cd 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 3615fa79bad9467205906e0e5ffc24b51deca0a7 + a6627d7374aea5d0dd84d2d533bf9661b07d932f - + https://github.com/dotnet/winforms - 3615fa79bad9467205906e0e5ffc24b51deca0a7 + a6627d7374aea5d0dd84d2d533bf9661b07d932f https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9c1448bd4..866d99237 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21468.1 + 7.0.0-alpha.1.21468.4 From ccf3009020a175a59856d090939fca20c8b1f730 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 19 Sep 2021 13:55:44 +0000 Subject: [PATCH 0102/1033] Update dependencies from https://github.com/dotnet/winforms build 20210919.1 (#5352) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21467.27 to 7.0.0-alpha.1.21468.5 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 43060b2cd..bb6af74c8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - a6627d7374aea5d0dd84d2d533bf9661b07d932f + 2175d4afd54c3fbe376907f31b978a630d6bca02 - + https://github.com/dotnet/winforms - a6627d7374aea5d0dd84d2d533bf9661b07d932f + 2175d4afd54c3fbe376907f31b978a630d6bca02 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 - + https://github.com/dotnet/runtime - a842e7a1dc6c241c928c6291411393cdb2516608 + 78593b9e095f974305b2033b465455e458e30267 diff --git a/eng/Versions.props b/eng/Versions.props index 866d99237..c30a067fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.4 + 7.0.0-alpha.1.21469.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 - 7.0.0-alpha.1.21467.27 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21468.5 From 81b6dc9cfd6d7790152021adfa439c991ff208a8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 20 Sep 2021 17:35:17 +0000 Subject: [PATCH 0103/1033] Update dependencies from https://github.com/dotnet/winforms build 20210920.1 (#5355) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21468.5 to 7.0.0-alpha.1.21470.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bb6af74c8..234a825a9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 2175d4afd54c3fbe376907f31b978a630d6bca02 + 8ce2628f078bb0a739eb84c23789bab86d129e2a - + https://github.com/dotnet/winforms - 2175d4afd54c3fbe376907f31b978a630d6bca02 + 8ce2628f078bb0a739eb84c23789bab86d129e2a - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 - + https://github.com/dotnet/runtime - 78593b9e095f974305b2033b465455e458e30267 + 6c9921d2ad188d81af53892930a87ee5ad97c979 diff --git a/eng/Versions.props b/eng/Versions.props index c30a067fc..d074c903e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21469.1 + 7.0.0-alpha.1.21470.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 - 7.0.0-alpha.1.21468.5 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.1 From 810ebae9cc2f951c1ba52fbadcf3987a351b5898 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 20 Sep 2021 18:01:06 +0000 Subject: [PATCH 0104/1033] Update dependencies from https://github.com/dotnet/winforms build 20210920.2 (#5356) [main] Update dependencies from dotnet/winforms --- 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 234a825a9..ebdd2ddc3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 8ce2628f078bb0a739eb84c23789bab86d129e2a + f60827a56d9e42ca272bf40871401e76d3af16f8 - + https://github.com/dotnet/winforms - 8ce2628f078bb0a739eb84c23789bab86d129e2a + f60827a56d9e42ca272bf40871401e76d3af16f8 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index d074c903e..5d283e840 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21470.2 From d3c7d5d1c23db3e12bd0a40795df3822ec8eda89 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 21 Sep 2021 12:43:25 +0000 Subject: [PATCH 0105/1033] Update dependencies from https://github.com/dotnet/arcade build 20210920.4 (#5361) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- eng/common/tools.ps1 | 26 ++++++++++++++++++-------- global.json | 4 ++-- 4 files changed, 33 insertions(+), 23 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ebdd2ddc3..67d96535d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 734d875ba2abfb5c8f5f52368e7d4711ee366e31 + f959b455e6feceeaee50f95e07dac7b8e470bc2e - + https://github.com/dotnet/arcade - 734d875ba2abfb5c8f5f52368e7d4711ee366e31 + f959b455e6feceeaee50f95e07dac7b8e470bc2e - + https://github.com/dotnet/arcade - 734d875ba2abfb5c8f5f52368e7d4711ee366e31 + f959b455e6feceeaee50f95e07dac7b8e470bc2e - + https://github.com/dotnet/arcade - 734d875ba2abfb5c8f5f52368e7d4711ee366e31 + f959b455e6feceeaee50f95e07dac7b8e470bc2e - + https://github.com/dotnet/arcade - 734d875ba2abfb5c8f5f52368e7d4711ee366e31 + f959b455e6feceeaee50f95e07dac7b8e470bc2e diff --git a/eng/Versions.props b/eng/Versions.props index 5d283e840..56cd844a1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21466.4 - 7.0.0-beta.21466.4 - 7.0.0-beta.21466.4 + 7.0.0-beta.21470.4 + 7.0.0-beta.21470.4 + 7.0.0-beta.21470.4 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 02347914f..444842899 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -709,14 +709,7 @@ function MSBuild() { Write-PipelineSetVariable -Name 'NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS' -Value '20' } - if ($ci) { - $env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true' - $env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6 - $env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000 - Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true' - Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6' - Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' - } + Enable-Nuget-EnhancedRetry $toolsetBuildProject = InitializeToolset $basePath = Split-Path -parent $toolsetBuildProject @@ -764,6 +757,8 @@ function MSBuild-Core() { } } + Enable-Nuget-EnhancedRetry + $buildTool = InitializeBuildTool $cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci" @@ -904,3 +899,18 @@ function Try-LogClientIpAddress() Write-Host "Unable to get this machine's effective IP address for logging: $_" } } + +# +# If $ci flag is set, turn on (and log that we did) special environment variables for improved Nuget client retry logic. +# +function Enable-Nuget-EnhancedRetry() { + if ($ci) { + Write-Host "Setting NUGET enhanced retry environment variables" + $env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true' + $env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6 + $env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000 + Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true' + Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6' + Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000' + } +} diff --git a/global.json b/global.json index 33228b19c..e950cee9e 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21466.4", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21466.4" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21470.4", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21470.4" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From a88b809d2b5ac5750012a7c6f99d60ac1e8941d7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 21 Sep 2021 13:35:23 +0000 Subject: [PATCH 0106/1033] Update dependencies from https://github.com/dotnet/winforms build 20210921.1 (#5363) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21470.1 to 7.0.0-alpha.1.21471.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 67d96535d..e76006db4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - f60827a56d9e42ca272bf40871401e76d3af16f8 + 41debf9e180483eab22f99c3bcad99d366a4e173 - + https://github.com/dotnet/winforms - f60827a56d9e42ca272bf40871401e76d3af16f8 + 41debf9e180483eab22f99c3bcad99d366a4e173 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 - + https://github.com/dotnet/runtime - 6c9921d2ad188d81af53892930a87ee5ad97c979 + 5ba7854fa47572eccae544bd101643a1a99db9d4 diff --git a/eng/Versions.props b/eng/Versions.props index 56cd844a1..6b76b6511 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21470.2 + 7.0.0-alpha.1.21471.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 - 7.0.0-alpha.1.21470.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.1 From 75e0ba158c90b09be1cdff1da881fd6fb48f075a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 21 Sep 2021 17:52:47 +0000 Subject: [PATCH 0107/1033] Update dependencies from https://github.com/dotnet/winforms build 20210921.6 (#5365) [main] Update dependencies from dotnet/winforms --- 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 e76006db4..fb7a54494 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 41debf9e180483eab22f99c3bcad99d366a4e173 + 314350bc9805af8fd479a7c19696dd72a6f62194 - + https://github.com/dotnet/winforms - 41debf9e180483eab22f99c3bcad99d366a4e173 + 314350bc9805af8fd479a7c19696dd72a6f62194 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6b76b6511..b67955cb6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21471.6 From 7b3be56a1e92b1be0bf06c2d74140d9769ffaeae Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 21 Sep 2021 18:43:30 +0000 Subject: [PATCH 0108/1033] Update dependencies from https://github.com/dotnet/winforms build 20210921.9 (#5366) [main] Update dependencies from dotnet/winforms --- 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 fb7a54494..ff9d9744a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 314350bc9805af8fd479a7c19696dd72a6f62194 + 834d0a0d364c82bf70803706886ff9a40bd3e090 - + https://github.com/dotnet/winforms - 314350bc9805af8fd479a7c19696dd72a6f62194 + 834d0a0d364c82bf70803706886ff9a40bd3e090 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index b67955cb6..449db90a2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21471.6 + 7.0.0-alpha.1.21471.9 From 36a32345f71076fba0ea65cfda5a60a64fa3eb7d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 22 Sep 2021 12:38:35 +0000 Subject: [PATCH 0109/1033] Update dependencies from https://github.com/dotnet/arcade build 20210921.3 (#5368) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ff9d9744a..c4a3be180 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - f959b455e6feceeaee50f95e07dac7b8e470bc2e + 42b72b125d07dbc8fb3145fc10a8f332961bc0ba - + https://github.com/dotnet/arcade - f959b455e6feceeaee50f95e07dac7b8e470bc2e + 42b72b125d07dbc8fb3145fc10a8f332961bc0ba - + https://github.com/dotnet/arcade - f959b455e6feceeaee50f95e07dac7b8e470bc2e + 42b72b125d07dbc8fb3145fc10a8f332961bc0ba - + https://github.com/dotnet/arcade - f959b455e6feceeaee50f95e07dac7b8e470bc2e + 42b72b125d07dbc8fb3145fc10a8f332961bc0ba - + https://github.com/dotnet/arcade - f959b455e6feceeaee50f95e07dac7b8e470bc2e + 42b72b125d07dbc8fb3145fc10a8f332961bc0ba diff --git a/eng/Versions.props b/eng/Versions.props index 449db90a2..d4bccd8d7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21470.4 - 7.0.0-beta.21470.4 - 7.0.0-beta.21470.4 + 7.0.0-beta.21471.3 + 7.0.0-beta.21471.3 + 7.0.0-beta.21471.3 diff --git a/global.json b/global.json index e950cee9e..b5e931775 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21470.4", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21470.4" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21471.3", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21471.3" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From 801862699da4ac74db7fa143b1b59a0b0386db5c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 23 Sep 2021 19:17:18 +0000 Subject: [PATCH 0110/1033] Update dependencies from https://github.com/dotnet/winforms build 20210923.2 (#5376) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21471.1 to 7.0.0-alpha.1.21473.2 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c4a3be180..e04ae6f86 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 834d0a0d364c82bf70803706886ff9a40bd3e090 + d5cf0e7f5fa7dc5a74b21c86f8dbff9ac2657767 - + https://github.com/dotnet/winforms - 834d0a0d364c82bf70803706886ff9a40bd3e090 + d5cf0e7f5fa7dc5a74b21c86f8dbff9ac2657767 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 - + https://github.com/dotnet/runtime - 5ba7854fa47572eccae544bd101643a1a99db9d4 + bfaa457c804efb9247f495b7e04444b2bf216308 diff --git a/eng/Versions.props b/eng/Versions.props index d4bccd8d7..f56b6dffe 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21471.9 + 7.0.0-alpha.1.21473.2 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 - 7.0.0-alpha.1.21471.1 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.2 From 4ffa41f3484e450502dbb95c740375144da208ea Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 01:07:30 +0000 Subject: [PATCH 0111/1033] Update dependencies from https://github.com/dotnet/winforms build 20210923.11 (#5379) [main] Update dependencies from dotnet/winforms --- 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 e04ae6f86..a3eb0e9a5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - d5cf0e7f5fa7dc5a74b21c86f8dbff9ac2657767 + cbce7fee9d64014b9556d16b01e584829b84384c - + https://github.com/dotnet/winforms - d5cf0e7f5fa7dc5a74b21c86f8dbff9ac2657767 + cbce7fee9d64014b9556d16b01e584829b84384c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index f56b6dffe..d932b3715 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.11 From acd421136bd4b29821b2f71b96a0940d809eea7b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 03:03:04 +0000 Subject: [PATCH 0112/1033] Update dependencies from https://github.com/dotnet/winforms build 20210923.13 (#5380) [main] Update dependencies from dotnet/winforms --- 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 a3eb0e9a5..c1c53b939 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - cbce7fee9d64014b9556d16b01e584829b84384c + 8fcd2f23e79d3ad09c0502f3871bb0a23a4898ee - + https://github.com/dotnet/winforms - cbce7fee9d64014b9556d16b01e584829b84384c + 8fcd2f23e79d3ad09c0502f3871bb0a23a4898ee https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index d932b3715..7ea0fe8f6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21473.11 + 7.0.0-alpha.1.21473.13 From 2223881b1e7c28c68065b9d475ff8014f5f74da7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 12:41:58 +0000 Subject: [PATCH 0113/1033] [main] Update dependencies from dotnet/arcade (#5374) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c1c53b939..3ef3bcd40 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 42b72b125d07dbc8fb3145fc10a8f332961bc0ba + c7546c02b92d9d5cbad2345e15a5962253bf6560 - + https://github.com/dotnet/arcade - 42b72b125d07dbc8fb3145fc10a8f332961bc0ba + c7546c02b92d9d5cbad2345e15a5962253bf6560 - + https://github.com/dotnet/arcade - 42b72b125d07dbc8fb3145fc10a8f332961bc0ba + c7546c02b92d9d5cbad2345e15a5962253bf6560 - + https://github.com/dotnet/arcade - 42b72b125d07dbc8fb3145fc10a8f332961bc0ba + c7546c02b92d9d5cbad2345e15a5962253bf6560 - + https://github.com/dotnet/arcade - 42b72b125d07dbc8fb3145fc10a8f332961bc0ba + c7546c02b92d9d5cbad2345e15a5962253bf6560 diff --git a/eng/Versions.props b/eng/Versions.props index 7ea0fe8f6..6181bd46b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21471.3 - 7.0.0-beta.21471.3 - 7.0.0-beta.21471.3 + 7.0.0-beta.21473.1 + 7.0.0-beta.21473.1 + 7.0.0-beta.21473.1 diff --git a/global.json b/global.json index b5e931775..40fa13f3a 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21471.3", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21471.3" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21473.1", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21473.1" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From e9b843e5ffa142bd0a72d207217b3124c66d4ac0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 13:43:51 +0000 Subject: [PATCH 0114/1033] Update dependencies from https://github.com/dotnet/winforms build 20210924.1 (#5382) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21473.2 to 7.0.0-alpha.1.21473.13 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3ef3bcd40..a1d7bb859 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 8fcd2f23e79d3ad09c0502f3871bb0a23a4898ee + dbf3df784bcb6daa2f5a2ad59c766a3e183a06e3 - + https://github.com/dotnet/winforms - 8fcd2f23e79d3ad09c0502f3871bb0a23a4898ee + dbf3df784bcb6daa2f5a2ad59c766a3e183a06e3 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 - + https://github.com/dotnet/runtime - bfaa457c804efb9247f495b7e04444b2bf216308 + b82e8389715b27509ba10a50d9a14e125b8329d8 diff --git a/eng/Versions.props b/eng/Versions.props index 6181bd46b..84e749272 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21474.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 - 7.0.0-alpha.1.21473.2 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21473.13 From 7e0195803bf0144daba4e5fd2d8be93774d043ef Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 22:40:50 +0000 Subject: [PATCH 0115/1033] Update dependencies from https://github.com/dotnet/winforms build 20210924.17 (#5388) [main] Update dependencies from dotnet/winforms --- 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 a1d7bb859..bd4eaeb66 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - dbf3df784bcb6daa2f5a2ad59c766a3e183a06e3 + 80e24fd2b9819bb763d50a76e648eebf987380be - + https://github.com/dotnet/winforms - dbf3df784bcb6daa2f5a2ad59c766a3e183a06e3 + 80e24fd2b9819bb763d50a76e648eebf987380be https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 84e749272..33ad8b9f5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21474.1 + 7.0.0-alpha.1.21474.17 From 1d8efc0f94d9fcaed13ffe72367dbf147a692da7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 25 Sep 2021 12:41:26 +0000 Subject: [PATCH 0116/1033] Update dependencies from https://github.com/dotnet/arcade build 20210924.2 (#5391) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 6 +++--- global.json | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bd4eaeb66..5f59115e0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - c7546c02b92d9d5cbad2345e15a5962253bf6560 + 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 - + https://github.com/dotnet/arcade - c7546c02b92d9d5cbad2345e15a5962253bf6560 + 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 - + https://github.com/dotnet/arcade - c7546c02b92d9d5cbad2345e15a5962253bf6560 + 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 - + https://github.com/dotnet/arcade - c7546c02b92d9d5cbad2345e15a5962253bf6560 + 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 - + https://github.com/dotnet/arcade - c7546c02b92d9d5cbad2345e15a5962253bf6560 + 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 diff --git a/eng/Versions.props b/eng/Versions.props index 33ad8b9f5..4d19a4965 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21473.1 - 7.0.0-beta.21473.1 - 7.0.0-beta.21473.1 + 7.0.0-beta.21474.2 + 7.0.0-beta.21474.2 + 7.0.0-beta.21474.2 diff --git a/global.json b/global.json index 40fa13f3a..3b5ee8dc4 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21473.1", - "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21473.1" + "Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21474.2", + "Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.21474.2" }, "sdk": { "version": "6.0.100-rc.1.21430.12" From 50bd42752f164974b7d9be992239d2c354815bc7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 27 Sep 2021 18:30:37 +0000 Subject: [PATCH 0117/1033] Update dependencies from https://github.com/dotnet/winforms build 20210927.1 (#5394) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21473.13 to 7.0.0-alpha.1.21476.2 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5f59115e0..4cb8cfe5f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - 80e24fd2b9819bb763d50a76e648eebf987380be + 4e79247094444df703c84c8517313c753b191a71 - + https://github.com/dotnet/winforms - 80e24fd2b9819bb763d50a76e648eebf987380be + 4e79247094444df703c84c8517313c753b191a71 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 - + https://github.com/dotnet/runtime - b82e8389715b27509ba10a50d9a14e125b8329d8 + 78ac8430e8480742181170eef91a6fb016535aa4 diff --git a/eng/Versions.props b/eng/Versions.props index 4d19a4965..135d64b6e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21474.17 + 7.0.0-alpha.1.21477.1 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 - 7.0.0-alpha.1.21473.13 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21476.2 From 039d1d823a7caf7fdffd15433e13d92b7f085c62 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 27 Sep 2021 19:45:59 +0000 Subject: [PATCH 0118/1033] Update dependencies from https://github.com/dotnet/winforms build 20210927.2 (#5395) [main] Update dependencies from dotnet/winforms --- 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 4cb8cfe5f..669a68684 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 4e79247094444df703c84c8517313c753b191a71 + 0a43109ff744677819267df0831a1ae12b1b603b - + https://github.com/dotnet/winforms - 4e79247094444df703c84c8517313c753b191a71 + 0a43109ff744677819267df0831a1ae12b1b603b https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 135d64b6e..a3aaf2b12 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21477.1 + 7.0.0-alpha.1.21477.2 From ae6115ac8c579524d12e7a70fb8dcb1610c7db49 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 02:55:32 +0000 Subject: [PATCH 0119/1033] Update dependencies from https://github.com/dotnet/winforms build 20210927.7 (#5398) [main] Update dependencies from dotnet/winforms --- 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 669a68684..985604102 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 0a43109ff744677819267df0831a1ae12b1b603b + a88610b7c10afa8a1353322e9fb8ecb4fc9580b0 - + https://github.com/dotnet/winforms - 0a43109ff744677819267df0831a1ae12b1b603b + a88610b7c10afa8a1353322e9fb8ecb4fc9580b0 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index a3aaf2b12..8ebb6e643 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21477.2 + 7.0.0-alpha.1.21477.7 From 8e28b83065666229978b038482decdb0bce937ef Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:53:40 +0000 Subject: [PATCH 0120/1033] Update dependencies from https://github.com/dotnet/winforms build 20210928.2 (#5400) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21476.2 to 7.0.0-alpha.1.21477.12 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 985604102..7492ed43b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - a88610b7c10afa8a1353322e9fb8ecb4fc9580b0 + 5e521c1a3165bcb012d08c7122443002541e18ab - + https://github.com/dotnet/winforms - a88610b7c10afa8a1353322e9fb8ecb4fc9580b0 + 5e521c1a3165bcb012d08c7122443002541e18ab - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb - + https://github.com/dotnet/runtime - 78ac8430e8480742181170eef91a6fb016535aa4 + 580d17fd334e297d981fce02753ed7a1ebe8b8eb diff --git a/eng/Versions.props b/eng/Versions.props index 8ebb6e643..737d01ead 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.7 + 7.0.0-alpha.1.21478.2 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 - 7.0.0-alpha.1.21476.2 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21477.12 From 2c07197847dae4f2377b63fbec8311677a1ba69e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 17:21:59 +0000 Subject: [PATCH 0121/1033] Update dependencies from https://github.com/dotnet/winforms build 20210928.3 (#5401) [main] Update dependencies from dotnet/winforms --- 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 7492ed43b..f8858398b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 5e521c1a3165bcb012d08c7122443002541e18ab + e6116dbc37dc95912b8a0a377cd4dd357c316c26 - + https://github.com/dotnet/winforms - 5e521c1a3165bcb012d08c7122443002541e18ab + e6116dbc37dc95912b8a0a377cd4dd357c316c26 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 737d01ead..91ab223d1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21478.2 + 7.0.0-alpha.1.21478.3 From 777598c7a00386c6cf7cb21da3d05b624fdddb52 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Sep 2021 17:58:15 +0000 Subject: [PATCH 0122/1033] Update dependencies from https://github.com/dotnet/winforms build 20210929.3 (#5406) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21477.12 to 7.0.0-alpha.1.21479.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f8858398b..90bf88f29 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - e6116dbc37dc95912b8a0a377cd4dd357c316c26 + e2ac1769fdb9d79e8dc7dfc51ee126c148c5498a - + https://github.com/dotnet/winforms - e6116dbc37dc95912b8a0a377cd4dd357c316c26 + e2ac1769fdb9d79e8dc7dfc51ee126c148c5498a - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 - + https://github.com/dotnet/runtime - 580d17fd334e297d981fce02753ed7a1ebe8b8eb + 72d643d05ab23888f30a57d447154e36f979f3d1 diff --git a/eng/Versions.props b/eng/Versions.props index 91ab223d1..c0cbf446e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21478.3 + 7.0.0-alpha.1.21479.3 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 - 7.0.0-alpha.1.21477.12 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21479.1 From 0dce4a07f7c51168ff0daf068b0d530a8b53085f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Sep 2021 18:28:37 +0000 Subject: [PATCH 0123/1033] Update dependencies from https://github.com/dotnet/winforms build 20210930.5 (#5414) [main] Update dependencies from dotnet/winforms - Coherency Updates: - System.CodeDom: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Configuration.ConfigurationManager: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Diagnostics.EventLog: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.DirectoryServices: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Reflection.MetadataLoadContext: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Security.Cryptography.Xml: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Security.Permissions: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Windows.Extensions: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.IO.Packaging: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - System.Resources.Extensions: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21479.1 to 7.0.0-alpha.1.21480.1 (parent: Microsoft.Private.Winforms) --- eng/Version.Details.xml | 68 ++++++++++++++++++++--------------------- eng/Versions.props | 30 +++++++++--------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 90bf88f29..956d7a30b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,77 +1,77 @@ - + https://github.com/dotnet/winforms - e2ac1769fdb9d79e8dc7dfc51ee126c148c5498a + 66eab9ad2996f395a47bf8916a455e5c94d5bdab - + https://github.com/dotnet/winforms - e2ac1769fdb9d79e8dc7dfc51ee126c148c5498a + 66eab9ad2996f395a47bf8916a455e5c94d5bdab - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int 552adb9a860d3e46354669315bbf72aa421ccdc1 - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c - + https://github.com/dotnet/runtime - 72d643d05ab23888f30a57d447154e36f979f3d1 + 95569138572484e9e9d1292b890d83e3c121107c diff --git a/eng/Versions.props b/eng/Versions.props index c0cbf446e..7058e6eae 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,12 +4,12 @@ 7.0.0 alpha 1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 - 7.0.0-alpha.1.21479.3 + 7.0.0-alpha.1.21480.5 @@ -18,22 +18,22 @@ 6.0.0-rc.1.21406.5 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 4.6.0-preview4.19176.11 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 - 7.0.0-alpha.1.21479.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 + 7.0.0-alpha.1.21480.1 From bd364da93ae2b87f3db00ef8c2e82316c3927d7c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 1 Oct 2021 18:06:16 +0000 Subject: [PATCH 0124/1033] Update dependencies from https://github.com/dotnet/winforms build 20211001.2 (#5422) [main] Update dependencies from dotnet/winforms --- 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 956d7a30b..7b6ab2b2f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 66eab9ad2996f395a47bf8916a455e5c94d5bdab + be52b79bfe1553d69118e1a630767f65a8c653c1 - + https://github.com/dotnet/winforms - 66eab9ad2996f395a47bf8916a455e5c94d5bdab + be52b79bfe1553d69118e1a630767f65a8c653c1 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7058e6eae..9744efb50 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21480.5 + 7.0.0-alpha.1.21501.2 From 2ff35287f783d61448d907b89b619b29b9e1b784 Mon Sep 17 00:00:00 2001 From: Ayush Verma Date: Mon, 4 Oct 2021 17:40:26 +0530 Subject: [PATCH 0125/1033] Updating Compression Native dll Name (dotnet#505) --- .../src/Common/src/Interop/Windows/Interop.Libraries.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.DotNet.Wpf/src/Common/src/Interop/Windows/Interop.Libraries.cs b/src/Microsoft.DotNet.Wpf/src/Common/src/Interop/Windows/Interop.Libraries.cs index e65243119..e03c5fb66 100644 --- a/src/Microsoft.DotNet.Wpf/src/Common/src/Interop/Windows/Interop.Libraries.cs +++ b/src/Microsoft.DotNet.Wpf/src/Common/src/Interop/Windows/Interop.Libraries.cs @@ -32,6 +32,6 @@ internal static partial class Libraries internal const string WinMM = "winmm.dll"; internal const string Ws2_32 = "ws2_32.dll"; internal const string Wtsapi32 = "wtsapi32.dll"; - internal const string CompressionNative = "clrcompression.dll"; + internal const string CompressionNative = "System.IO.Compression.Native.dll"; } } From 88be6dc9309c0ea6139c99295692554e7c8a3be8 Mon Sep 17 00:00:00 2001 From: Jon Fortescue Date: Mon, 4 Oct 2021 12:49:37 -0700 Subject: [PATCH 0126/1033] Switch to 1ES R&D pools on main --- azure-pipelines.yml | 4 ++-- eng/pipeline.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 435a62595..bd4f2bbaa 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -72,8 +72,8 @@ stages: ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: # agent pool can't be read from a user-defined variable (Azure DevOps limitation) pool: - name: NetCoreInternal-Pool - queue: buildpool.windows.10.amd64.vs2019.pre + name: NetCore1ESPool-Internal + demands: ImageOverride -equals build.windows.10.amd64.vs2019.pre # runAsPublic is used in expressions, which can't read from user-defined variables runAsPublic: false diff --git a/eng/pipeline.yml b/eng/pipeline.yml index c6bc7f43e..5c91fcade 100644 --- a/eng/pipeline.yml +++ b/eng/pipeline.yml @@ -34,11 +34,11 @@ jobs: # Will eventually change this to two BYOC pools. # agent pool can't be read from a user-defined variable (Azure DevOps limitation) ${{ if eq(variables['System.TeamProject'], 'public') }}: - name: NetCorePublic-Pool - queue: BuildPool.Windows.10.Amd64.VS2019.Pre.Open + name: NetCore1ESPool-Public + demands: ImageOverride -equals Build.Windows.10.Amd64.VS2019.Pre.Open ${{ if eq(variables['System.TeamProject'], 'internal') }}: - name: NetCoreInternal-Pool - queue: buildpool.windows.10.amd64.vs2019.pre + name: NetCore1ESPool-Internal + demands: ImageOverride -equals build.windows.10.amd64.vs2019.pre variables: # needed for signing - name: _TeamName From 31e4e357fcba789de77d39307997352c61f07ed5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 4 Oct 2021 23:29:13 +0000 Subject: [PATCH 0127/1033] Update dependencies from https://github.com/dotnet/winforms build 20211004.7 (#5435) [main] Update dependencies from dotnet/winforms --- 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 7b6ab2b2f..39e722f65 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - be52b79bfe1553d69118e1a630767f65a8c653c1 + 36d56fa003a558ac4170501efe3357a5a11000c8 - + https://github.com/dotnet/winforms - be52b79bfe1553d69118e1a630767f65a8c653c1 + 36d56fa003a558ac4170501efe3357a5a11000c8 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 9744efb50..f5201e4d3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21501.2 + 7.0.0-alpha.1.21504.7 From d036030c79db6997fa63b566d43281dcada8de0b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 4 Oct 2021 23:59:18 +0000 Subject: [PATCH 0128/1033] Update dependencies from https://github.com/dotnet/winforms build 20211004.8 (#5436) [main] Update dependencies from dotnet/winforms --- 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 39e722f65..be58c4ca9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 36d56fa003a558ac4170501efe3357a5a11000c8 + ca1d20602da2a0a2c5b121e606995218eda8ae1e - + https://github.com/dotnet/winforms - 36d56fa003a558ac4170501efe3357a5a11000c8 + ca1d20602da2a0a2c5b121e606995218eda8ae1e https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index f5201e4d3..cea09d9aa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.7 + 7.0.0-alpha.1.21504.8 From a47fcbae568a464a58052d722cb700d1fad5b1c4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 00:20:03 +0000 Subject: [PATCH 0129/1033] [main] Update dependencies from dotnet/winforms (#5437) [main] Update dependencies from dotnet/winforms --- 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 be58c4ca9..680bbb157 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - ca1d20602da2a0a2c5b121e606995218eda8ae1e + d42e5f74fd81428090bf48b1d73b3a0ed63cd915 - + https://github.com/dotnet/winforms - ca1d20602da2a0a2c5b121e606995218eda8ae1e + d42e5f74fd81428090bf48b1d73b3a0ed63cd915 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index cea09d9aa..cd501f8ba 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.8 + 7.0.0-alpha.1.21504.12 From 5b6555808fb05eb4c600738e6bdbe6b1db5cce10 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 00:42:13 +0000 Subject: [PATCH 0130/1033] [main] Update dependencies from dotnet/winforms (#5439) [main] Update dependencies from dotnet/winforms --- 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 680bbb157..8a9569ee6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - d42e5f74fd81428090bf48b1d73b3a0ed63cd915 + c139527ad43068fa0a575ad4a4d0ea3a052e2e3e - + https://github.com/dotnet/winforms - d42e5f74fd81428090bf48b1d73b3a0ed63cd915 + c139527ad43068fa0a575ad4a4d0ea3a052e2e3e https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index cd501f8ba..aaf244702 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.12 + 7.0.0-alpha.1.21504.16 From bf19d99552a17982ae6619727127975b65804c55 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 05:23:35 +0000 Subject: [PATCH 0131/1033] Update dependencies from https://github.com/dotnet/winforms build 20211004.17 (#5446) [main] Update dependencies from dotnet/winforms --- 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 8a9569ee6..1a532d7c5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - c139527ad43068fa0a575ad4a4d0ea3a052e2e3e + 071fce47ceb5b125298edac2f7bd2304911f79e9 - + https://github.com/dotnet/winforms - c139527ad43068fa0a575ad4a4d0ea3a052e2e3e + 071fce47ceb5b125298edac2f7bd2304911f79e9 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index aaf244702..bf55fae4a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.16 + 7.0.0-alpha.1.21504.17 From e9fb8c18728ca28dad0927a617485fba75fa86c9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 17:05:18 +0000 Subject: [PATCH 0132/1033] Update dependencies from https://github.com/dotnet/winforms build 20211004.18 (#5447) [main] Update dependencies from dotnet/winforms --- 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 1a532d7c5..0c865d2c0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 071fce47ceb5b125298edac2f7bd2304911f79e9 + 1ffbf447a96e7dd46d63912a7d03f651b922fc80 - + https://github.com/dotnet/winforms - 071fce47ceb5b125298edac2f7bd2304911f79e9 + 1ffbf447a96e7dd46d63912a7d03f651b922fc80 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index bf55fae4a..96a5427b9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.17 + 7.0.0-alpha.1.21504.18 From 3374a6c33ef4ad380871c824f57dd3b72ac2752e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 19:22:45 +0000 Subject: [PATCH 0133/1033] Update dependencies from https://github.com/dotnet/winforms build 20211005.1 (#5451) [main] Update dependencies from dotnet/winforms --- 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 0c865d2c0..08ba22675 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 1ffbf447a96e7dd46d63912a7d03f651b922fc80 + a358bc80da8a2ad6f28cb51f7c02b30c3cf76da3 - + https://github.com/dotnet/winforms - 1ffbf447a96e7dd46d63912a7d03f651b922fc80 + a358bc80da8a2ad6f28cb51f7c02b30c3cf76da3 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 96a5427b9..8d1b32314 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21504.18 + 7.0.0-alpha.1.21505.1 From 7cf3f817a0efc36ac15aaf828a03dc66a98d633a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 19:46:20 +0000 Subject: [PATCH 0134/1033] Update dependencies from https://github.com/dotnet/winforms build 20211005.2 (#5452) [main] Update dependencies from dotnet/winforms --- 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 08ba22675..80144064f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - a358bc80da8a2ad6f28cb51f7c02b30c3cf76da3 + 0405ba256e98a74073121b23995de211b2fd7890 - + https://github.com/dotnet/winforms - a358bc80da8a2ad6f28cb51f7c02b30c3cf76da3 + 0405ba256e98a74073121b23995de211b2fd7890 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 8d1b32314..1528838ff 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21505.1 + 7.0.0-alpha.1.21505.2 From 3d5e573903abe3642763197e9e1671c4482f2118 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 6 Oct 2021 00:08:35 +0000 Subject: [PATCH 0135/1033] Update dependencies from https://github.com/dotnet/winforms build 20211005.7 (#5455) [main] Update dependencies from dotnet/winforms --- 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 80144064f..e7aff99d3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - 0405ba256e98a74073121b23995de211b2fd7890 + bdb43b2d87af0fee803c6c161ef3438ca25cb487 - + https://github.com/dotnet/winforms - 0405ba256e98a74073121b23995de211b2fd7890 + bdb43b2d87af0fee803c6c161ef3438ca25cb487 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1528838ff..a33610fe6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21505.2 + 7.0.0-alpha.1.21505.7 From 1cb768ab05ba44d802bf23b24c67d3a04c6effff Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 6 Oct 2021 00:29:02 +0000 Subject: [PATCH 0136/1033] Update dependencies from https://github.com/dotnet/winforms build 20211005.8 (#5456) [main] Update dependencies from dotnet/winforms --- 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 e7aff99d3..e7d9db24a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - bdb43b2d87af0fee803c6c161ef3438ca25cb487 + c1f8d96e652f8b577b5f54f02c54c3de303b4bef - + https://github.com/dotnet/winforms - bdb43b2d87af0fee803c6c161ef3438ca25cb487 + c1f8d96e652f8b577b5f54f02c54c3de303b4bef https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index a33610fe6..391956af0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21505.7 + 7.0.0-alpha.1.21505.8 From 0eae65a9b33dd74fe3382669e8243a0d12e90666 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 6 Oct 2021 07:28:08 +0000 Subject: [PATCH 0137/1033] Update dependencies from https://github.com/dotnet/winforms build 20211005.9 (#5457) [main] Update dependencies from dotnet/winforms --- 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 e7d9db24a..9e6a32155 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - c1f8d96e652f8b577b5f54f02c54c3de303b4bef + d2d46fa34eddbbadbcaa15f62b455bbf035ebbb2 - + https://github.com/dotnet/winforms - c1f8d96e652f8b577b5f54f02c54c3de303b4bef + d2d46fa34eddbbadbcaa15f62b455bbf035ebbb2 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 391956af0..74ea7a8e5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21505.8 + 7.0.0-alpha.1.21505.9 From 5e4c01e6ccc76f75abf47e360107d2b5706fd5fc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 7 Oct 2021 00:14:22 +0000 Subject: [PATCH 0138/1033] Update dependencies from https://github.com/dotnet/winforms build 20211006.3 (#5460) [main] Update dependencies from dotnet/winforms --- 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 9e6a32155..370203128 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,13 +1,13 @@ - + https://github.com/dotnet/winforms - d2d46fa34eddbbadbcaa15f62b455bbf035ebbb2 + 77b1fbc40e0bcc931bec28bfe0af2bc579793984 - + https://github.com/dotnet/winforms - d2d46fa34eddbbadbcaa15f62b455bbf035ebbb2 + 77b1fbc40e0bcc931bec28bfe0af2bc579793984 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 74ea7a8e5..dc75e8b14 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -9,7 +9,7 @@ - 7.0.0-alpha.1.21505.9 + 7.0.0-alpha.1.21506.3 From 4c24ed4640e6c01f5272a762e2ea7b47cef9533f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 8 Oct 2021 12:37:43 +0000 Subject: [PATCH 0139/1033] Update dependencies from https://github.com/dotnet/arcade build 20211007.3 (#5470) [main] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 20 +++++++++--------- eng/Versions.props | 6 +++--- eng/common/native/init-compiler.sh | 22 +++++++++++--------- eng/common/templates/steps/send-to-helix.yml | 3 --- global.json | 4 ++-- 5 files changed, 27 insertions(+), 28 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 370203128..a922b5ccb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,25 +75,25 @@ - + https://github.com/dotnet/arcade - 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 + 98bacf3d68679c51adbb7c596a3de16a7f9acacf - + https://github.com/dotnet/arcade - 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 + 98bacf3d68679c51adbb7c596a3de16a7f9acacf - + https://github.com/dotnet/arcade - 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 + 98bacf3d68679c51adbb7c596a3de16a7f9acacf - + https://github.com/dotnet/arcade - 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 + 98bacf3d68679c51adbb7c596a3de16a7f9acacf - + https://github.com/dotnet/arcade - 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5 + 98bacf3d68679c51adbb7c596a3de16a7f9acacf diff --git a/eng/Versions.props b/eng/Versions.props index dc75e8b14..6e3e97d50 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,9 +37,9 @@ - 7.0.0-beta.21474.2 - 7.0.0-beta.21474.2 - 7.0.0-beta.21474.2 + 7.0.0-beta.21507.3 + 7.0.0-beta.21507.3 + 7.0.0-beta.21507.3 diff --git a/eng/common/native/init-compiler.sh b/eng/common/native/init-compiler.sh index 1daadf32a..8c944f30b 100644 --- a/eng/common/native/init-compiler.sh +++ b/eng/common/native/init-compiler.sh @@ -3,9 +3,10 @@ # This file detects the C/C++ compiler and exports it to the CC/CXX environment variables # -if [[ "$#" -lt 2 ]]; then +if [[ "$#" -lt 3 ]]; then echo "Usage..." - echo "init-compiler.sh " + echo "init-compiler.sh