Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

using System;
using System.Diagnostics;
using AutoRest.CSharp.Generation.Types;
using AutoRest.CSharp.Input;
using AutoRest.CSharp.Input.Source;
Expand All @@ -10,6 +11,7 @@

namespace AutoRest.CSharp.Output.Models.Types
{
[DebuggerDisplay("Name: {Declaration.Name}, Namespace: {Declaration.Namespace}")]
Comment thread
ArcturusZhang marked this conversation as resolved.
Comment thread
live1206 marked this conversation as resolved.
internal abstract class TypeProvider
{
private readonly Lazy<INamedTypeSymbol?> _existingType;
Expand Down
2 changes: 0 additions & 2 deletions src/AutoRest.CSharp/LowLevel/Output/LowLevelClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text.RegularExpressions;
using AutoRest.CSharp.Common.Input;
using AutoRest.CSharp.Common.Input.Examples;
using AutoRest.CSharp.Common.Output.Builders;
Expand All @@ -17,7 +16,6 @@
using AutoRest.CSharp.Output.Models.Shared;
using AutoRest.CSharp.Output.Models.Types;
using AutoRest.CSharp.Utilities;
using Azure.Core;
using Microsoft.CodeAnalysis;
using static AutoRest.CSharp.Output.Models.MethodSignatureModifiers;

Expand Down