Skip to content
This repository was archived by the owner on Nov 6, 2018. It is now read-only.

Commit 2a8225f

Browse files
committed
Renaming Microsoft.Framework.* -> Microsoft.Extensions.*
1 parent 229edc3 commit 2a8225f

File tree

67 files changed

+119
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+119
-119
lines changed

FileSystem.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
44
VisualStudioVersion = 14.0.22823.1
@@ -14,9 +14,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
EndProject
1515
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FileProviders.Abstractions", "src\Microsoft.AspNet.FileProviders.Abstractions\Microsoft.AspNet.FileProviders.Abstractions.xproj", "{DD94B7E8-3A59-4F84-98A0-8139BE259A87}"
1616
EndProject
17-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.FileSystemGlobbing", "src\Microsoft.Framework.FileSystemGlobbing\Microsoft.Framework.FileSystemGlobbing.xproj", "{970449A2-3BBB-4E87-8513-C41F109B1A3E}"
17+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.FileSystemGlobbing", "src\Microsoft.Extensions.FileSystemGlobbing\Microsoft.Extensions.FileSystemGlobbing.xproj", "{970449A2-3BBB-4E87-8513-C41F109B1A3E}"
1818
EndProject
19-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.FileSystemGlobbing.Tests", "test\Microsoft.Framework.FileSystemGlobbing.Tests\Microsoft.Framework.FileSystemGlobbing.Tests.xproj", "{45A5A942-4EFB-4839-AEA3-EB1D2BAB332C}"
19+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.FileSystemGlobbing.Tests", "test\Microsoft.Extensions.FileSystemGlobbing.Tests\Microsoft.Extensions.FileSystemGlobbing.Tests.xproj", "{45A5A942-4EFB-4839-AEA3-EB1D2BAB332C}"
2020
EndProject
2121
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FileProviders.Embedded", "src\Microsoft.AspNet.FileProviders.Embedded\Microsoft.AspNet.FileProviders.Embedded.xproj", "{BD98C115-7FA6-4A78-8198-9650A4706B79}"
2222
EndProject

