Commit ab88a25
Changed files (155)
build
product
infrastructure
cloning
debugging
filesystem
proxies
registries
infrastructure.thirdparty
castle
dynamicproxy
interceptors
windsor
configuration
testing
utility
build/project.deploy.build
@@ -38,17 +38,17 @@
<delete dir="${build.artifacts.dir}" />
<property name="app.output" value="gorilla.commons.utility.dll" />
- <property name="product.dir" value="${base.dir}\product\gorilla.commons.utility" />
+ <property name="product.dir" value="${base.dir}\product\utility" />
<call target="app.compile" />
<copy file="${build.compile.dir}\${app.output}" tofile="${build.artifacts.dir}\${app.output}" />
<property name="app.output" value="gorilla.commons.infrastructure.dll" />
- <property name="product.dir" value="${base.dir}\product\gorilla.commons.infrastructure" />
+ <property name="product.dir" value="${base.dir}\product\infrastructure" />
<call target="app.compile" />
<copy file="${build.compile.dir}\${app.output}" tofile="${build.artifacts.dir}\${app.output}" />
<property name="app.output" value="gorilla.commons.infrastructure.thirdparty.dll" />
- <property name="product.dir" value="${base.dir}\product\gorilla.commons.infrastructure.thirdparty" />
+ <property name="product.dir" value="${base.dir}\product\infrastructure.thirdparty" />
<call target="app.compile" />
<copy file="${build.compile.dir}\${app.output}" tofile="${build.artifacts.dir}\${app.output}" />
@@ -58,7 +58,7 @@
<copy file="${build.compile.dir}\${app.output}" tofile="${build.artifacts.dir}\${app.output}" />
<!--
<property name="app.output" value="gorilla.testing.dll" />
- <property name="product.dir" value="${base.dir}\product\gorilla.commons.testing" />
+ <property name="product.dir" value="${base.dir}\product\testing" />
<call target="app.compile" />
<copy file="${build.compile.dir}\${app.output}" tofile="${build.artifacts.dir}\${app.output}" />
-->
product/Gorilla.Commons.Infrastructure/Cloning/BinarySerializer.cs → product/infrastructure/cloning/BinarySerializer.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Cloning/BinarySerializerSpecs.cs → product/infrastructure/cloning/BinarySerializerSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Cloning/FileStreamSerializer.cs → product/infrastructure/cloning/FileStreamSerializer.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Cloning/Prototype.cs → product/infrastructure/cloning/Prototype.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Cloning/Serializer.cs → product/infrastructure/cloning/Serializer.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Container/DependencyRegistry.cs → product/infrastructure/container/DependencyRegistry.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Container/DependencyResolutionException.cs → product/infrastructure/container/DependencyResolutionException.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Container/Resolve.cs → product/infrastructure/container/Resolve.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Container/ResolveSpecs.cs → product/infrastructure/container/ResolveSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Debugging/Launch.cs → product/infrastructure/debugging/Launch.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/FileSystem/ApplicationFile.cs → product/infrastructure/filesystem/ApplicationFile.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/FileSystem/File.cs → product/infrastructure/filesystem/File.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/Log.cs → product/infrastructure/logging/Log.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/LogFactory.cs → product/infrastructure/logging/LogFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/Loggable.cs → product/infrastructure/logging/Loggable.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/Logger.cs → product/infrastructure/logging/Logger.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/LoggingExtensions.cs → product/infrastructure/logging/LoggingExtensions.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/LogSpecs.cs → product/infrastructure/logging/LogSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Logging/TextLogger.cs → product/infrastructure/logging/TextLogger.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/ExceptionExtensions.cs → product/infrastructure/proxies/ExceptionExtensions.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/Interceptor.cs → product/infrastructure/proxies/Interceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/Invocation.cs → product/infrastructure/proxies/Invocation.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/MethodCallInvocation.cs → product/infrastructure/proxies/MethodCallInvocation.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/ProxyFactory.cs → product/infrastructure/proxies/ProxyFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/ProxyFactorySpecs.cs → product/infrastructure/proxies/ProxyFactorySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Proxies/RemotingProxyFactory.cs → product/infrastructure/proxies/RemotingProxyFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Reflection/ApplicationAssembly.cs → product/infrastructure/reflection/ApplicationAssembly.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Reflection/Assembly.cs → product/infrastructure/reflection/Assembly.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Reflection/EnvironmentExtensions.cs → product/infrastructure/reflection/EnvironmentExtensions.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Registries/DefaultRegistry.cs → product/infrastructure/registries/DefaultRegistry.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/Registries/DefaultRegistrySpecs.cs → product/infrastructure/registries/DefaultRegistrySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure/infrastructure.csproj → product/infrastructure/infrastructure.csproj
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Autofac/AutofacDependencyRegistry.cs → product/infrastructure.thirdparty/autofac/AutofacDependencyRegistry.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Autofac/AutofacDependencyRegistryBuilder.cs → product/infrastructure.thirdparty/autofac/AutofacDependencyRegistryBuilder.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Autofac/AutofacSpecs.cs → product/infrastructure.thirdparty/autofac/AutofacSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/Interceptors/CastleDynamicMethodCallTracker.cs → product/infrastructure.thirdparty/castle/dynamicproxy/interceptors/CastleDynamicMethodCallTracker.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/Interceptors/MethodCallTracker.cs → product/infrastructure.thirdparty/castle/dynamicproxy/interceptors/MethodCallTracker.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/Interceptors/MethodCallTrackerSpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/interceptors/MethodCallTrackerSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/Interceptors/SelectiveInterceptor.cs → product/infrastructure.thirdparty/castle/dynamicproxy/interceptors/SelectiveInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/castle/dynamicproxy/interceptors/SynchronizeInvokeInterceptor.cs → product/infrastructure.thirdparty/castle/dynamicproxy/interceptors/SynchronizeInvokeInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/CastleDynamicInterceptorConstraint.cs → product/infrastructure.thirdparty/castle/dynamicproxy/CastleDynamicInterceptorConstraint.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/CastleDynamicInterceptorConstraintFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/CastleDynamicInterceptorConstraintFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/CastleDynamicMethodCallTrackerFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/CastleDynamicMethodCallTrackerFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/CastleDynamicProxyBuilder.cs → product/infrastructure.thirdparty/castle/dynamicproxy/CastleDynamicProxyBuilder.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/CastleDynamicProxyFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/CastleDynamicProxyFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/ConstraintSelector.cs → product/infrastructure.thirdparty/castle/dynamicproxy/ConstraintSelector.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/InterceptorConstraint.cs → product/infrastructure.thirdparty/castle/dynamicproxy/InterceptorConstraint.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/InterceptorConstraintFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/InterceptorConstraintFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/InterceptorConstraintFactorySpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/InterceptorConstraintFactorySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/InterceptorConstraintSpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/InterceptorConstraintSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/Lazy.cs → product/infrastructure.thirdparty/castle/dynamicproxy/Lazy.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/LazyLoadedInterceptor.cs → product/infrastructure.thirdparty/castle/dynamicproxy/LazyLoadedInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/LazySpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/LazySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/MethodCallTrackerFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/MethodCallTrackerFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/ProxyBuilder.cs → product/infrastructure.thirdparty/castle/dynamicproxy/ProxyBuilder.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/ProxyBuilderSpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/ProxyBuilderSpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/ProxyFactory.cs → product/infrastructure.thirdparty/castle/dynamicproxy/ProxyFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/DynamicProxy/ProxyFactorySpecs.cs → product/infrastructure.thirdparty/castle/dynamicproxy/ProxyFactorySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/ApplyLoggingInterceptor.cs → product/infrastructure.thirdparty/castle/windsor/configuration/ApplyLoggingInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/ComponentExclusionSpecification.cs → product/infrastructure.thirdparty/castle/windsor/configuration/ComponentExclusionSpecification.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/ComponentRegistrationConfiguration.cs → product/infrastructure.thirdparty/castle/windsor/configuration/ComponentRegistrationConfiguration.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/ConfigureComponentLifestyle.cs → product/infrastructure.thirdparty/castle/windsor/configuration/ConfigureComponentLifestyle.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/LogComponent.cs → product/infrastructure.thirdparty/castle/windsor/configuration/LogComponent.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/LogEverythingInterceptor.cs → product/infrastructure.thirdparty/castle/windsor/configuration/LogEverythingInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/LoggingInterceptor.cs → product/infrastructure.thirdparty/castle/windsor/configuration/LoggingInterceptor.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/RegisterComponentContract.cs → product/infrastructure.thirdparty/castle/windsor/configuration/RegisterComponentContract.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/Configuration/RegistrationConfiguration.cs → product/infrastructure.thirdparty/castle/windsor/configuration/RegistrationConfiguration.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/WindsorContainerFactory.cs → product/infrastructure.thirdparty/castle/windsor/WindsorContainerFactory.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/WindsorDependencyRegistry.cs → product/infrastructure.thirdparty/castle/windsor/WindsorDependencyRegistry.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/WindsorDependencyRegistrySpecs.cs → product/infrastructure.thirdparty/castle/windsor/WindsorDependencyRegistrySpecs.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/Castle/Windsor/WindsorExtensions.cs → product/infrastructure.thirdparty/castle/windsor/WindsorExtensions.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/DependencyRegistration.cs → product/infrastructure.thirdparty/DependencyRegistration.cs
File renamed without changes
product/Gorilla.Commons.Infrastructure.ThirdParty/infrastructure.thirdparty.csproj → product/infrastructure.thirdparty/infrastructure.thirdparty.csproj
File renamed without changes
product/Gorilla.Commons.Testing/assertions.cs → product/testing/assertions.cs
File renamed without changes
product/Gorilla.Commons.Testing/Call.cs → product/testing/Call.cs
File renamed without changes
product/Gorilla.Commons.Testing/ConcernAttribute.cs → product/testing/ConcernAttribute.cs
File renamed without changes
product/Gorilla.Commons.Testing/concerns.cs → product/testing/concerns.cs
File renamed without changes
product/Gorilla.Commons.Testing/EmptyFixture.cs → product/testing/EmptyFixture.cs
File renamed without changes
product/Gorilla.Commons.Testing/IHideObjectMembers.cs → product/testing/IHideObjectMembers.cs
File renamed without changes
product/Gorilla.Commons.Testing/IntegrationAttribute.cs → product/testing/IntegrationAttribute.cs
File renamed without changes
product/Gorilla.Commons.Testing/MethodCallOccurance.cs → product/testing/MethodCallOccurance.cs
File renamed without changes
product/Gorilla.Commons.Testing/MockingExtensions.cs → product/testing/MockingExtensions.cs
File renamed without changes
product/Gorilla.Commons.Testing/test.helpers.csproj → product/testing/test.helpers.csproj
File renamed without changes
product/Gorilla.Commons.Utility/AndSpecification.cs → product/utility/AndSpecification.cs
File renamed without changes
product/Gorilla.Commons.Utility/AnonymousCommand.cs → product/utility/AnonymousCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/AnonymousDisposable.cs → product/utility/AnonymousDisposable.cs
File renamed without changes
product/Gorilla.Commons.Utility/AnonymousMapper.cs → product/utility/AnonymousMapper.cs
File renamed without changes
product/Gorilla.Commons.Utility/Builder.cs → product/utility/Builder.cs
File renamed without changes
product/Gorilla.Commons.Utility/Callback.cs → product/utility/Callback.cs
File renamed without changes
product/Gorilla.Commons.Utility/CallbackCommand.cs → product/utility/CallbackCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/ChainedCommand.cs → product/utility/ChainedCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/ChainedConfiguration.cs → product/utility/ChainedConfiguration.cs
File renamed without changes
product/Gorilla.Commons.Utility/ChainedMapper.cs → product/utility/ChainedMapper.cs
File renamed without changes
product/Gorilla.Commons.Utility/Clock.cs → product/utility/Clock.cs
File renamed without changes
product/Gorilla.Commons.Utility/Command.cs → product/utility/Command.cs
File renamed without changes
product/Gorilla.Commons.Utility/CommandExtensions.cs → product/utility/CommandExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/ComponentFactory.cs → product/utility/ComponentFactory.cs
File renamed without changes
product/Gorilla.Commons.Utility/Configuration.cs → product/utility/Configuration.cs
File renamed without changes
product/Gorilla.Commons.Utility/ConfigurationExtensions.cs → product/utility/ConfigurationExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/ConfigurationExtensionsSpecs.cs → product/utility/ConfigurationExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/ConversionExtensions.cs → product/utility/ConversionExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/Date.cs → product/utility/Date.cs
File renamed without changes
product/Gorilla.Commons.Utility/DateSpecs.cs → product/utility/DateSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/DefaultConstructorFactory.cs → product/utility/DefaultConstructorFactory.cs
File renamed without changes
product/Gorilla.Commons.Utility/DisposableCommand.cs → product/utility/DisposableCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/EmptyCallback.cs → product/utility/EmptyCallback.cs
File renamed without changes
product/Gorilla.Commons.Utility/EmptyCommand.cs → product/utility/EmptyCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/EnumerableExtensions.cs → product/utility/EnumerableExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/EnumerableExtensionsSpecs.cs → product/utility/EnumerableExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/Factory.cs → product/utility/Factory.cs
File renamed without changes
product/Gorilla.Commons.Utility/FactoryDelegate.cs → product/utility/FactoryDelegate.cs
File renamed without changes
product/Gorilla.Commons.Utility/FilteredVisitor.cs → product/utility/FilteredVisitor.cs
File renamed without changes
product/Gorilla.Commons.Utility/FuncExtensions.cs → product/utility/FuncExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/FuncSpecification.cs → product/utility/FuncSpecification.cs
File renamed without changes
product/Gorilla.Commons.Utility/Id.cs → product/utility/Id.cs
File renamed without changes
product/Gorilla.Commons.Utility/Identifiable.cs → product/utility/Identifiable.cs
File renamed without changes
product/Gorilla.Commons.Utility/Import.cs → product/utility/Import.cs
File renamed without changes
product/Gorilla.Commons.Utility/ListExtensions.cs → product/utility/ListExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/ListExtensionsSpecs.cs → product/utility/ListExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/Mapper.cs → product/utility/Mapper.cs
File renamed without changes
product/Gorilla.Commons.Utility/MappingExtensions.cs → product/utility/MappingExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/MappingExtensionsSpecs.cs → product/utility/MappingExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/Notification.cs → product/utility/Notification.cs
File renamed without changes
product/Gorilla.Commons.Utility/NotificationMessage.cs → product/utility/NotificationMessage.cs
File renamed without changes
product/Gorilla.Commons.Utility/NotSpecification.cs → product/utility/NotSpecification.cs
File renamed without changes
product/Gorilla.Commons.Utility/NotSpecificationSpecs.cs → product/utility/NotSpecificationSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/NumericConversions.cs → product/utility/NumericConversions.cs
File renamed without changes
product/Gorilla.Commons.Utility/NumericConversionsSpecs.cs → product/utility/NumericConversionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/OrSpecification.cs → product/utility/OrSpecification.cs
File renamed without changes
product/Gorilla.Commons.Utility/OrSpecificationSpecs.cs → product/utility/OrSpecificationSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/ParameterizedCommand.cs → product/utility/ParameterizedCommand.cs
File renamed without changes
product/Gorilla.Commons.Utility/Parser.cs → product/utility/Parser.cs
File renamed without changes
product/Gorilla.Commons.Utility/Percent.cs → product/utility/Percent.cs
File renamed without changes
product/Gorilla.Commons.Utility/PercentSpecs.cs → product/utility/PercentSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/PredicateSpecification.cs → product/utility/PredicateSpecification.cs
File renamed without changes
product/Gorilla.Commons.Utility/PredicateSpecificationSpecs.cs → product/utility/PredicateSpecificationSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/Query.cs → product/utility/Query.cs
File renamed without changes
product/Gorilla.Commons.Utility/Registry.cs → product/utility/Registry.cs
File renamed without changes
product/Gorilla.Commons.Utility/RegistryExtensions.cs → product/utility/RegistryExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/Specification.cs → product/utility/Specification.cs
File renamed without changes
product/Gorilla.Commons.Utility/SpecificationExtensions.cs → product/utility/SpecificationExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/SpecificationExtensionsSpecs.cs → product/utility/SpecificationExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/State.cs → product/utility/State.cs
File renamed without changes
product/Gorilla.Commons.Utility/StringExtensions.cs → product/utility/StringExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/SubjectOf.cs → product/utility/SubjectOf.cs
File renamed without changes
product/Gorilla.Commons.Utility/TypeExtensions.cs → product/utility/TypeExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/TypeExtensionsSpecs.cs → product/utility/TypeExtensionsSpecs.cs
File renamed without changes
product/Gorilla.Commons.Utility/utility.csproj → product/utility/utility.csproj
File renamed without changes
product/Gorilla.Commons.Utility/ValueReturningVisitor.cs → product/utility/ValueReturningVisitor.cs
File renamed without changes
product/Gorilla.Commons.Utility/Visitable.cs → product/utility/Visitable.cs
File renamed without changes
product/Gorilla.Commons.Utility/Visitor.cs → product/utility/Visitor.cs
File renamed without changes
product/Gorilla.Commons.Utility/VisitorExtensions.cs → product/utility/VisitorExtensions.cs
File renamed without changes
product/Gorilla.Commons.Utility/Year.cs → product/utility/Year.cs
File renamed without changes
solution.sln
@@ -1,15 +1,15 @@
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test.helpers", "product\Gorilla.Commons.Testing\test.helpers.csproj", "{44E65096-9657-4716-90F8-4535BABE8039}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test.helpers", "product\testing\test.helpers.csproj", "{44E65096-9657-4716-90F8-4535BABE8039}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "infrastructure", "product\Gorilla.Commons.Infrastructure\infrastructure.csproj", "{AA5EEED9-4531-45F7-AFCD-AD9717D2E405}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "infrastructure", "product\infrastructure\infrastructure.csproj", "{AA5EEED9-4531-45F7-AFCD-AD9717D2E405}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "infrastructure.thirdparty", "product\Gorilla.Commons.Infrastructure.ThirdParty\infrastructure.thirdparty.csproj", "{04DC09B4-5DF9-44A6-8DD1-05941F0D0228}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "infrastructure.thirdparty", "product\infrastructure.thirdparty\infrastructure.thirdparty.csproj", "{04DC09B4-5DF9-44A6-8DD1-05941F0D0228}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "build", "build\build.csproj", "{B8505B10-85C7-45F4-B039-D364DD556D7D}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "utility", "product\Gorilla.Commons.Utility\utility.csproj", "{DD8FD29E-7424-415C-9BA3-7D9F6ECBA161}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "utility", "product\utility\utility.csproj", "{DD8FD29E-7424-415C-9BA3-7D9F6ECBA161}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "infrastructure.thirdparty.log4net", "product\infrastructure.thirdparty.log4net\infrastructure.thirdparty.log4net.csproj", "{6BDCB0C1-51E1-435A-93D8-CA02BF8E409C}"
EndProject