Browse Source

Revised namespaces.

pull/81/head
Halil İbrahim Kalkan 9 years ago
parent
commit
69d66ecc32
  1. 6
      src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpApplicationBuilderExtensions.cs
  2. 4
      src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpServiceCollectionExtensions.cs
  3. 2
      src/Volo.DependencyInjection/DependencyInjection/AbpConventionalDependencyInjectionExtensions.cs
  4. 4
      src/Volo.ExtensionMethods/ExtensionMethods/Collections/Generic/DictionaryExtensions.cs
  5. 2
      src/Volo.ExtensionMethods/ExtensionMethods/ComparableExtensions.cs
  6. 2
      src/Volo.ExtensionMethods/ExtensionMethods/EventHandlerExtensions.cs
  7. 2
      src/Volo.ExtensionMethods/ExtensionMethods/ObjectExtensions.cs
  8. 5
      src/Volo.ExtensionMethods/ExtensionMethods/StringExtensions.cs
  9. 2
      test/Apps/AspNetCoreDemo/Startup.cs
  10. 3
      test/Volo.ExtensionMethods.Tests/ComparableExtensions_Tests.cs
  11. 3
      test/Volo.ExtensionMethods.Tests/DayOfWeekExtensions_Tests.cs
  12. 3
      test/Volo.ExtensionMethods.Tests/ObjectExtension_Test.cs
  13. 3
      test/Volo.ExtensionMethods.Tests/StringExtensions_Tests.cs

6
src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpApplicationBuilderExtensions.cs

@ -1,8 +1,8 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.DependencyInjection;
namespace Volo.Abp.AspNetCore
namespace Microsoft.AspNetCore.Builder
{
public static class AbpApplicationBuilderExtensions
{

4
src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpServiceCollectionExtensions.cs

@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.Abp.Modularity;
namespace Volo.Abp.AspNetCore
namespace Microsoft.Extensions.DependencyInjection
{
//TODO: Decide to move ABP?
public static class AbpServiceCollectionExtensions

2
src/Volo.DependencyInjection/DependencyInjection/AbpConventionalDependencyInjectionExtensions.cs

@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Abp.Extensions;
using Microsoft.Extensions.DependencyInjection;
using Volo.ExtensionMethods;
using Volo.Internal;
namespace Volo.DependencyInjection

4
src/Volo.ExtensionMethods/ExtensionMethods/Collections/Generic/DictionaryExtensions.cs

@ -1,7 +1,7 @@
using System;
using System;
using System.Collections.Generic;
namespace Volo.Collections.Generic
namespace Volo.ExtensionMethods.Collections.Generic
{
/// <summary>
/// Extension methods for Dictionary.

2
src/Volo.ExtensionMethods/ExtensionMethods/ComparableExtensions.cs

@ -1,6 +1,6 @@
using System;
namespace Abp.Extensions
namespace Volo.ExtensionMethods
{
/// <summary>
/// Extension methods for <see cref="IComparable{T}"/>.

2
src/Volo.ExtensionMethods/ExtensionMethods/EventHandlerExtensions.cs

@ -1,6 +1,6 @@
using System;
namespace Abp.Extensions
namespace Volo.ExtensionMethods
{
/// <summary>
/// Extension methods for <see cref="EventHandler"/>.

2
src/Volo.ExtensionMethods/ExtensionMethods/ObjectExtensions.cs

@ -2,7 +2,7 @@
using System.Globalization;
using System.Linq;
namespace Abp.Extensions
namespace Volo.ExtensionMethods
{
/// <summary>
/// Extension methods for all objects.

5
src/Volo.ExtensionMethods/ExtensionMethods/StringExtensions.cs

@ -1,12 +1,11 @@
using System;
using System.Globalization;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Volo.CodeAnnotations;
using Volo.Collections.Generic;
using Volo.ExtensionMethods.Collections.Generic;
namespace Abp.Extensions
namespace Volo.ExtensionMethods
{
//TODO: Not working properly with cultures!

2
test/Apps/AspNetCoreDemo/Startup.cs

@ -1,9 +1,7 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Volo.Abp.AspNetCore;
namespace AspNetCoreDemo
{

3
test/Volo.ExtensionMethods.Tests/ComparableExtensions_Tests.cs

@ -1,9 +1,8 @@
using System;
using Abp.Extensions;
using Shouldly;
using Xunit;
namespace Abp.Tests.Extensions
namespace Volo.ExtensionMethods.Tests
{
public class ComparableExtensions_Tests
{

3
test/Volo.ExtensionMethods.Tests/DayOfWeekExtensions_Tests.cs

@ -1,9 +1,8 @@
using System;
using Abp.Extensions;
using Shouldly;
using Xunit;
namespace Abp.Tests.Extensions
namespace Volo.ExtensionMethods.Tests
{
public class DayOfWeekExtensions_Tests
{

3
test/Volo.ExtensionMethods.Tests/ObjectExtension_Test.cs

@ -1,9 +1,8 @@
using System;
using Abp.Extensions;
using Shouldly;
using Xunit;
namespace Abp.Tests.Extensions
namespace Volo.ExtensionMethods.Tests
{
public class ObjectExtensions_Tests
{

3
test/Volo.ExtensionMethods.Tests/StringExtensions_Tests.cs

@ -1,9 +1,8 @@
using System.Globalization;
using Abp.Extensions;
using Shouldly;
using Xunit;
namespace Abp.Tests.Extensions
namespace Volo.ExtensionMethods.Tests
{
public class StringExtensions_Tests
{

Loading…
Cancel
Save