Remove obsolete CodeCoverageAssemblyAttribute (dotnet/corefx#41674)
authorViktor Hofer <viktor.hofer@microsoft.com>
Wed, 9 Oct 2019 13:27:48 +0000 (15:27 +0200)
committerStephen Toub <stoub@microsoft.com>
Wed, 9 Oct 2019 13:27:48 +0000 (09:27 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/e0ad7cfd08719242c4613ffb9574cd77328a7ba6

50 files changed:
src/libraries/Common/src/System/Diagnostics/CodeAnalysis/ExcludeFromCodeCoverageAssemblyAttribute.cs [deleted file]
src/libraries/Common/tests/System/Xml/BaseLibManaged/BaseLibManaged.csproj
src/libraries/Common/tests/System/Xml/BaseLibManaged/Globalization.cs
src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj
src/libraries/Common/tests/System/Xml/ModuleCore/ccommon.cs
src/libraries/Common/tests/System/Xml/XmlCoreTest/MiscUtil.cs
src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj
src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.cs
src/libraries/Common/tests/System/Xml/XmlDiff/XmlDiff.csproj
src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/AssemblyInfo.cs [deleted file]
src/libraries/System.Composition/tests/Microsoft.Composition.Demos.ExtendedCollectionImports/Microsoft.Composition.Demos.ExtendedCollectionImports.csproj
src/libraries/System.Composition/tests/TestLibrary/TestClass.cs
src/libraries/System.Composition/tests/TestLibrary/TestLibrary.csproj
src/libraries/System.Private.Xml/tests/XmlReaderLib/CommonTest.cs
src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/Program_0_0_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_0_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_2.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_1_3.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_2_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_1_3_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_2_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_1_3_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/Program_3_0_0_0.cs
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_0_0_0_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_0_0_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_0_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_2.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_1_3.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_2_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_1_3_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_2_0_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_1_3_0_0.csproj
src/libraries/System.Reflection/tests/AssemblyVersion/System.Reflection.Tests.Assembly_3_0_0_0.csproj
src/libraries/System.Reflection/tests/ForwardedTypesAssembly/ForwardedTypesAssembly.csproj
src/libraries/System.Reflection/tests/TestAssembly/AssemblyAttributes.cs [deleted file]
src/libraries/System.Reflection/tests/TestAssembly/TestAssembly.csproj
src/libraries/System.Reflection/tests/TestExe/Program.cs
src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj
src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyAttributes.cs [deleted file]
src/libraries/System.Runtime.Extensions/tests/AssemblyResolveTestApp/AssemblyResolveTestApp.csproj
src/libraries/System.Runtime.Extensions/tests/TestApp/AssemblyAttributes.cs [deleted file]
src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj
src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/AssemblyAttributes.cs [deleted file]
src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj
src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/AssemblyAttributes.cs [deleted file]
src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj

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 (file)
index 835c820..0000000
+++ /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
-    {
-    }
-}
index 727a759..fd4304f 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Globalization.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 36bae12..2c27401 100644 (file)
@@ -4,8 +4,6 @@
 
 using System;
 
-[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly]
-
 namespace WebData.BaseLib
 {
     public class WebDataBaseLibException : System.Exception
index fb002da..1fc1d3a 100644 (file)
@@ -15,9 +15,6 @@
     <Compile Include="ctestmodule.cs" />
     <Compile Include="cvariation.cs" />
     <Compile Include="interop.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
     <Compile Include="XunitRunner.cs" />
     <Compile Include="XunitTestCase.cs" />
   </ItemGroup>
index b0c71cf..dcd0b19 100644 (file)
@@ -5,8 +5,6 @@
 using System;
 using System.Diagnostics;
 
-[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly]
-
 namespace OLEDB.Test.ModuleCore
 {
     ////////////////////////////////////////////////////////////////
index 7804c06..b4bb9d9 100644 (file)
@@ -4,8 +4,6 @@
 
 using System;
 
-[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly]
-
 namespace XmlCoreTest.Common
 {
     public static class MiscUtil
index c665079..a0ac94c 100644 (file)
@@ -1,7 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <AssemblyName>XmlCoreTest</AssemblyName>
     <RootNamespace>XmlCoreTest.Common</RootNamespace>
     <Configurations>netcoreapp-Debug;netcoreapp-Release;uap-Debug;uap-Release</Configurations>
   </PropertyGroup>
@@ -16,9 +15,6 @@
     <Compile Include="UnicodeCharHelper.cs" />
     <Compile Include="WriterFactory.cs" />
     <Compile Include="TestData.g.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\ModuleCore\ModuleCore.csproj" />
index a9a4deb..76be551 100644 (file)
@@ -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
index d3f3449..f23b032 100644 (file)
@@ -1,6 +1,5 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <AssemblyName>XmlDiff</AssemblyName>
     <RootNamespace>System.Xml.XmlDiff</RootNamespace>
     <Configurations>netstandard-Debug;netstandard-Release</Configurations>
   </PropertyGroup>
@@ -8,9 +7,6 @@
     <Compile Include="XmlDiff.cs" />
     <Compile Include="XmlDiffDocument.cs" />
     <Compile Include="XmlDiffOption.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\ModuleCore\ModuleCore.csproj" />
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 (file)
index c1a414f..0000000
+++ /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]
index 880b405..7e1f971 100644 (file)
@@ -4,14 +4,10 @@
     <Configurations>netstandard-Debug;netstandard-Release</Configurations>
   </PropertyGroup>
   <ItemGroup>
-    <Compile Include="AssemblyInfo.cs" />
     <Compile Include="Dictionaries\DictionaryExportDescriptorProvider.cs" />
     <Compile Include="Util\Formatters.cs" />
     <Compile Include="OrderedImportManyAttribute.cs" />
     <Compile Include="OrderedCollections\OrderedImportManyExportDescriptorProvider.cs" />
     <Compile Include="KeyByMetadataAttribute.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 37cb389..4dff21c 100644 (file)
@@ -4,8 +4,6 @@
 
 using System.Composition;
 
-[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly]
-
 namespace TestLibrary
 {
     [Export]
index 89e4799..f6130e7 100644 (file)
@@ -4,8 +4,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="TestClass.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index fc7eb34..ca61ccd 100644 (file)
@@ -6,8 +6,6 @@ using OLEDB.Test.ModuleCore;
 using System.IO;
 using XmlCoreTest.Common;
 
-[assembly: System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAssembly]
-
 namespace System.Xml.Tests
 {
     ////////////////////////////////////////////////////////////////
index a391005..f18c491 100644 (file)
@@ -71,9 +71,6 @@
     <Compile Include="TCXmlSpace.cs" />
     <Compile Include="TestFiles.cs" />
     <Compile Include="XmlException.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="$(CommonTestPath)\System\Xml\ModuleCore\ModuleCore.csproj" />
index a995f9f..2785615 100644 (file)
@@ -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
index dea50e6..249bcbe 100644 (file)
@@ -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
index 5e5f79d..772de52 100644 (file)
@@ -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
index f4534c4..71d9e4a 100644 (file)
@@ -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
index f2a5691..5dd715e 100644 (file)
@@ -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
index 5d7bdd7..0b076ea 100644 (file)
@@ -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
index b7b3b75..901b2ff 100644 (file)
@@ -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
index c79be4c..ae0be60 100644 (file)
@@ -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
index 7fcb9ff..d0fffaf 100644 (file)
@@ -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
index 28a1ada..c0c4e59 100644 (file)
@@ -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
index bcc2b3d..e2ec0b6 100644 (file)
@@ -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
index d133fab..a43cd2f 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_0_0_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index afbd14c..9babd6c 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_0_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index f8fa9b0..7bd04be 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 0b32113..397d6ec 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_1_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 04981d9..f0bbdba 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_1_2.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 9102fad..7661b5b 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_1_3.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 895ef68..34e6c64 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_2_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 89acfbe..5f4797e 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_1_3_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 8d7def2..eecdb8e 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_2_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index 8f31ce6..eee8553 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_1_3_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index a436dc6..9ee60d5 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program_3_0_0_0.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ No newline at end of file
index b66a24b..e83567d 100644 (file)
@@ -7,11 +7,6 @@
     <Compile Include="ForwardedTypesAssembly.cs" />
   </ItemGroup>
   <ItemGroup>
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
-  <ItemGroup>
     <ProjectReference Include="..\UnloadableAssembly\UnloadableAssembly.csproj" />
   </ItemGroup>
 </Project>
\ 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 (file)
index c1a414f..0000000
+++ /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]
index 0530d6a..944746a 100644 (file)
@@ -6,10 +6,4 @@
   <ItemGroup>
     <Compile Include="TestAssembly.cs" />
   </ItemGroup>
-  <ItemGroup>
-    <Compile Include="AssemblyAttributes.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
 </Project>
\ No newline at end of file
index 701b51d..d8ec026 100644 (file)
@@ -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
index 47dc0e4..6491ec7 100644 (file)
@@ -5,8 +5,5 @@
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Program.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
   </ItemGroup>
 </Project>
\ 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 (file)
index c1a414f..0000000
+++ /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]
index 788fd49..e5b1f02 100644 (file)
@@ -7,10 +7,4 @@
     <Compile Include="Class1.cs" />
     <Compile Include="ClassesSample.cs" />
   </ItemGroup>
-  <ItemGroup>
-    <Compile Include="AssemblyAttributes.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
 </Project>
\ 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 (file)
index c1a414f..0000000
+++ /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]
index 93c4b81..50a9eee 100644 (file)
@@ -9,10 +9,4 @@
   <ItemGroup>
     <Compile Include="TestApp.cs" />
   </ItemGroup>
-  <ItemGroup>
-    <Compile Include="AssemblyAttributes.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
 </Project>
\ 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 (file)
index c1a414f..0000000
+++ /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]
index ed5a659..7a2d992 100644 (file)
     <Compile Include="Program.cs" />
   </ItemGroup>
   <ItemGroup>
-    <Compile Include="AssemblyAttributes.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
-  <ItemGroup>
     <ProjectReference Include="..\AssemblyResolveTestApp\AssemblyResolveTestApp.csproj" />
   </ItemGroup>
 </Project>
\ 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 (file)
index c1a414f..0000000
+++ /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]
index e14d840..b5fe813 100644 (file)
@@ -9,10 +9,4 @@
   <ItemGroup>
     <Compile Include="VoidMainWithExitCodeApp.cs" />
   </ItemGroup>
-  <ItemGroup>
-    <Compile Include="AssemblyAttributes.cs" />
-    <Compile Include="$(CommonPath)\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs">
-      <Link>Common\System\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAssemblyAttribute.cs</Link>
-    </Compile>
-  </ItemGroup>
 </Project>
\ No newline at end of file