Skip to content

Commit 4a6ca94

Browse files
committed
Updated namespace in extension classes
1 parent 234d6b3 commit 4a6ca94

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

Src/Axuno.VirtualFileSystem/Axuno.VirtualFileSystem.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>enable</Nullable>
66
<SignAssembly>true</SignAssembly>
77
<AssemblyOriginatorKeyFile>Axuno.VirtualFileSystem.pfx</AssemblyOriginatorKeyFile>
8-
<Version>0.7.0</Version>
8+
<Version>0.7.1</Version>
99
<Authors>axuno gGmbH</Authors>
1010
<Company>axuno gGmbH</Company>
1111
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>

Src/Axuno.VirtualFileSystem/DictionaryExtensions.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
using System.Collections.Concurrent;
1+
using System;
2+
using System.Collections.Concurrent;
3+
using System.Collections.Generic;
24

3-
namespace System.Collections.Generic
5+
namespace Axuno.VirtualFileSystem
46
{
57
/// <summary>
68
/// Extension methods for Dictionary.

Src/Axuno.VirtualFileSystem/FileInfoExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.IO;
22
using System.Text;
33
using System.Threading.Tasks;
4-
using Axuno.VirtualFileSystem;
54
using Axuno.VirtualFileSystem.Embedded;
5+
using Microsoft.Extensions.FileProviders;
66

7-
namespace Microsoft.Extensions.FileProviders
7+
namespace Axuno.VirtualFileSystem
88
{
99
public static class FileInfoExtensions
1010
{

Src/Axuno.VirtualFileSystem/StreamExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
using System.Threading;
1+
using System.IO;
2+
using System.Threading;
23
using System.Threading.Tasks;
34

4-
namespace System.IO
5+
namespace Axuno.VirtualFileSystem
56
{
67
public static class StreamExtensions
78
{

Src/Axuno.VirtualFileSystem/StringExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
using System.Globalization;
1+
using System;
2+
using System.Globalization;
23
using System.Security.Cryptography;
34
using System.Text;
45
using System.Text.RegularExpressions;
56

6-
namespace System
7+
namespace Axuno.VirtualFileSystem
78
{
89
/// <summary>
910
/// Extension methods for String class.

0 commit comments

Comments
 (0)