We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf26c5c commit ef9b08bCopy full SHA for ef9b08b
src/ApiBuilderTests/BuildApiTest.cs
@@ -1,5 +1,3 @@
1
-using Microsoft.CodeAnalysis;
2
-
3
[TestFixture]
4
public class BuildApiTest
5
{
src/ApiBuilderTests/GlobalUsings.cs
@@ -1,5 +1,6 @@
global using NUnit.Framework;
global using System;
global using System.Diagnostics.CodeAnalysis;
+global using Microsoft.CodeAnalysis;
global using Microsoft.CodeAnalysis.CSharp;
6
global using Microsoft.CodeAnalysis.CSharp.Syntax;
src/ApiBuilderTests/RoslynExtensions.cs
@@ -1,6 +1,4 @@
-using Microsoft.CodeAnalysis;
-public static class RoslynExtensions
+public static class RoslynExtensions
public static bool IsPublic(this MemberDeclarationSyntax member) =>
member.Modifiers.Any(_ => _.ValueText == "public");
0 commit comments