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

Fix imports not being removed from MAS files. #44230

Merged
merged 21 commits into from
May 16, 2020
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,10 @@ await GenerateAndVerifySourceAsync(metadataSource, symbolName, LanguageNames.CSh
// {CodeAnalysisResources.InMemoryAssembly}
#endregion

using System;
using System.Runtime.CompilerServices;

public class [|C|]
{{
[NativeIntegerAttribute]
public nint i;
[NativeIntegerAttribute]
public nuint i2;

public C();
Expand Down Expand Up @@ -88,8 +84,6 @@ await context.GenerateAndVerifySourceAsync("System.ValueTuple",
// System.ValueTuple.dll
#endregion

using System;
using System;
using System.Collections;

namespace System
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public async Task BracketedIdentifierSimplificationTest()
' mscorlib.v4_6_1038_0.dll
#End Region

Imports System
Imports System.Runtime.InteropServices

Namespace System
Expand Down Expand Up @@ -95,8 +94,6 @@ await context.GenerateAndVerifySourceAsync("System.ValueTuple",
' System.ValueTuple.dll
#End Region

Imports System
Imports System
Imports System.Collections

Namespace System
Expand Down
Loading