NuGetPackageVerifier.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"Microsoft.AspNet.FileProviders.Abstractions": { },
1313
"Microsoft.AspNet.FileProviders.Embedded": { },
1414
"Microsoft.AspNet.FileProviders.Physical": { },
15-
"Microsoft.Framework.FileSystemGlobbing": { }
15+
"Microsoft.Extensions.FileSystemGlobbing": { }
1616
}
1717
},
1818
"adx-nonshipping": {

src/Microsoft.AspNet.FileProviders.Abstractions/IFileProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.Framework.Primitives;
4+
using Microsoft.Extensions.Primitives;
55

66
namespace Microsoft.AspNet.FileProviders
77
{

src/Microsoft.AspNet.FileProviders.Abstractions/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "git://github.com/aspnet/filesystem"
77
},
88
"dependencies": {
9-
"Microsoft.Framework.Primitives": "1.0.0-*"
9+
"Microsoft.Extensions.Primitives": "1.0.0-*"
1010
},
1111
"frameworks": {
1212
"net45": { },

src/Microsoft.AspNet.FileProviders.Embedded/EmbeddedFileProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.IO;
77
using System.Reflection;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.FileProviders
1111
{

src/Microsoft.AspNet.FileProviders.Physical/FileChangeToken.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text.RegularExpressions;
66
using System.Threading;
77
using System.Threading.Tasks;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.FileProviders
1111
{

src/Microsoft.AspNet.FileProviders.Physical/PhysicalFileProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.IO;
77
using System.Linq;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.FileProviders
1111
{

src/Microsoft.AspNet.FileProviders.Physical/PhysicalFilesWatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.IO;
77
using System.Linq;
88
using System.Text.RegularExpressions;
9-
using Microsoft.Framework.Primitives;
9+
using Microsoft.Extensions.Primitives;
1010

1111
namespace Microsoft.AspNet.FileProviders
1212
{

src/Microsoft.AspNet.FileProviders.Sources/Implementation/NoopChangeToken.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.Primitives;
5+
using Microsoft.Extensions.Primitives;
66

77
namespace Microsoft.AspNet.FileProviders
88
{

src/Microsoft.Framework.FileSystemGlobbing/Abstractions/DirectoryInfoBase.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Abstractions/DirectoryInfoBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using System.IO;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
88
{
99
public abstract class DirectoryInfoBase : FileSystemInfoBase
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Abstractions/DirectoryInfoWrapper.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Abstractions/DirectoryInfoWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.IO;
77

8-
namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
8+
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
99
{
1010
public class DirectoryInfoWrapper : DirectoryInfoBase
1111
{

src/Microsoft.Framework.FileSystemGlobbing/Abstractions/FileInfoBase.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Abstractions/FileInfoBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
4+
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
55
{
66
public abstract class FileInfoBase : FileSystemInfoBase
77
{

src/Microsoft.Framework.FileSystemGlobbing/Abstractions/FileInfoWrapper.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Abstractions/FileInfoWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.IO;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
77
{
88
public class FileInfoWrapper : FileInfoBase
99
{

src/Microsoft.Framework.FileSystemGlobbing/Abstractions/FileSystemInfoBase.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Abstractions/FileSystemInfoBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
4+
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
55
{
66
public abstract class FileSystemInfoBase
77
{

src/Microsoft.Framework.FileSystemGlobbing/FilePatternMatch.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/FilePatternMatch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.Internal;
5+
using Microsoft.Extensions.Internal;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing
7+
namespace Microsoft.Extensions.FileSystemGlobbing
88
{
99
public struct FilePatternMatch : IEquatable<FilePatternMatch>
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/ILinearPattern.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/ILinearPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
77
{
88
public interface ILinearPattern : IPattern
99
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/IPathSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/IPathSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
4+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
55
{
66
public interface IPathSegment
77
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/IPattern.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/IPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
4+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
55
{
66
public interface IPattern
77
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/IPatternContext.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/IPatternContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
5+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
88
{
99
public interface IPatternContext
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/IRaggedPattern.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/IRaggedPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
77
{
88
public interface IRaggedPattern : IPattern
99
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/MatcherContext.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/MatcherContext.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
8-
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
9-
using Microsoft.Framework.FileSystemGlobbing.Util;
7+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
8+
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;
9+
using Microsoft.Extensions.FileSystemGlobbing.Util;
1010

11-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
11+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
1212
{
1313
public class MatcherContext
1414
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PathSegments/CurrentPathSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PathSegments/CurrentPathSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
77
{
88
public class CurrentPathSegment : IPathSegment
99
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PathSegments/LiteralPathSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PathSegments/LiteralPathSegment.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Util;
5+
using Microsoft.Extensions.FileSystemGlobbing.Util;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
88
{
99
public class LiteralPathSegment : IPathSegment
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PathSegments/ParentPathSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PathSegments/ParentPathSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
77
{
88
public class ParentPathSegment : IPathSegment
99
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PathSegments/RecursiveWildcardSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PathSegments/RecursiveWildcardSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55

6-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
6+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
77
{
88
public class RecursiveWildcardSegment : IPathSegment
99
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PathSegments/WildcardPathSegment.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PathSegments/WildcardPathSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
88
{
99
public class WildcardPathSegment : IPathSegment
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContext.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
6+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
77

8-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
8+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
99
{
1010
public abstract class PatternContext<TFrame> : IPatternContext
1111
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinear.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinear.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
6+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
77

8-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
8+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
99
{
1010
public abstract class PatternContextLinear
1111
: PatternContext<PatternContextLinear.FrameData>

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinearExclude.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinearExclude.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
5+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
88
{
99
public class PatternContextLinearExclude : PatternContextLinear
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinearInclude.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextLinearInclude.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
5+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
88
{
99
public class PatternContextLinearInclude : PatternContextLinear
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextRagged.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextRagged.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
6+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
77

8-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
8+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
99
{
1010
public abstract class PatternContextRagged : PatternContext<PatternContextRagged.FrameData>
1111
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextRaggedExclude.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextRaggedExclude.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
5+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
66

7-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
7+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
88
{
99
public class PatternContextRaggedExclude : PatternContextRagged
1010
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternContexts/PatternContextRaggedInclude.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternContexts/PatternContextRaggedInclude.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
6-
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
5+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
6+
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;
77

8-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
8+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
99
{
1010
public class PatternContextRaggedInclude : PatternContextRagged
1111
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/PatternTestResult.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/PatternTestResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace Microsoft.Framework.FileSystemGlobbing.Internal
4+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
55
{
66
public struct PatternTestResult
77
{

src/Microsoft.Framework.FileSystemGlobbing/Internal/Patterns/PatternBuilder.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Internal/Patterns/PatternBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
7-
using Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts;
6+
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;
7+
using Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;
88

9-
namespace Microsoft.Framework.FileSystemGlobbing.Internal.Patterns
9+
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns
1010
{
1111
public class PatternBuilder
1212
{

src/Microsoft.Framework.FileSystemGlobbing/Matcher.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/Matcher.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
7-
using Microsoft.Framework.FileSystemGlobbing.Internal;
8-
using Microsoft.Framework.FileSystemGlobbing.Internal.Patterns;
6+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
7+
using Microsoft.Extensions.FileSystemGlobbing.Internal;
8+
using Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns;
99

10-
namespace Microsoft.Framework.FileSystemGlobbing
10+
namespace Microsoft.Extensions.FileSystemGlobbing
1111
{
1212
public class Matcher
1313
{

src/Microsoft.Framework.FileSystemGlobbing/MatcherExtensions.cs renamed to src/Microsoft.Extensions.FileSystemGlobbing/MatcherExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
using System.Collections.Generic;
66
using System.IO;
77
using System.Linq;
8-
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
8+
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
99

10-
namespace Microsoft.Framework.FileSystemGlobbing
10+
namespace Microsoft.Extensions.FileSystemGlobbing
1111
{
1212
public static class MatcherExtensions
1313
{

0 commit comments

Comments
 (0)