Skip to content

Commit 7030d76

Browse files
committed
Code Cleanup
1 parent 403e861 commit 7030d76

File tree

88 files changed

+63
-277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+63
-277
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<LangVersion>preview</LangVersion>
66
<Nullable>enable</Nullable>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
8+
<ImplicitUsings>enable</ImplicitUsings>
89
</PropertyGroup>
910

1011
</Project>

src/ExtensionManager.Manifest/IManifest.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System;
2-
using System.Collections.Generic;
3-
41
using ExtensionManager.VisualStudio.Extensions;
52

63
namespace ExtensionManager.Manifest;

src/ExtensionManager.Manifest/IManifestService.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System.Threading;
2-
using System.Threading.Tasks;
3-
41
namespace ExtensionManager.Manifest;
52

63
public interface IManifestService

src/ExtensionManager.Manifest/Internal/ManifestService.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
4-
using System.Threading;
5-
using System.Threading.Tasks;
6-
71
using ExtensionManager.Manifest.Internal.Models;
82
using ExtensionManager.VisualStudio.Extensions;
93

src/ExtensionManager.Manifest/Internal/ManifestVersion.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
4-
using System.Linq;
51
using System.Text.Json;
6-
using System.Text.Json.Serialization;
7-
using System.Threading;
8-
using System.Threading.Tasks;
92

103
using ExtensionManager.Manifest.Internal.Versions;
114

src/ExtensionManager.Manifest/Internal/Models/ManifestDto.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System;
2-
using System.Collections.Generic;
3-
41
using ExtensionManager.VisualStudio.Extensions;
52

63
namespace ExtensionManager.Manifest.Internal.Models;

src/ExtensionManager.Manifest/Internal/ThrowHelper.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System;
2-
31
namespace ExtensionManager.Manifest.Internal;
42

53
internal static class ThrowHelper

src/ExtensionManager.Manifest/Internal/Versions/V0ManifestVersion.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
41
using System.Text.Json;
52
using System.Text.Json.Serialization;
6-
using System.Threading;
7-
using System.Threading.Tasks;
83

94
using ExtensionManager.Manifest.Internal.Models;
105
using ExtensionManager.VisualStudio.Extensions;

src/ExtensionManager.Manifest/Internal/Versions/V1ManifestVersion.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
41
using System.Text.Json;
52
using System.Text.Json.Serialization;
6-
using System.Threading;
7-
using System.Threading.Tasks;
83

94
using ExtensionManager.Manifest.Internal.Models;
105
using ExtensionManager.VisualStudio.Extensions;

src/ExtensionManager.Shared/System.Runtime.CompilerServices/CompilerFeatureRequiredAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Diagnostics.CodeAnalysis;
54
using System.Diagnostics;
5+
using System.Diagnostics.CodeAnalysis;
66

77
namespace System.Runtime.CompilerServices;
88

0 commit comments

Comments
 (0)