Skip to content

Commit 9a85fdf

Browse files
Changes the namespace of the HttpApplicationExtensions class to System.Web.
1 parent 0b15850 commit 9a85fdf

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

AspNet.WebForms.DependencyInjection.IntegrationTests/Global.asax.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
using System.Web;
55
using System.Web.Optimization;
66
using System.Web.Routing;
7-
using System.Web.Security;
8-
using System.Web.SessionState;
97

108
namespace PosInformatique.AspNet.WebForms.DependencyInjection.IntegrationTests
119
{

AspNet.WebForms.DependencyInjection.Tests/HttpApplicationExtensionsTest.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Copyright (c) P.O.S Informatique. All rights reserved.
44
// </copyright>
55
//-----------------------------------------------------------------------
6-
namespace PosInformatique.AspNet.WebForms.DependencyInjection.Tests
6+
namespace System.Web.Tests
77
{
88
using System;
99
using System.Collections;
@@ -13,12 +13,13 @@ namespace PosInformatique.AspNet.WebForms.DependencyInjection.Tests
1313
using System.Linq;
1414
using System.Reflection;
1515
using System.Runtime.Serialization;
16-
using System.Web;
1716
using System.Web.Hosting;
1817
using System.Web.SessionState;
1918
using FluentAssertions;
2019
using Microsoft.Extensions.DependencyInjection;
2120
using Moq;
21+
using PosInformatique.AspNet.WebForms.DependencyInjection;
22+
using PosInformatique.AspNet.WebForms.DependencyInjection.Tests;
2223
using Xunit;
2324

2425
public class HttpApplicationExtensionsTest : IDisposable

AspNet.WebForms.DependencyInjection/AspNet.WebForms.DependencyInjection.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<PackageProjectUrl>https://github.com/PosInformatique/PosInformatique.AspNet.WebForms.DependencyInjection</PackageProjectUrl>
1010
<RepositoryType>git</RepositoryType>
11-
<PackageLicenseExpression></PackageLicenseExpression>
1211
<Company>P.O.S Informatique</Company>
1312
<Copyright>Copyright © 1999-2019 P.O.S Informatique - All rights reserved.</Copyright>
1413
<PackageTags>aspnet webforms ioc dependencyinjection</PackageTags>
1514
<Description>PosInformatique.AspNet.WebForms.DependencyInjection is a library to add the IoC container support of Microsoft.Extensions.DependencyInjection for ASP .NET Web Forms</Description>
1615
<Authors>Gilles TOURREAU</Authors>
1716
<PackageReleaseNotes>1.0.0 - Initial version</PackageReleaseNotes>
1817
<RepositoryUrl>https://github.com/PosInformatique/PosInformatique.AspNet.WebForms.DependencyInjection.git</RepositoryUrl>
19-
<Version>1.0.0-alpha1</Version>
20-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
18+
<Version>1.0.0-alpha2</Version>
19+
<AssemblyVersion>1.0.0.2</AssemblyVersion>
2120
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2221
</PropertyGroup>
2322

AspNet.WebForms.DependencyInjection/HttpApplicationExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
// Copyright (c) P.O.S Informatique. All rights reserved.
44
// </copyright>
55
//-----------------------------------------------------------------------
6-
namespace PosInformatique.AspNet.WebForms.DependencyInjection
6+
namespace System.Web
77
{
88
using System;
99
using System.Collections.Generic;
1010
using System.Collections.ObjectModel;
1111
using System.Linq;
12-
using System.Web;
1312
using System.Web.Hosting;
1413
using Microsoft.Extensions.DependencyInjection;
14+
using PosInformatique.AspNet.WebForms.DependencyInjection;
1515

1616
/// <summary>
1717
/// Contains extension methods to register a <see cref="ServiceCollection"/> as <see cref="IServiceProvider"/>

0 commit comments

Comments
 (0)