From f1f93232361a277f6a89d73492a71da1dfeb81c9 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 9 Oct 2019 15:27:48 +0200 Subject: [PATCH] Remove obsolete CodeCoverageAssemblyAttribute (dotnet/corefx#41674) Commit migrated from https://github.com/dotnet/corefx/commit/e0ad7cfd08719242c4613ffb9574cd77328a7ba6 --- .../ExcludeFromCodeCoverageAssemblyAttribute.cs | 14 -------------- .../tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj | 3 --- .../tests/System/Xml/BaseLibManaged/Globalization.cs | 2 -- .../Common/tests/System/Xml/ModuleCore/ModuleCore.csproj | 3 --- .../Common/tests/System/Xml/ModuleCore/ccommon.cs | 2 -- .../Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs | 2 -- .../Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj | 4 ---- src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs | 2 -- .../Common/tests/System/Xml/XmlDiff/XmlDiff.csproj | 4 ---- .../AssemblyInfo.cs | 5 ----- ...soft.Composition.Demos.ExtendedCollectionImports.csproj | 4 ---- .../System.Composition/tests/TestLibrary/TestClass.cs | 2 -- .../tests/TestLibrary/TestLibrary.csproj | 3 --- .../System.Private.Xml/tests/XmlReaderLib/CommonTest.cs | 2 -- .../tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj | 3 --- .../tests/AssemblyVersion/Program_0_0_0_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_0_0_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_0_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_1_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_1_2.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_1_3.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_2_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_1_3_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_2_0_0.cs | 2 -- .../tests/AssemblyVersion/Program_1_3_0_0.cs | 2 -- .../tests/AssemblyVersion/Program_3_0_0_0.cs | 2 -- .../System.Reflection.Tests.Assembly_0_0_0_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_0_0_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_0_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_1_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_1_2.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_1_3.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_2_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_1_3_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_2_0_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_1_3_0_0.csproj | 3 --- .../System.Reflection.Tests.Assembly_3_0_0_0.csproj | 3 --- .../ForwardedTypesAssembly/ForwardedTypesAssembly.csproj | 5 ----- .../tests/TestAssembly/AssemblyAttributes.cs | 5 ----- .../tests/TestAssembly/TestAssembly.csproj | 6 ------ src/libraries/System.Reflection/tests/TestExe/Program.cs | 2 -- .../tests/TestExe/System.Reflection.TestExe.csproj | 3 --- .../tests/AssemblyResolveTestApp/AssemblyAttributes.cs | 5 ----- .../AssemblyResolveTestApp/AssemblyResolveTestApp.csproj | 6 ------ .../tests/TestApp/AssemblyAttributes.cs | 5 ----- .../System.Runtime.Extensions/tests/TestApp/TestApp.csproj | 6 ------ .../tests/TestAppOutsideOfTPA/AssemblyAttributes.cs | 5 ----- .../tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj | 6 ------ .../tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs | 5 ----- .../VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj | 6 ------ 50 files changed, 175 deletions(-) delete mode 100644 src/libraries/Common/src/System/Diagnostics/CodeAnalysis/ExcludeFromCodeCoverageAssemblyAttribute.cs delete mode 100644 src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/AssemblyInfo.cs delete mode 100644 src/libraries/System.Reflection/tests/TestAssembly/AssemblyAttributes.cs delete mode 100644 src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyAttributes.cs delete mode 100644 src/libraries/System.Runtime.Extensions/tests/TestApp/AssemblyAttributes.cs delete mode 100644 src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/AssemblyAttributes.cs delete mode 100644 src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs diff --git a/src/libraries/Common/src/System/Diagnostics/CodeAnalysis/ExcludeFromCodeCoverageAssemblyAttribute.cs b/src/libraries/Common/src/System/Diagnostics/CodeAnalysis/ExcludeFromCodeCoverageAssemblyAttribute.cs deleted file mode 100644 index 835c820..0000000 --- a/src/libraries/Common/src/System/Diagnostics/CodeAnalysis/ExcludeFromCodeCoverageAssemblyAttribute.cs +++ /dev/null @@ -1,14 +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. - -namespace System.Diagnostics.CodeAnalysis -{ - // Matches the *.ExcludeFromCodeCoverage* filter passed to OpenCover but - // unlike ExcludeFromCodeCoverageAttribute can be applied to assemblies. - [Conditional("DEBUG")] // don't bloat release assemblies - [AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)] - internal sealed class ExcludeFromCodeCoverageAssemblyAttribute : Attribute - { - } -} diff --git a/src/libraries/Common/tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj b/src/libraries/Common/tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj index 727a759..fd4304f 100644 --- a/src/libraries/Common/tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj +++ b/src/libraries/Common/tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/Common/tests/System/Xml/BaseLibManaged/Globalization.cs b/src/libraries/Common/tests/System/Xml/BaseLibManaged/Globalization.cs index 36bae12..2c27401 100644 --- a/src/libraries/Common/tests/System/Xml/BaseLibManaged/Globalization.cs +++ b/src/libraries/Common/tests/System/Xml/BaseLibManaged/Globalization.cs @@ -4,8 +4,6 @@ using System; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace WebData.BaseLib { public class WebDataBaseLibException : System.Exception diff --git a/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj b/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj index fb002da..1fc1d3a 100644 --- a/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj +++ b/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj @@ -15,9 +15,6 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - diff --git a/src/libraries/Common/tests/System/Xml/ModuleCore/ccommon.cs b/src/libraries/Common/tests/System/Xml/ModuleCore/ccommon.cs index b0c71cf..dcd0b19 100644 --- a/src/libraries/Common/tests/System/Xml/ModuleCore/ccommon.cs +++ b/src/libraries/Common/tests/System/Xml/ModuleCore/ccommon.cs @@ -5,8 +5,6 @@ using System; using System.Diagnostics; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace OLEDB.Test.ModuleCore { //////////////////////////////////////////////////////////////// diff --git a/src/libraries/Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs b/src/libraries/Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs index 7804c06..b4bb9d9 100644 --- a/src/libraries/Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs +++ b/src/libraries/Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs @@ -4,8 +4,6 @@ using System; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace XmlCoreTest.Common { public static class MiscUtil diff --git a/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj b/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj index c665079..a0ac94c 100644 --- a/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj +++ b/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj @@ -1,7 +1,6 @@ Exe - XmlCoreTest XmlCoreTest.Common netcoreapp-Debug;netcoreapp-Release;uap-Debug;uap-Release @@ -16,9 +15,6 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - diff --git a/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs b/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs index a9a4deb..76be551 100644 --- a/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs +++ b/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs @@ -6,8 +6,6 @@ using System.Text; using System.IO; using System.Diagnostics; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Xml.XmlDiff { internal enum DiffType diff --git a/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.csproj b/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.csproj index d3f3449..f23b032 100644 --- a/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.csproj +++ b/src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.csproj @@ -1,6 +1,5 @@ - XmlDiff System.Xml.XmlDiff netstandard-Debug;netstandard-Release @@ -8,9 +7,6 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - diff --git a/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/AssemblyInfo.cs b/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/AssemblyInfo.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/AssemblyInfo.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/Microsoft.Composition.Demos.ExtendedCollectionImports.csproj b/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/Microsoft.Composition.Demos.ExtendedCollectionImports.csproj index 880b405..7e1f971 100644 --- a/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/Microsoft.Composition.Demos.ExtendedCollectionImports.csproj +++ b/src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/Microsoft.Composition.Demos.ExtendedCollectionImports.csproj @@ -4,14 +4,10 @@ netstandard-Debug;netstandard-Release - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Composition/tests/TestLibrary/TestClass.cs b/src/libraries/System.Composition/tests/TestLibrary/TestClass.cs index 37cb389..4dff21c 100644 --- a/src/libraries/System.Composition/tests/TestLibrary/TestClass.cs +++ b/src/libraries/System.Composition/tests/TestLibrary/TestClass.cs @@ -4,8 +4,6 @@ using System.Composition; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace TestLibrary { [Export] diff --git a/src/libraries/System.Composition/tests/TestLibrary/TestLibrary.csproj b/src/libraries/System.Composition/tests/TestLibrary/TestLibrary.csproj index 89e4799..f6130e7 100644 --- a/src/libraries/System.Composition/tests/TestLibrary/TestLibrary.csproj +++ b/src/libraries/System.Composition/tests/TestLibrary/TestLibrary.csproj @@ -4,8 +4,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlReaderLib/CommonTest.cs b/src/libraries/System.Private.Xml/tests/XmlReaderLib/CommonTest.cs index fc7eb34..ca61ccd 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReaderLib/CommonTest.cs +++ b/src/libraries/System.Private.Xml/tests/XmlReaderLib/CommonTest.cs @@ -6,8 +6,6 @@ using OLEDB.Test.ModuleCore; using System.IO; using XmlCoreTest.Common; -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Xml.Tests { //////////////////////////////////////////////////////////////// diff --git a/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj b/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj index a391005..f18c491 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj @@ -71,9 +71,6 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_0_0_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_0_0_0_0.cs index a995f9f..2785615 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_0_0_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_0_0_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_0_0_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_0_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_0_0_0.cs index dea50e6..249bcbec 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_0_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_0_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_0_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_0_0.cs index 5e5f79d..772de52 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_0.cs index f4534c4..71d9e4a 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_1_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_2.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_2.cs index f2a5691..5dd715e 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_2.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_2.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_1_2 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_3.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_3.cs index 5d7bdd7..0b076ea 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_3.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_3.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_1_3 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_2_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_2_0.cs index b7b3b75..901b2ff 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_2_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_2_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_2_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_3_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_3_0.cs index c79be4c..ae0be60 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_3_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_3_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_1_3_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_2_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_2_0_0.cs index 7fcb9ff..d0fffaf 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_2_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_2_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_2_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_3_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_3_0_0.cs index 28a1ada..c0c4e59 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_3_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_3_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_1_3_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_3_0_0_0.cs b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_3_0_0_0.cs index bcc2b3d..e2ec0b6 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/Program_3_0_0_0.cs +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/Program_3_0_0_0.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests.AssemblyVersion { public class Program_3_0_0_0 diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_0_0_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_0_0_0_0.csproj index d133fab..a43cd2f 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_0_0_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_0_0_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_0_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_0_0_0.csproj index afbd14c..9babd6c 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_0_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_0_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_0_0.csproj index f8fa9b0..7bd04be 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_0.csproj index 0b32113..397d6ec 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_2.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_2.csproj index 04981d9..f0bbdba 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_2.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_2.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_3.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_3.csproj index 9102fad..7661b5b 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_3.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_3.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_2_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_2_0.csproj index 895ef68..34e6c64 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_2_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_2_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_3_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_3_0.csproj index 89acfbe..5f4797e 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_3_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_3_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_2_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_2_0_0.csproj index 8d7def2..eecdb8e 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_2_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_2_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_3_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_3_0_0.csproj index 8f31ce6..eee8553 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_3_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_3_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_3_0_0_0.csproj b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_3_0_0_0.csproj index a436dc6..9ee60d5 100644 --- a/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_3_0_0_0.csproj +++ b/src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_3_0_0_0.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/ForwardedTypesAssembly/ForwardedTypesAssembly.csproj b/src/libraries/System.Reflection/tests/ForwardedTypesAssembly/ForwardedTypesAssembly.csproj index b66a24b..e83567d 100644 --- a/src/libraries/System.Reflection/tests/ForwardedTypesAssembly/ForwardedTypesAssembly.csproj +++ b/src/libraries/System.Reflection/tests/ForwardedTypesAssembly/ForwardedTypesAssembly.csproj @@ -7,11 +7,6 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/TestAssembly/AssemblyAttributes.cs b/src/libraries/System.Reflection/tests/TestAssembly/AssemblyAttributes.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Reflection/tests/TestAssembly/AssemblyAttributes.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Reflection/tests/TestAssembly/TestAssembly.csproj b/src/libraries/System.Reflection/tests/TestAssembly/TestAssembly.csproj index 0530d6a..944746a 100644 --- a/src/libraries/System.Reflection/tests/TestAssembly/TestAssembly.csproj +++ b/src/libraries/System.Reflection/tests/TestAssembly/TestAssembly.csproj @@ -6,10 +6,4 @@ - - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/TestExe/Program.cs b/src/libraries/System.Reflection/tests/TestExe/Program.cs index 701b51d..d8ec026 100644 --- a/src/libraries/System.Reflection/tests/TestExe/Program.cs +++ b/src/libraries/System.Reflection/tests/TestExe/Program.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] - namespace System.Reflection.Tests { public static class TestExe diff --git a/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj b/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj index 47dc0e4..6491ec7 100644 --- a/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj +++ b/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj @@ -5,8 +5,5 @@ - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyAttributes.cs b/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyAttributes.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyAttributes.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyResolveTestApp.csproj b/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyResolveTestApp.csproj index 788fd49..e5b1f02 100644 --- a/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyResolveTestApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyResolveTestApp.csproj @@ -7,10 +7,4 @@ - - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/TestApp/AssemblyAttributes.cs b/src/libraries/System.Runtime.Extensions/tests/TestApp/AssemblyAttributes.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Runtime.Extensions/tests/TestApp/AssemblyAttributes.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj b/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj index 93c4b81..50a9eee 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj @@ -9,10 +9,4 @@ - - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/AssemblyAttributes.cs b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/AssemblyAttributes.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/AssemblyAttributes.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj index ed5a659..7a2d992 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj @@ -10,12 +10,6 @@ - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - - \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs deleted file mode 100644 index c1a414f..0000000 --- a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs +++ /dev/null @@ -1,5 +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. - -[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly] diff --git a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj index e14d840..b5fe813 100644 --- a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj @@ -9,10 +9,4 @@ - - - - Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs - - \ No newline at end of file -- 2.7.4