Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/TypeNameInterpretation/Delimiters.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Copyright (c) Brian Reichle. All Rights Reserved. Licensed under the MIT License. See LICENSE in the project root for license information.
using System;

#if NET
using System.Buffers;
#endif

namespace TypeNameInterpretation;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

#if !NET
using TypeNameInterpretation;
#endif

namespace System;

Expand Down
5 changes: 4 additions & 1 deletion src/TypeNameInterpretation/InsFormatter.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
// Copyright (c) Brian Reichle. All Rights Reserved. Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using System.Buffers;
using System.Text;

#if NET
using System.Buffers;
#endif

namespace TypeNameInterpretation;

public static class InsFormatter
Expand Down
5 changes: 4 additions & 1 deletion src/TypeNameInterpretation/InsParser.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
// Copyright (c) Brian Reichle. All Rights Reserved. Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using System.Buffers;
using System.Collections.Immutable;
using System.Text;

#if NET
using System.Buffers;
#endif

namespace TypeNameInterpretation;

static class InsParser
Expand Down