From 068f4794125939d9104dd0293a85cfb5c6a0b5fd Mon Sep 17 00:00:00 2001 From: michael-hawker <24302614+michael-hawker@users.noreply.github.com> Date: Mon, 31 Jul 2023 15:32:58 -0700 Subject: [PATCH] Automates all AssemblyGeneration into the props file for libraries Also Automates the InternalsVisibleTo into the AssemblyGeneration vs. specific file from template --- .../Animations/src/AdditionalAssemblyInfo.cs | 13 ------------- .../Behaviors/src/AdditionalAssemblyInfo.cs | 13 ------------- .../CameraPreview/src/AdditionalAssemblyInfo.cs | 13 ------------- .../Collections/src/AdditionalAssemblyInfo.cs | 13 ------------- .../Converters/src/AdditionalAssemblyInfo.cs | 13 ------------- .../DeveloperTools/src/AdditionalAssemblyInfo.cs | 13 ------------- .../Extensions/src/AdditionalAssemblyInfo.cs | 13 ------------- .../src/AdditionalAssemblyInfo.cs | 13 ------------- components/Helpers/src/AdditionalAssemblyInfo.cs | 13 ------------- .../ImageCropper/src/AdditionalAssemblyInfo.cs | 13 ------------- .../src/AdditionalAssemblyInfo.cs | 13 ------------- components/Media/src/AdditionalAssemblyInfo.cs | 13 ------------- .../MetadataControl/src/AdditionalAssemblyInfo.cs | 13 ------------- .../Primitives/src/AdditionalAssemblyInfo.cs | 15 --------------- .../RadialGauge/src/AdditionalAssemblyInfo.cs | 13 ------------- .../RangeSelector/src/AdditionalAssemblyInfo.cs | 13 ------------- .../RichSuggestBox/src/AdditionalAssemblyInfo.cs | 13 ------------- .../src/AdditionalAssemblyInfo.cs | 13 ------------- components/Sizers/src/AdditionalAssemblyInfo.cs | 13 ------------- .../src/AdditionalAssemblyInfo.cs | 13 ------------- components/Triggers/src/AdditionalAssemblyInfo.cs | 13 ------------- tooling | 2 +- 22 files changed, 1 insertion(+), 276 deletions(-) delete mode 100644 components/Animations/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Behaviors/src/AdditionalAssemblyInfo.cs delete mode 100644 components/CameraPreview/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Collections/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Converters/src/AdditionalAssemblyInfo.cs delete mode 100644 components/DeveloperTools/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Extensions/src/AdditionalAssemblyInfo.cs delete mode 100644 components/HeaderedControls/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Helpers/src/AdditionalAssemblyInfo.cs delete mode 100644 components/ImageCropper/src/AdditionalAssemblyInfo.cs delete mode 100644 components/LayoutTransformControl/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Media/src/AdditionalAssemblyInfo.cs delete mode 100644 components/MetadataControl/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Primitives/src/AdditionalAssemblyInfo.cs delete mode 100644 components/RadialGauge/src/AdditionalAssemblyInfo.cs delete mode 100644 components/RangeSelector/src/AdditionalAssemblyInfo.cs delete mode 100644 components/RichSuggestBox/src/AdditionalAssemblyInfo.cs delete mode 100644 components/SettingsControls/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Sizers/src/AdditionalAssemblyInfo.cs delete mode 100644 components/TokenizingTextBox/src/AdditionalAssemblyInfo.cs delete mode 100644 components/Triggers/src/AdditionalAssemblyInfo.cs diff --git a/components/Animations/src/AdditionalAssemblyInfo.cs b/components/Animations/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 08adeed5..00000000 --- a/components/Animations/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Animations.Tests.Uwp")] -[assembly: InternalsVisibleTo("Animations.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Behaviors/src/AdditionalAssemblyInfo.cs b/components/Behaviors/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index a909d34f..00000000 --- a/components/Behaviors/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Behaviors.Tests.Uwp")] -[assembly: InternalsVisibleTo("Behaviors.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/CameraPreview/src/AdditionalAssemblyInfo.cs b/components/CameraPreview/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index f3578634..00000000 --- a/components/CameraPreview/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("CameraPreview.Tests.Uwp")] -[assembly: InternalsVisibleTo("CameraPreview.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Collections/src/AdditionalAssemblyInfo.cs b/components/Collections/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 07f1c63e..00000000 --- a/components/Collections/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Collections.Tests.Uwp")] -[assembly: InternalsVisibleTo("Collections.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Converters/src/AdditionalAssemblyInfo.cs b/components/Converters/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index b2af446b..00000000 --- a/components/Converters/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Converters.Tests.Uwp")] -[assembly: InternalsVisibleTo("Converters.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/DeveloperTools/src/AdditionalAssemblyInfo.cs b/components/DeveloperTools/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 683e5390..00000000 --- a/components/DeveloperTools/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("DeveloperTools.Tests.Uwp")] -[assembly: InternalsVisibleTo("DeveloperTools.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Extensions/src/AdditionalAssemblyInfo.cs b/components/Extensions/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 660b712a..00000000 --- a/components/Extensions/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Extensions.Tests.Uwp")] -[assembly: InternalsVisibleTo("Extensions.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/HeaderedControls/src/AdditionalAssemblyInfo.cs b/components/HeaderedControls/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index ea96b9e0..00000000 --- a/components/HeaderedControls/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("HeaderedControls.Tests.Uwp")] -[assembly: InternalsVisibleTo("HeaderedControls.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Helpers/src/AdditionalAssemblyInfo.cs b/components/Helpers/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 72fb045a..00000000 --- a/components/Helpers/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Helpers.Tests.Uwp")] -[assembly: InternalsVisibleTo("Helpers.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/ImageCropper/src/AdditionalAssemblyInfo.cs b/components/ImageCropper/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 4f64050d..00000000 --- a/components/ImageCropper/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("ImageCropper.Tests.Uwp")] -[assembly: InternalsVisibleTo("ImageCropper.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/LayoutTransformControl/src/AdditionalAssemblyInfo.cs b/components/LayoutTransformControl/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 4da0bbee..00000000 --- a/components/LayoutTransformControl/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("LayoutTransformControl.Tests.Uwp")] -[assembly: InternalsVisibleTo("LayoutTransformControl.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Media/src/AdditionalAssemblyInfo.cs b/components/Media/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 7e58d70e..00000000 --- a/components/Media/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Media.Tests.Uwp")] -[assembly: InternalsVisibleTo("Media.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/MetadataControl/src/AdditionalAssemblyInfo.cs b/components/MetadataControl/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 1b1c483a..00000000 --- a/components/MetadataControl/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("MetadataControl.Tests.Uwp")] -[assembly: InternalsVisibleTo("MetadataControl.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Primitives/src/AdditionalAssemblyInfo.cs b/components/Primitives/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 6654231c..00000000 --- a/components/Primitives/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,15 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Primitives.Tests.Uwp")] -[assembly: InternalsVisibleTo("PrimitivesExperiment.Tests.Uwp")] -[assembly: InternalsVisibleTo("PrimitivesExperiment.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("Primitives.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/RadialGauge/src/AdditionalAssemblyInfo.cs b/components/RadialGauge/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 343502a1..00000000 --- a/components/RadialGauge/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("RadialGauge.Tests.Uwp")] -[assembly: InternalsVisibleTo("RadialGauge.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/RangeSelector/src/AdditionalAssemblyInfo.cs b/components/RangeSelector/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index fd2dc7b8..00000000 --- a/components/RangeSelector/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("RangeSelector.Tests.Uwp")] -[assembly: InternalsVisibleTo("RangeSelector.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/RichSuggestBox/src/AdditionalAssemblyInfo.cs b/components/RichSuggestBox/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 35626ccd..00000000 --- a/components/RichSuggestBox/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("RichSuggestBox.Tests.Uwp")] -[assembly: InternalsVisibleTo("RichSuggestBox.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/SettingsControls/src/AdditionalAssemblyInfo.cs b/components/SettingsControls/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index c5daab42..00000000 --- a/components/SettingsControls/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("SettingsControls.Tests.Uwp")] -[assembly: InternalsVisibleTo("SettingsControls.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Sizers/src/AdditionalAssemblyInfo.cs b/components/Sizers/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index dc2a92d0..00000000 --- a/components/Sizers/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("SizerBase.Tests.Uwp")] -[assembly: InternalsVisibleTo("SizerBase.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/TokenizingTextBox/src/AdditionalAssemblyInfo.cs b/components/TokenizingTextBox/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index cfffc6c1..00000000 --- a/components/TokenizingTextBox/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("TokenizingTextBox.Tests.Uwp")] -[assembly: InternalsVisibleTo("TokenizingTextBox.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/components/Triggers/src/AdditionalAssemblyInfo.cs b/components/Triggers/src/AdditionalAssemblyInfo.cs deleted file mode 100644 index 243967be..00000000 --- a/components/Triggers/src/AdditionalAssemblyInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Runtime.CompilerServices; - -// These `InternalsVisibleTo` calls are intended to make it easier for -// for any internal code to be testable in all the different test projects -// used with the Labs infrastructure. -[assembly: InternalsVisibleTo("Triggers.Tests.Uwp")] -[assembly: InternalsVisibleTo("Triggers.Tests.WinAppSdk")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.Uwp")] -[assembly: InternalsVisibleTo("CommunityToolkit.Tests.WinAppSdk")] diff --git a/tooling b/tooling index ec70cdff..4b02ae7c 160000 --- a/tooling +++ b/tooling @@ -1 +1 @@ -Subproject commit ec70cdfff37c8ac49663068f0064387e4b19613a +Subproject commit 4b02ae7c8827152d3be05de5834fafa7849b67e8