Skip to content

Commit

Permalink
Renamed Autofac.Framework.DependencyInjection to Autofac.Extensions.D…
Browse files Browse the repository at this point in the history
…ependencyInjection to keep in line with updated DNX conventions.
  • Loading branch information
tillig committed Oct 5, 2015
1 parent 708043f commit 7952aa6
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Autofac.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Test", "test\Autofa
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Test.Scenarios.ScannedAssembly", "test\Autofac.Test.Scenarios.ScannedAssembly\Autofac.Test.Scenarios.ScannedAssembly.xproj", "{376ADF06-0774-4C00-AE45-4B0DF63779B2}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Framework.DependencyInjection", "src\Autofac.Framework.DependencyInjection\Autofac.Framework.DependencyInjection.xproj", "{513C7F7A-A758-4D48-94F4-891A00F63DA1}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Extensions.DependencyInjection", "src\Autofac.Extensions.DependencyInjection\Autofac.Extensions.DependencyInjection.xproj", "{513C7F7A-A758-4D48-94F4-891A00F63DA1}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Framework.DependencyInjection.Test", "test\Autofac.Framework.DependencyInjection.Test\Autofac.Framework.DependencyInjection.Test.xproj", "{911AA52A-4E68-41C5-AB24-D1618AFDF753}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Autofac.Extensions.DependencyInjection.Test", "test\Autofac.Extensions.DependencyInjection.Test\Autofac.Extensions.DependencyInjection.Test.xproj", "{911AA52A-4E68-41C5-AB24-D1618AFDF753}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AutofacWebApiSample", "samples\AutofacWebApiSample\AutofacWebApiSample.xproj", "{081C1CA5-7AA4-4B21-A4E3-8888F9505D54}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion samples/AutofacWebApiSample/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using Autofac;
using Autofac.Framework.DependencyInjection;
using Autofac.Extensions.DependencyInjection;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Hosting;
using Microsoft.Framework.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion samples/AutofacWebApiSample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta7",
"Microsoft.AspNet.StaticFiles": "1.0.0-beta7",
"Autofac": "4.0.0-beta7-*",
"Autofac.Framework.DependencyInjection": "4.0.0-beta8-*"
"Autofac.Extensions.DependencyInjection": "4.0.0-beta8-*"
},

"commands": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
using Autofac.Builder;
using Microsoft.Framework.DependencyInjection;

namespace Autofac.Framework.DependencyInjection
namespace Autofac.Extensions.DependencyInjection
{
public static class AutofacRegistration
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

using System;

namespace Autofac.Framework.DependencyInjection
namespace Autofac.Extensions.DependencyInjection
{
class AutofacServiceProvider : IServiceProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using System;
using Microsoft.Framework.DependencyInjection;

namespace Autofac.Framework.DependencyInjection
namespace Autofac.Extensions.DependencyInjection
{
class AutofacServiceScope : IServiceScope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

using Microsoft.Framework.DependencyInjection;

namespace Autofac.Framework.DependencyInjection
namespace Autofac.Extensions.DependencyInjection
{
class AutofacServiceScopeFactory : IServiceScopeFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
using System.Resources;
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Autofac.Framework.DependencyInjection")]
[assembly: InternalsVisibleTo("Autofac.Framework.DependencyInjection.Test")]
[assembly: AssemblyTitle("Autofac.Extensions.DependencyInjection")]
[assembly: InternalsVisibleTo("Autofac.Extensions.DependencyInjection.Test")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyCopyright("Copyright © 2015 Autofac Contributors")]
[assembly: AssemblyDescription("Autofac dependency injection support for DNX-based .NET applications.")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Autofac.Core;
using Xunit;

namespace Autofac.Framework.DependencyInjection.Test
namespace Autofac.Extensions.DependencyInjection.Test
{
static class Assertions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.Framework.DependencyInjection;
using Xunit;

namespace Autofac.Framework.DependencyInjection.Test
namespace Autofac.Extensions.DependencyInjection.Test
{
public class AutofacRegistrationTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using System.Reflection;

[assembly: AssemblyTitle("Autofac.Extensions.DependencyInjection.Test")]
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"dependencies": {
"Autofac": "4.0.0-beta8-*",
"Autofac.Framework.DependencyInjection": "4.0.0-beta8-*",
"Autofac.Extensions.DependencyInjection": "4.0.0-beta8-*",
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8-*",
"xunit": "2.1.0-rc1-*",
"xunit.runner.dnx": "2.1.0-beta5-*",
Expand Down

This file was deleted.

0 comments on commit 7952aa6

Please sign in to comment.