Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unneeded using statements #60

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions src/Framework/BuildEngineResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
//-----------------------------------------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/BuildEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
//-----------------------------------------------------------------------

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.IO;

Expand Down
3 changes: 0 additions & 3 deletions src/Framework/BuildEventContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/BuildStartedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.Collections.Generic;

Expand Down
1 change: 0 additions & 1 deletion src/Framework/BuildStatusEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;

namespace Microsoft.Build.Framework
Expand Down
1 change: 0 additions & 1 deletion src/Framework/BuildWarningEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.IO;

Expand Down
3 changes: 0 additions & 3 deletions src/Framework/CriticalBuildMessageEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ExternalProjectFinishedEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ExternalProjectStartedEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// To Use:
// Add add module level suppressions to this file to have them suppressed in the assembly

using System.Diagnostics.CodeAnalysis;


#if CODE_ANALYSIS
[module: SuppressMessage("Microsoft.Design", "CA2210:AssembliesShouldHaveValidStrongNames")]
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/IBuildEngine.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections;
using System.Runtime.InteropServices;

namespace Microsoft.Build.Framework
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/IBuildEngine2.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections;
using System.Runtime.InteropServices;

namespace Microsoft.Build.Framework
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/IBuildEngine3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
// <summary>Interface for tasks to communicate with the MSBuild engine.</summary>
//-----------------------------------------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/IEventSource.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;

namespace Microsoft.Build.Framework
{
Expand Down
4 changes: 0 additions & 4 deletions src/Framework/IGeneratedTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
// <summary>An interface implemented by tasks that are generated by ITaskFactory instances.</summary>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ITask.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ITaskFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

using System;
using System.Collections.Generic;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/ITaskFactory2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
// <summary>Task factory Instance which will instantiate and execute tasks</summary>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Text;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ITaskItem2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
using System.Collections.Generic;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/ProjectFinishedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.IO;

Expand Down
1 change: 0 additions & 1 deletion src/Framework/ProjectStartedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.Collections;
using System.IO;
Expand Down
1 change: 0 additions & 1 deletion src/Framework/TargetFinishedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.IO;
using System.Collections;
Expand Down
1 change: 0 additions & 1 deletion src/Framework/TargetStartedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.InteropServices;
using System;
using System.IO;

Expand Down
1 change: 0 additions & 1 deletion src/Framework/TaskFinishedEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// <summary>Event args for target finished event.</summary>
//-----------------------------------------------------------------------

using System.Runtime.InteropServices;
using System;
using System.IO;

Expand Down
1 change: 0 additions & 1 deletion src/Framework/TaskPropertyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
//-----------------------------------------------------------------------

using System;
using System.Reflection;

namespace Microsoft.Build.Framework
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/XamlTypes/Argument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

using System;
using System.ComponentModel;
using System.Windows.Markup;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/XamlTypes/BaseProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Windows.Markup;
using System.Xml;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/XamlTypes/Category.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
// <summary> Represents a category to which a property can belong to. </summary>
//--------------------------------------------------------------------------------

using System;
using System.ComponentModel;
using System.Windows.Markup;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/XamlTypes/CategorySchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
// <summary>Base type for categories in the property page schema data model.</summary>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/XamlTypes/DataSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

using System;
using System.ComponentModel;
using System.Windows.Markup;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/XamlTypes/DynamicEnumProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
// <summary> Represents the schema of a dynamic enumeration property. </summary>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Windows.Markup;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
1 change: 0 additions & 1 deletion src/Framework/XamlTypes/ItemType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Markup;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/XamlTypes/RuleSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
// <summary>Base type for rules in the property page schema data model.</summary>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
2 changes: 0 additions & 2 deletions src/Framework/XamlTypes/StringListProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
// <summary> Represents the schema of a list-of-strings property. </summary>
//-----------------------------------------------------------------------

using System.Collections.Generic;
using System.ComponentModel;

namespace Microsoft.Build.Framework.XamlTypes
{
Expand Down
3 changes: 0 additions & 3 deletions src/Shared/AssemblyFoldersEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
using System;
using Microsoft.Win32;
using System.Collections;
using System.Globalization;
using System.Diagnostics;
using System.Reflection;
using System.Collections.Generic;
using Microsoft.Build.Utilities;
using ProcessorArchitecture = System.Reflection.ProcessorArchitecture;
Expand Down
1 change: 0 additions & 1 deletion src/Shared/AssemblyLoadInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

using System;
using System.IO;
using Microsoft.Build.Framework;
using Microsoft.Build.BackEnd;

namespace Microsoft.Build.Shared
Expand Down
1 change: 0 additions & 1 deletion src/Shared/AssemblyNameComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
//-----------------------------------------------------------------------

using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;

Expand Down
2 changes: 0 additions & 2 deletions src/Shared/AssemblyNameExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
using System;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Globalization;
using System.Diagnostics;
using System.Collections.Generic;
using System.Runtime.Serialization;

Expand Down
3 changes: 0 additions & 3 deletions src/Shared/AssemblyNameReverseVersionComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
// <summary>Compare the version numbers only for an AssemblyNameExtension and make sure they are in reverse order. This assumes the names are the same.</summary>
//-----------------------------------------------------------------------

using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;

namespace Microsoft.Build.Shared
Expand Down
1 change: 0 additions & 1 deletion src/Shared/BuildEventFileInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.Xml;
using System.Xml.Schema;

namespace Microsoft.Build.Shared
{
Expand Down
3 changes: 0 additions & 3 deletions src/Shared/CanonicalError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.IO;
using System.Collections;
using System.Diagnostics;
using System.Globalization;
using System.Text.RegularExpressions;

Expand Down
3 changes: 0 additions & 3 deletions src/Shared/CollectionHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using Microsoft.Build.Shared;

namespace Microsoft.Build.Shared
{
Expand Down
11 changes: 0 additions & 11 deletions src/Shared/CommunicationsUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,12 @@
//-----------------------------------------------------------------------

using System;
using System.Xml;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.IO.Pipes;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Globalization;
using System.Xml.Serialization;
using System.Security;
using System.Security.Policy;
using System.Security.Permissions;
using System.Security.AccessControl;
using System.Security.Principal;
using System.Threading;

Expand Down
Loading