Skip to content

Commit

Permalink
Do not place extension classes in common namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Looooong committed Mar 18, 2021
1 parent 020f862 commit 8d13080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/SharpCompress/Polyfills/StreamExtensions.cs
@@ -1,8 +1,10 @@
#if NET461 || NETSTANDARD2_0

using System;
using System.Buffers;
using System.IO;

namespace System.IO
namespace SharpCompress
{
public static class StreamExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/SharpCompress/Polyfills/StringExtensions.cs
@@ -1,6 +1,6 @@
#if NET461 || NETSTANDARD2_0

namespace System
namespace SharpCompress
{
public static class StringExtensions
{
Expand Down

0 comments on commit 8d13080

Please sign in to comment.