From 8601bd8bd0553f5d6edddd28a5b354870d4767b1 Mon Sep 17 00:00:00 2001 From: Sarabjot Singh Date: Wed, 5 Dec 2018 16:49:24 +0530 Subject: [PATCH] Adding the missing assemblyInfo files and updating the copyrights (#1859) --- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 22 ++++++++++++++++++ .../Properties/AssemblyInfo.cs | 22 ++++++++++++++++++ .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 22 ++++++++++++++++++ .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- ...t.TestPlatform.PlatformAbstractions.csproj | Bin 3708 -> 7664 bytes .../Properties/AssemblyInfo.cs | 19 +++++++++++++++ .../Properties/AssemblyInfo.cs | 22 ++++++++++++++++++ .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- src/datacollector/Properties/AssemblyInfo.cs | 3 ++- src/testhost.x86/Properties/AssemblyInfo.cs | 3 ++- src/testhost/Properties/AssemblyInfo.cs | 3 ++- src/vstest.console/Properties/AssemblyInfo.cs | 3 ++- 23 files changed, 141 insertions(+), 17 deletions(-) create mode 100644 src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Properties/AssemblyInfo.cs create mode 100644 src/DataCollectors/TraceDataCollector/Properties/AssemblyInfo.cs create mode 100644 src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Properties/AssemblyInfo.cs create mode 100644 src/Microsoft.TestPlatform.PlatformAbstractions/Properties/AssemblyInfo.cs create mode 100644 src/Microsoft.TestPlatform.TestHostProvider/Properties/AssemblyInfo.cs diff --git a/samples/Microsoft.TestPlatform.E2ETest/Properties/AssemblyInfo.cs b/samples/Microsoft.TestPlatform.E2ETest/Properties/AssemblyInfo.cs index 6c03ea7df5..3993bc0992 100644 --- a/samples/Microsoft.TestPlatform.E2ETest/Properties/AssemblyInfo.cs +++ b/samples/Microsoft.TestPlatform.E2ETest/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.E2ETest")] [assembly: AssemblyTrademark("")] diff --git a/samples/Microsoft.TestPlatform.TranslationLayer.E2ETest/Properties/AssemblyInfo.cs b/samples/Microsoft.TestPlatform.TranslationLayer.E2ETest/Properties/AssemblyInfo.cs index 84c9f676d5..6a5306ed1c 100644 --- a/samples/Microsoft.TestPlatform.TranslationLayer.E2ETest/Properties/AssemblyInfo.cs +++ b/samples/Microsoft.TestPlatform.TranslationLayer.E2ETest/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.TranslationLayer.E2ETest")] [assembly: AssemblyTrademark("")] diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Properties/AssemblyInfo.cs b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..d053a05f57 --- /dev/null +++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Properties/AssemblyInfo.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] +[assembly: AssemblyProduct("Microsoft.TestPlatform.Extensions.EventLogCollector")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("4c1f0d81-67a9-4bf3-a006-615ab4a7fcd6")] diff --git a/src/DataCollectors/TraceDataCollector/Properties/AssemblyInfo.cs b/src/DataCollectors/TraceDataCollector/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..e7212dbc3d --- /dev/null +++ b/src/DataCollectors/TraceDataCollector/Properties/AssemblyInfo.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] +[assembly: AssemblyProduct("Microsoft.VisualStudio.TraceDataCollector")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("b06e12a5-025f-42aa-8f09-c6666c65ece7")] diff --git a/src/Microsoft.TestPlatform.Build/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Build/Properties/AssemblyInfo.cs index 97c2ff2b32..a1eeb3a08c 100644 --- a/src/Microsoft.TestPlatform.Build/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.Build/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.Build")] [assembly: AssemblyTrademark("")] diff --git a/src/Microsoft.TestPlatform.Client/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Client/Properties/AssemblyInfo.cs index a75e930cc4..5724397f72 100644 --- a/src/Microsoft.TestPlatform.Client/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.Client/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.VisualStudio.TestPlatform.Client")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.Common/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Common/Properties/AssemblyInfo.cs index ce6e1b7a49..0920ad0844 100644 --- a/src/Microsoft.TestPlatform.Common/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.Common/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.Common")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.CommunicationUtilities/Properties/AssemblyInfo.cs index b862171f08..ab4baa8a1d 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.VisualStudio.TestPlatform.CommunicationUtilities")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.CoreUtilities/Properties/AssemblyInfo.cs index c40d8a6162..199546d215 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.CoreUtilities/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.CoreUtilities")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Properties/AssemblyInfo.cs index 4dc210d517..9c0fe0ca23 100644 --- a/src/Microsoft.TestPlatform.CrossPlatEngine/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.VisualStudio.TestPlatform.CrossPlatEngine")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..33717a5453 --- /dev/null +++ b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Properties/AssemblyInfo.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] +[assembly: AssemblyProduct("Microsoft.TestPlatform.Extensions.BlameDataCollector")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("716373d6-9162-4ac6-9ae7-b5a3a4286808")] diff --git a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Properties/AssemblyInfo.cs index ece4a60f17..737488fed7 100644 --- a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.Extensions.TrxLogger")] [assembly: AssemblyTrademark("")] diff --git a/src/Microsoft.TestPlatform.ObjectModel/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.ObjectModel/Properties/AssemblyInfo.cs index b59a059a0c..46bde3567d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Properties/AssemblyInfo.cs @@ -13,7 +13,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatfrom.ObjectModel")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.PlatformAbstractions/Microsoft.TestPlatform.PlatformAbstractions.csproj b/src/Microsoft.TestPlatform.PlatformAbstractions/Microsoft.TestPlatform.PlatformAbstractions.csproj index b89400e550c2fce1a1ccde212dac68458524071c..860ea3a00f6c3675a0b701862cef9035b83a1705 100644 GIT binary patch literal 7664 zcmd^^ZExFD6vxkNB))@(kVetwwy+^!U8ZUeXcB9yHqbYfrjRDIG)W^n>Bg4_e*b&z zI@hrs_hD=WS*;!4d(Ziw=X0+u|OU*;@%#>_ot zo@5{Kd+Io@^FFoTY|g3?YX@ zdfbQbO5n23{hZ&CJ?B1g`klcwx4@V775ZpiyTGqjrUtoJG0BWNv3 z)kY?7scqJ$&>4eegiUv#Jmz=Ds=T)zW7*Q%(31xw&{JG^8>e{Dy4CYkL%p=d5rB^$z;*8jwEZO`3n4#qpDDRDPc@uZPyBrLjl$m^V-Ge2s46^U46;hgR_p zvA%>`&*^YrFW@%h*Bp(`oTtlo6k7xQXvTlVTgS~&+z%Yb>rkl2p!iaxZ#!JFtTLUr z$|my)p7kqoE^VWwm|yRQbs6A(7D-LoUnA~|91z;hXM`Mq_ajL*MFT%`?_-xy_H<^i zGOL6hd5U(H?Q>l!A(kC<@8h-$l01grfNTPmGdL&M=ojp^XAhPt!bRYt?P!Jk7rB;W z_Ovc>mQ z|286 zGPCY-t85o?tSVreSc8jTdNKg{Y1nH?Nvt971ew7qIx4LiR&=>Jf-x< zUvuey%wt8ry zc{lXY$B)W=@y)c6Q(Pr~TOEtum`mBU9nC#5W}j@@b3N8Ro;&$IH=j;Cf>p zbupRkB-2X1_YdEdeZ|WXW}=R(i^X1|Jeo(lU#l$9j5^E}+J`sKUoGVeGP-o6%BEVY z(*o@)eRTVbp&Su%u9wxHoG8xkj;vig<2|w;V(-%|Uv_zxZU^iTv|Ex_DAJQF=;AKg zy^#9=kC-E`bkN@ZpR&yR$m91k>ZRg^>Zp!OXDbO^nIb@SGUkkGalZ0JetM;oEPsyi z-_(ru$353Yd~ARJG&%-AaD@fD3D%O`T+lYM7J;){7)Tr=cA6Ih3tAf4tR+$)DQEp{eds6k z7dpCG*2U=t*%So=BO+(caOTVmhkyV1m;LEm7?2G}#RMN1eY0l};I8l(Uk;2|``!M9 z@yR)|CsOAP^BqD^!b^1)lX&uXk!VM}#CcaYJu^lOm3i6Q>zf>$_vwNP48H}O{4Rz)+9PHOLqM64$v*UI5& zT~qE+=^?k5_~{A>G>Y=Cv-AFCOrw6!>|t=~+8O9)P8R`OgHPi?4@DTU07e=@<@hvE zU|WX;_5p^%gDXyhtzyd2GTtdxHc-QE@{z1oNZO~pgXC0Ce%wiU&mBYhvvUkZw7n57 z4e)3E1--~4$YAHnb0QhYI7UV@d$)qKHAv^-YVxs2{Y@6i7O6}<(<}%bdB8RESq4%t z(6Za6oSSqKi)R1q^q13;!~&v_Y16-Dyx7hldgni1G$HoH_EC08w&z3A4klPPNxl@$ zw8^#N6ld9-nHLS^Vl&gkTx1-u@{`=w%6b2xwsL&=I2vEyJx;$qJWgz@w(A^aFz>ou za>of5oIEk^i6@15{23CtnsE$YBV4WsL&2MZ6Y8$%67InViI*~z{!O<|-50G4iY0Oyb@0CMIX_O+QM8xi!OE5N;R- zfrD&2!drQr8lH++y71O!?_<0gLNL=}644aohGE3be0{`|5r`(Uz<+g;8$rF-h1-60 z{o}y$e9fUivyy&5$(5s7N(c@zCYD3NPLqQEi%RcsjpHrnvt=wZrn5m33;du$K5Mp% zluit%D=MR6Fnt{@#hi7xALkNHV*a(|{12+23>sd}Lu~2h17{n2>d+v+yNhY7nFV;o zerGeRmqvBmy`c*T21Yd*^0u8kgOb;Sim)lZ>z>% diff --git a/src/Microsoft.TestPlatform.PlatformAbstractions/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.PlatformAbstractions/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..aa2352b2fa --- /dev/null +++ b/src/Microsoft.TestPlatform.PlatformAbstractions/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] +[assembly: AssemblyProduct("Microsoft.TestPlatform.PlatformAbstractions")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] diff --git a/src/Microsoft.TestPlatform.TestHostProvider/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.TestHostProvider/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..892e0ae7e4 --- /dev/null +++ b/src/Microsoft.TestPlatform.TestHostProvider/Properties/AssemblyInfo.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] +[assembly: AssemblyProduct("Microsoft.TestPlatform.TestHostRuntimeProvider")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("83693884-04ee-4083-bae1-e7827b8f5fbc")] diff --git a/src/Microsoft.TestPlatform.Utilities/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.Utilities/Properties/AssemblyInfo.cs index 58a039831c..cba5140912 100644 --- a/src/Microsoft.TestPlatform.Utilities/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.Utilities/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.Utilities")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Properties/AssemblyInfo.cs b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Properties/AssemblyInfo.cs index 1b3fd8ef37..a68e7c5899 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Properties/AssemblyInfo.cs +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestPlatform.ManagedConsoleWrapper")] [assembly: AssemblyTrademark("")] diff --git a/src/SettingsMigrator/Properties/AssemblyInfo.cs b/src/SettingsMigrator/Properties/AssemblyInfo.cs index 03f6bc2fbd..008166990b 100644 --- a/src/SettingsMigrator/Properties/AssemblyInfo.cs +++ b/src/SettingsMigrator/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("SettingsMigrator")] [assembly: AssemblyTrademark("")] diff --git a/src/datacollector/Properties/AssemblyInfo.cs b/src/datacollector/Properties/AssemblyInfo.cs index 0a9e15abc2..bc9e75ac72 100644 --- a/src/datacollector/Properties/AssemblyInfo.cs +++ b/src/datacollector/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("datacollector")] [assembly: AssemblyTrademark("")] diff --git a/src/testhost.x86/Properties/AssemblyInfo.cs b/src/testhost.x86/Properties/AssemblyInfo.cs index 4727ea5d53..a077ef9ad2 100644 --- a/src/testhost.x86/Properties/AssemblyInfo.cs +++ b/src/testhost.x86/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestHost.x86")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/testhost/Properties/AssemblyInfo.cs b/src/testhost/Properties/AssemblyInfo.cs index 5adc4976d8..aff5c17e7b 100644 --- a/src/testhost/Properties/AssemblyInfo.cs +++ b/src/testhost/Properties/AssemblyInfo.cs @@ -10,7 +10,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("Microsoft.TestHost")] [assembly: AssemblyTrademark("")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/vstest.console/Properties/AssemblyInfo.cs b/src/vstest.console/Properties/AssemblyInfo.cs index f84699d51c..73f3d9c686 100644 --- a/src/vstest.console/Properties/AssemblyInfo.cs +++ b/src/vstest.console/Properties/AssemblyInfo.cs @@ -9,7 +9,8 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("� Microsoft Corporation. All rights reserved.")] [assembly: AssemblyProduct("vstest.console")] [assembly: AssemblyTrademark("")]