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

Commit

Permalink
Renaming Microsoft.Framework.* -> Microsoft.Extensions.*
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed Oct 3, 2015
1 parent 229edc3 commit 2a8225f
Show file tree
Hide file tree
Showing 67 changed files with 119 additions and 119 deletions.
6 changes: 3 additions & 3 deletions FileSystem.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22823.1
Expand All @@ -14,9 +14,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
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}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.FileSystemGlobbing", "src\Microsoft.Framework.FileSystemGlobbing\Microsoft.Framework.FileSystemGlobbing.xproj", "{970449A2-3BBB-4E87-8513-C41F109B1A3E}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.FileSystemGlobbing", "src\Microsoft.Extensions.FileSystemGlobbing\Microsoft.Extensions.FileSystemGlobbing.xproj", "{970449A2-3BBB-4E87-8513-C41F109B1A3E}"
EndProject
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}"
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}"
EndProject
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}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion NuGetPackageVerifier.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"Microsoft.AspNet.FileProviders.Abstractions": { },
"Microsoft.AspNet.FileProviders.Embedded": { },
"Microsoft.AspNet.FileProviders.Physical": { },
"Microsoft.Framework.FileSystemGlobbing": { }
"Microsoft.Extensions.FileSystemGlobbing": { }
}
},
"adx-nonshipping": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "git://github.com/aspnet/filesystem"
},
"dependencies": {
"Microsoft.Framework.Primitives": "1.0.0-*"
"Microsoft.Extensions.Primitives": "1.0.0-*"
},
"frameworks": {
"net45": { },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;

namespace Microsoft.AspNet.FileProviders
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using System.IO;

namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
{
public abstract class DirectoryInfoBase : FileSystemInfoBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.IO;

namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
{
public class DirectoryInfoWrapper : DirectoryInfoBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
{
public abstract class FileInfoBase : FileSystemInfoBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System.IO;

namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
{
public class FileInfoWrapper : FileInfoBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Framework.FileSystemGlobbing.Abstractions
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
{
public abstract class FileSystemInfoBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.Internal;
using Microsoft.Extensions.Internal;

namespace Microsoft.Framework.FileSystemGlobbing
namespace Microsoft.Extensions.FileSystemGlobbing
{
public struct FilePatternMatch : IEquatable<FilePatternMatch>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System.Collections.Generic;

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public interface ILinearPattern : IPattern
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public interface IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public interface IPattern
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public interface IPatternContext
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System.Collections.Generic;

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public interface IRaggedPattern : IPattern
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
using Microsoft.Framework.FileSystemGlobbing.Util;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;
using Microsoft.Extensions.FileSystemGlobbing.Util;

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public class MatcherContext
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
{
public class CurrentPathSegment : IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Util;
using Microsoft.Extensions.FileSystemGlobbing.Util;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
{
public class LiteralPathSegment : IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
{
public class ParentPathSegment : IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
{
public class RecursiveWildcardSegment : IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
{
public class WildcardPathSegment : IPathSegment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

using System;
using System.Collections.Generic;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public abstract class PatternContext<TFrame> : IPatternContext
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

using System;
using System.Collections.Generic;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public abstract class PatternContextLinear
: PatternContext<PatternContextLinear.FrameData>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public class PatternContextLinearExclude : PatternContextLinear
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public class PatternContextLinearInclude : PatternContextLinear
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

using System;
using System.Collections.Generic;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public abstract class PatternContextRagged : PatternContext<PatternContextRagged.FrameData>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public class PatternContextRaggedExclude : PatternContextRagged
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
{
public class PatternContextRaggedInclude : PatternContextRagged
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Framework.FileSystemGlobbing.Internal
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
{
public struct PatternTestResult
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

using System;
using System.Collections.Generic;
using Microsoft.Framework.FileSystemGlobbing.Internal.PathSegments;
using Microsoft.Framework.FileSystemGlobbing.Internal.PatternContexts;
using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;
using Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;

namespace Microsoft.Framework.FileSystemGlobbing.Internal.Patterns
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns
{
public class PatternBuilder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

using System;
using System.Collections.Generic;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Framework.FileSystemGlobbing.Internal;
using Microsoft.Framework.FileSystemGlobbing.Internal.Patterns;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Internal;
using Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns;

namespace Microsoft.Framework.FileSystemGlobbing
namespace Microsoft.Extensions.FileSystemGlobbing
{
public class Matcher
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Framework.FileSystemGlobbing.Abstractions;
using Microsoft.Extensions.FileSystemGlobbing.Abstractions;

namespace Microsoft.Framework.FileSystemGlobbing
namespace Microsoft.Extensions.FileSystemGlobbing
{
public static class MatcherExtensions
{
Expand Down
Loading

0 comments on commit 2a8225f

Please sign in to comment.