├── .gitignore ├── LICENSE.txt ├── README.textile ├── default.ps1 ├── nuget ├── AttributeRouting.CodeTemplates.MVC4 │ ├── AttributeRouting.CodeTemplates.MVC4.nutrans │ ├── install.ps1 │ └── uninstall.ps1 ├── AttributeRouting.Core.Http │ └── AttributeRouting.Core.Http.nutrans ├── AttributeRouting.Core.Web │ └── AttributeRouting.Core.Web.nutrans ├── AttributeRouting.Core │ └── AttributeRouting.Core.nutrans ├── AttributeRouting.Shared.nuspec ├── AttributeRouting.WebApi.Hosted │ ├── AttributeRouting.WebApi.Hosted.nutrans │ ├── AttributeRoutingConfig.cs.pp │ ├── AttributeRoutingConfig.vb.pp │ └── install.ps1 ├── AttributeRouting.WebApi │ ├── AttributeRouting.WebApi.nutrans │ ├── AttributeRoutingHttpConfig.cs.pp │ ├── AttributeRoutingHttpConfig.vb.pp │ ├── install.ps1 │ ├── readme.txt │ └── web.config.transform └── AttributeRouting │ ├── AttributeRouting.nutrans │ ├── AttributeRoutingConfig.cs.pp │ ├── AttributeRoutingConfig.vb.pp │ ├── install.ps1 │ ├── readme.txt │ └── web.config.transform ├── psake.ps1 ├── src ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── AttributeRouting.Specs │ ├── AttributeRouting.Specs.csproj │ ├── Extensions.cs │ ├── Features │ │ ├── InheritingActions.feature │ │ ├── InheritingActions.feature.cs │ │ ├── Logging.feature │ │ ├── Logging.feature.cs │ │ ├── RouteAreas.feature │ │ ├── RouteAreas.feature.cs │ │ ├── RouteConstraints.feature │ │ ├── RouteConstraints.feature.cs │ │ ├── RouteConventions.feature │ │ ├── RouteConventions.feature.cs │ │ ├── RouteDefaults.feature │ │ ├── RouteDefaults.feature.cs │ │ ├── RoutePrecedence.feature │ │ ├── RoutePrecedence.feature.cs │ │ ├── RoutePrefixes.feature │ │ ├── RoutePrefixes.feature.cs │ │ ├── StandardUsage.feature │ │ └── StandardUsage.feature.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScenarioContextExtensions.cs │ ├── Steps │ │ ├── LoggingSteps.cs │ │ ├── RouteConstraintSteps.cs │ │ ├── RouteDefaultsSteps.cs │ │ ├── RoutePrecedenceSteps.cs │ │ ├── SharedSteps.cs │ │ └── StandardUsageSteps.cs │ ├── Subjects │ │ ├── Areas │ │ │ └── Sample │ │ │ │ └── DefaultRouteAreaController.cs │ │ ├── AsyncActionController.cs │ │ ├── BugFixesControllers.cs │ │ ├── Color.cs │ │ ├── Http │ │ │ ├── DefaultHttpRouteConventionController.cs │ │ │ ├── DefaultHttpRouteConventionPrefixController.cs │ │ │ ├── DefaultHttpRouteConventionWithExplicitOrderedRouteController.cs │ │ │ ├── DefaultHttpRouteConventionWithExplicitRouteController.cs │ │ │ ├── HttpAreaRoutePrefixesController.cs │ │ │ ├── HttpBugFixesController.cs │ │ │ ├── HttpInlineRouteConstraintsControllers.cs │ │ │ ├── HttpRouteDefaultsController.cs │ │ │ ├── HttpRoutePrecedenceControllers.cs │ │ │ ├── HttpRoutePrefixesController.cs │ │ │ └── HttpStandardUsageController.cs │ │ ├── InheritedActionControllers.cs │ │ ├── InlineRouteConstraintsControllers.cs │ │ ├── LocalizationControllers.cs │ │ ├── LowercaseUrlController.cs │ │ ├── RouteAreasControllers.cs │ │ ├── RouteConventionsControllers.cs │ │ ├── RouteDefaultsController.cs │ │ ├── RoutePrecedenceController.cs │ │ ├── RoutePrefixesControllers.cs │ │ ├── StandardUsageController.cs │ │ ├── SubdomainControllers.cs │ │ └── TrailingSlashesController.cs │ ├── Tests │ │ ├── BugFixTests.cs │ │ ├── Extensions │ │ │ └── UrlHelperExtensionTests.cs │ │ ├── Localization │ │ │ ├── AttributeRouteTests.cs │ │ │ ├── FluentTranslationProviderTests.cs │ │ │ ├── RouteBuilderTests.cs │ │ │ ├── TranslationKeyGeneratorTests.cs │ │ │ └── UrlHelperTests.cs │ │ ├── LowercaseUrls │ │ │ ├── AttributeRouteTests.cs │ │ │ └── RouteBuilderTests.cs │ │ ├── MockBuilder.cs │ │ ├── Subdomains │ │ │ ├── AttributeRouteTests.cs │ │ │ ├── RouteBuilderTests.cs │ │ │ └── RouteReflectorTests.cs │ │ └── TrailingSlashes │ │ │ └── AttributeRouteTests.cs │ ├── app.config │ └── packages.config ├── AttributeRouting.Tests.SelfHost │ ├── AttributeRouting.Tests.SelfHost.csproj │ ├── Product.cs │ ├── ProductsController.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── AttributeRouting.Tests.Web │ ├── App_Readme │ │ └── glimpse.readme.txt │ ├── Areas │ │ ├── Admin │ │ │ ├── AdminAreaRegistration.cs │ │ │ ├── Controllers │ │ │ │ ├── AdminControllerBase.cs │ │ │ │ ├── HomeController.cs │ │ │ │ └── UsersController.cs │ │ │ └── Views │ │ │ │ ├── Home │ │ │ │ └── Index.aspx │ │ │ │ ├── Users │ │ │ │ └── Index.aspx │ │ │ │ └── Web.config │ │ ├── Api │ │ │ ├── ApiAreaRegistration.cs │ │ │ └── Controllers │ │ │ │ ├── BaseApiController.cs │ │ │ │ ├── ConstraintsController.cs │ │ │ │ ├── ConventionController.cs │ │ │ │ ├── InheritActionsControllers.cs │ │ │ │ ├── LocalizationController.cs │ │ │ │ ├── PlainController.cs │ │ │ │ └── UploadController.cs │ │ └── Subdomain │ │ │ ├── Controllers │ │ │ └── DefaultController.cs │ │ │ ├── SubdomainAreaRegistration.cs │ │ │ └── Views │ │ │ └── Web.config │ ├── AttributeRouting.Tests.Web.csproj │ ├── Content │ │ └── Styles │ │ │ └── Site.css │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── ApiExplorerController.cs │ │ ├── BadStuffController.cs │ │ ├── ConstraintsController.cs │ │ ├── ControllerBase.cs │ │ ├── DangerController.cs │ │ ├── HomeController.cs │ │ ├── InheritActionsControllers.cs │ │ ├── LocalizationController.cs │ │ ├── NestedController.cs │ │ ├── QueryStringConstraintController.cs │ │ ├── RenderActionController.cs │ │ ├── RestfulController.cs │ │ └── RestfulConventionController.cs │ ├── CultureAwareRouteHandler.cs │ ├── CustomWebHostBufferPolicySelector.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ └── AccountModels.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ ├── Account │ │ │ ├── ChangePassword.aspx │ │ │ ├── ChangePasswordSuccess.aspx │ │ │ ├── LogOn.aspx │ │ │ └── Register.aspx │ │ ├── AdminHome │ │ │ ├── Configuration.ascx │ │ │ ├── Extras.ascx │ │ │ ├── Index.aspx │ │ │ ├── Quickstart.ascx │ │ │ ├── Setup.ascx │ │ │ └── Using.ascx │ │ ├── ApiExplorer │ │ │ └── Index.cshtml │ │ ├── BadStuff │ │ │ └── Index.aspx │ │ ├── Danger │ │ │ └── Index.aspx │ │ ├── Home │ │ │ └── Index.aspx │ │ ├── Localization │ │ │ └── Index.aspx │ │ ├── Nested │ │ │ ├── Index.aspx │ │ │ └── Show.aspx │ │ ├── RenderAction │ │ │ ├── Index.aspx │ │ │ └── Partial.ascx │ │ ├── Restful │ │ │ ├── Delete.aspx │ │ │ ├── Edit.aspx │ │ │ ├── Index.aspx │ │ │ ├── New.aspx │ │ │ └── Show.aspx │ │ ├── RestfulConvention │ │ │ ├── Delete.aspx │ │ │ ├── Edit.aspx │ │ │ ├── Index.aspx │ │ │ ├── New.aspx │ │ │ └── Show.aspx │ │ ├── Shared │ │ │ ├── Error.aspx │ │ │ ├── LogOnUserControl.ascx │ │ │ └── Site.Master │ │ └── Web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── AttributeRouting.Web.Http.SelfHost │ ├── AttributeRouting.Web.Http.SelfHost.csproj │ ├── AttributeRouting.snk │ ├── HttpRouteCollectionExtensions.cs │ ├── Logging │ │ └── LoggingExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── AttributeRouting.Web.Http.WebHost │ ├── AttributeRouting.Web.Http.WebHost.csproj │ ├── AttributeRouting.snk │ ├── Constraints │ │ ├── InboundHttpMethodConstraint.cs │ │ └── OptionalRouteConstraint.cs │ ├── Framework │ │ ├── AttributeRouteFactory.cs │ │ ├── RouteConstraintFactory.cs │ │ └── RouteParameterFactory.cs │ ├── HttpRouteCollectionExtensions.cs │ ├── HttpWebConfiguration.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── AttributeRouting.Web.Http │ ├── AttributeRouting.Web.Http.csproj │ ├── AttributeRouting.snk │ ├── Constraints │ │ ├── AlphaRouteConstraint.cs │ │ ├── CompoundRouteConstraint.cs │ │ ├── EnumRouteConstraint.cs │ │ ├── EnumValueRouteConstraint.cs │ │ ├── InboundHttpMethodConstraint.cs │ │ ├── LengthRouteConstraint.cs │ │ ├── MaxLengthRouteConstraint.cs │ │ ├── MaxRouteConstraint.cs │ │ ├── MinLengthRouteConstraint.cs │ │ ├── MinRouteConstraint.cs │ │ ├── OptionalRouteConstraint.cs │ │ ├── QueryStringRouteConstraint.cs │ │ ├── RangeRouteConstraint.cs │ │ ├── RegexRouteConstraint.cs │ │ └── TypeOfRouteConstraints.cs │ ├── DELETEAttribute.cs │ ├── DefaultHttpRouteConventionAttribute.cs │ ├── Framework │ │ ├── AttributeRouteFactory.cs │ │ ├── HttpAttributeRoute.cs │ │ ├── RouteConstraintFactory.cs │ │ └── RouteParameterFactory.cs │ ├── GETAttribute.cs │ ├── HttpConfiguration.cs │ ├── HttpConfigurationBase.cs │ ├── HttpRouteAttribute.cs │ ├── POSTAttribute.cs │ ├── PUTAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── AttributeRouting.Web.Mvc │ ├── AttributeRouting.Web.Mvc.csproj │ ├── AttributeRouting.snk │ ├── Configuration.cs │ ├── Constraints │ │ ├── InboundHttpMethodConstraint.cs │ │ └── OptionalRouteConstraint.cs │ ├── DELETEAttribute.cs │ ├── Extensions │ │ └── UrlHelperExtensions.cs │ ├── Framework │ │ ├── AttributeRoute.cs │ │ ├── AttributeRouteFactory.cs │ │ ├── RouteConstraintFactory.cs │ │ └── RouteParameterFactory.cs │ ├── GETAttribute.cs │ ├── POSTAttribute.cs │ ├── PUTAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RestfulRouteConventionAttribute.cs │ ├── RouteAttribute.cs │ ├── RouteCollectionExtensions.cs │ └── packages.config ├── AttributeRouting.Web │ ├── AttributeRouting.Web.csproj │ ├── AttributeRouting.snk │ ├── Constraints │ │ ├── AlphaRouteConstraint.cs │ │ ├── CompoundRouteConstraint.cs │ │ ├── EnumRouteConstraint.cs │ │ ├── EnumValueRouteConstraint.cs │ │ ├── LengthRouteConstraint.cs │ │ ├── MaxLengthRouteConstraint.cs │ │ ├── MaxRouteConstraint.cs │ │ ├── MinLengthRouteConstraint.cs │ │ ├── MinRouteConstraint.cs │ │ ├── QueryStringRouteConstraint.cs │ │ ├── RangeRouteConstraint.cs │ │ ├── RegexRouteConstraint.cs │ │ └── TypeOfRouteConstraints.cs │ ├── Logging │ │ ├── LogRoutes.html │ │ ├── LogRoutesHandler.cs │ │ ├── LoggingExtensions.cs │ │ ├── jquery-1.9.1.min.js │ │ └── knockout-2.2.1.js │ └── Properties │ │ └── AssemblyInfo.cs ├── AttributeRouting.sln ├── AttributeRouting.snk ├── AttributeRouting │ ├── AreaConfiguration.cs │ ├── AttributeRouting.csproj │ ├── AttributeRouting.snk │ ├── ConfigurationBase.cs │ ├── Constraints │ │ ├── AlphaRouteConstraintBase.cs │ │ ├── EnumRouteConstraintBase.cs │ │ ├── EnumValueRouteConstraintBase.cs │ │ ├── IAttributeRouteConstraint.cs │ │ ├── ICompoundRouteConstraint.cs │ │ ├── IInboundHttpMethodConstraint.cs │ │ ├── IOptionalRouteConstraint.cs │ │ ├── IQueryStringRouteConstraint.cs │ │ ├── LengthRouteConstraintBase.cs │ │ ├── MaxLengthRouteConstraintBase.cs │ │ ├── MaxRouteConstraintBase.cs │ │ ├── MinLengthRouteConstraintBase.cs │ │ ├── MinRouteConstraintBase.cs │ │ ├── RangeRouteConstraintBase.cs │ │ ├── RegexRouteConstraintBase.cs │ │ └── TypeOfRouteConstraintBase.cs │ ├── Framework │ │ ├── AttributeReflector.cs │ │ ├── AttributeRouteVisitor.cs │ │ ├── AttributeRoutingException.cs │ │ ├── FirstInWinsRouteNameBuilder.cs │ │ ├── IAttributeRoute.cs │ │ ├── IAttributeRouteFactory.cs │ │ ├── IParameterFactory.cs │ │ ├── IRouteConstraintFactory.cs │ │ ├── IRouteNameBuilder.cs │ │ ├── ISubdomainParser.cs │ │ ├── Localization │ │ │ ├── ControllerTranslationBuilder.cs │ │ │ ├── FluentTranslationProvider.cs │ │ │ ├── TranslationBuilder.cs │ │ │ ├── TranslationKeyGenerator.cs │ │ │ ├── TranslationProviderBase.cs │ │ │ └── TranslationsDictionary.cs │ │ ├── RouteBuilder.cs │ │ ├── RouteNameBuilders.cs │ │ ├── RouteSpecification.cs │ │ ├── SubdomainParsers.cs │ │ ├── ThreeSectionSubdomainParser.cs │ │ └── UniqueRouteNameBuilder.cs │ ├── Helpers │ │ ├── DictionaryExtensions.cs │ │ ├── ExpressionHelper.cs │ │ ├── ObjectExtensions.cs │ │ ├── ParsingExtensions.cs │ │ ├── ReflectionExtensions.cs │ │ └── StringExtensions.cs │ ├── IRouteAttribute.cs │ ├── Logging │ │ ├── LogWriter.cs │ │ └── RouteLoggingInfo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteAreaAttribute.cs │ ├── RouteConventionAttributeBase.cs │ └── RoutePrefixAttribute.cs └── SharedAssemblyInfo.cs ├── t4 ├── CSharp │ ├── MVC 2 │ │ └── CodeTemplates │ │ │ └── AddController │ │ │ └── Controller.tt │ ├── MVC 3 │ │ └── CodeTemplates │ │ │ └── AddController │ │ │ ├── Controller.tt │ │ │ └── ControllerWithContext.tt │ └── MVC 4 │ │ └── CodeTemplates │ │ └── AddController │ │ ├── ApiController.tt │ │ ├── ApiControllerWithContext.tt │ │ ├── Controller.tt │ │ └── ControllerWithContext.tt └── VisualBasic │ ├── MVC 2 │ └── CodeTemplates │ │ └── AddController │ │ └── Controller.tt │ ├── MVC 3 │ └── CodeTemplates │ │ └── AddController │ │ ├── Controller.tt │ │ └── ControllerWithContext.tt │ └── MVC 4 │ └── CodeTemplates │ └── AddController │ ├── ApiController.tt │ ├── ApiControllerWithContext.tt │ ├── Controller.tt │ └── ControllerWithContext.tt └── tools ├── TransformXml.proj ├── nunit ├── lib │ ├── Images │ │ ├── Ellipsis.gif │ │ ├── Tree │ │ │ ├── Circles │ │ │ │ ├── Failure.jpg │ │ │ │ ├── Ignored.jpg │ │ │ │ ├── Inconclusive.jpg │ │ │ │ ├── Skipped.jpg │ │ │ │ └── Success.jpg │ │ │ ├── Classic │ │ │ │ ├── Failure.jpg │ │ │ │ ├── Ignored.jpg │ │ │ │ ├── Inconclusive.jpg │ │ │ │ ├── Skipped.jpg │ │ │ │ └── Success.jpg │ │ │ ├── Default │ │ │ │ ├── Failure.png │ │ │ │ ├── Ignored.png │ │ │ │ ├── Inconclusive.png │ │ │ │ ├── Skipped.png │ │ │ │ └── Success.png │ │ │ └── Visual Studio │ │ │ │ ├── Failure.png │ │ │ │ ├── Ignored.png │ │ │ │ ├── Inconclusive.png │ │ │ │ ├── SeriousWarning.png │ │ │ │ ├── Skipped.png │ │ │ │ └── Success.png │ │ ├── pinned.gif │ │ └── unpinned.gif │ ├── NSubstitute.dll │ ├── NSubstitute.xml │ ├── Rhino.Mocks.dll │ ├── Rhino.Mocks.xml │ ├── log4net.dll │ ├── nunit-console-runner.dll │ ├── nunit-gui-runner.dll │ ├── nunit.core.dll │ ├── nunit.core.interfaces.dll │ ├── nunit.uiexception.dll │ ├── nunit.uikit.dll │ └── nunit.util.dll ├── nunit-console-x86.exe ├── nunit-console-x86.exe.config └── nunit.framework.dll └── psake ├── psake-config.ps1 ├── psake.cmd ├── psake.ps1 ├── psake.psm1 └── tabexpansion ├── PsakeTabExpansion.ps1 └── Readme.PsakeTab.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/README.textile -------------------------------------------------------------------------------- /default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/default.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting.CodeTemplates.MVC4/AttributeRouting.CodeTemplates.MVC4.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.CodeTemplates.MVC4/AttributeRouting.CodeTemplates.MVC4.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.CodeTemplates.MVC4/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.CodeTemplates.MVC4/install.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting.CodeTemplates.MVC4/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.CodeTemplates.MVC4/uninstall.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting.Core.Http/AttributeRouting.Core.Http.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.Core.Http/AttributeRouting.Core.Http.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.Core.Web/AttributeRouting.Core.Web.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.Core.Web/AttributeRouting.Core.Web.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.Core/AttributeRouting.Core.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.Core/AttributeRouting.Core.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.Shared.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.Shared.nuspec -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi.Hosted/AttributeRouting.WebApi.Hosted.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi.Hosted/AttributeRouting.WebApi.Hosted.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi.Hosted/AttributeRoutingConfig.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi.Hosted/AttributeRoutingConfig.cs.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi.Hosted/AttributeRoutingConfig.vb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi.Hosted/AttributeRoutingConfig.vb.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi.Hosted/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi.Hosted/install.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/AttributeRouting.WebApi.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/AttributeRouting.WebApi.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/AttributeRoutingHttpConfig.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/AttributeRoutingHttpConfig.cs.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/AttributeRoutingHttpConfig.vb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/AttributeRoutingHttpConfig.vb.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/install.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/readme.txt -------------------------------------------------------------------------------- /nuget/AttributeRouting.WebApi/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting.WebApi/web.config.transform -------------------------------------------------------------------------------- /nuget/AttributeRouting/AttributeRouting.nutrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/AttributeRouting.nutrans -------------------------------------------------------------------------------- /nuget/AttributeRouting/AttributeRoutingConfig.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/AttributeRoutingConfig.cs.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting/AttributeRoutingConfig.vb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/AttributeRoutingConfig.vb.pp -------------------------------------------------------------------------------- /nuget/AttributeRouting/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/install.ps1 -------------------------------------------------------------------------------- /nuget/AttributeRouting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/readme.txt -------------------------------------------------------------------------------- /nuget/AttributeRouting/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/nuget/AttributeRouting/web.config.transform -------------------------------------------------------------------------------- /psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/psake.ps1 -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/AttributeRouting.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/AttributeRouting.Specs.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Extensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/InheritingActions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/InheritingActions.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/InheritingActions.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/InheritingActions.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/Logging.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/Logging.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/Logging.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/Logging.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteAreas.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteAreas.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteAreas.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteAreas.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteConstraints.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteConstraints.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteConstraints.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteConstraints.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteConventions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteConventions.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteConventions.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteConventions.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteDefaults.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteDefaults.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RouteDefaults.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RouteDefaults.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RoutePrecedence.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RoutePrecedence.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RoutePrecedence.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RoutePrecedence.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RoutePrefixes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RoutePrefixes.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/RoutePrefixes.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/RoutePrefixes.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/StandardUsage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/StandardUsage.feature -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Features/StandardUsage.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Features/StandardUsage.feature.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/ScenarioContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/ScenarioContextExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/LoggingSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/LoggingSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/RouteConstraintSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/RouteConstraintSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/RouteDefaultsSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/RouteDefaultsSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/RoutePrecedenceSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/RoutePrecedenceSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/SharedSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/SharedSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Steps/StandardUsageSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Steps/StandardUsageSteps.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Areas/Sample/DefaultRouteAreaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Areas/Sample/DefaultRouteAreaController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/AsyncActionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/AsyncActionController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/BugFixesControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/BugFixesControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Color.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionPrefixController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionPrefixController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionWithExplicitOrderedRouteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionWithExplicitOrderedRouteController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionWithExplicitRouteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/DefaultHttpRouteConventionWithExplicitRouteController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpAreaRoutePrefixesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpAreaRoutePrefixesController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpBugFixesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpBugFixesController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpInlineRouteConstraintsControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpInlineRouteConstraintsControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpRouteDefaultsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpRouteDefaultsController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpRoutePrecedenceControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpRoutePrecedenceControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpRoutePrefixesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpRoutePrefixesController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/Http/HttpStandardUsageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/Http/HttpStandardUsageController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/InheritedActionControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/InheritedActionControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/InlineRouteConstraintsControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/InlineRouteConstraintsControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/LocalizationControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/LocalizationControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/LowercaseUrlController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/LowercaseUrlController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/RouteAreasControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/RouteAreasControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/RouteConventionsControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/RouteConventionsControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/RouteDefaultsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/RouteDefaultsController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/RoutePrecedenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/RoutePrecedenceController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/RoutePrefixesControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/RoutePrefixesControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/StandardUsageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/StandardUsageController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/SubdomainControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/SubdomainControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Subjects/TrailingSlashesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Subjects/TrailingSlashesController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/BugFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/BugFixTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Extensions/UrlHelperExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Extensions/UrlHelperExtensionTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Localization/AttributeRouteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Localization/AttributeRouteTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Localization/FluentTranslationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Localization/FluentTranslationProviderTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Localization/RouteBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Localization/RouteBuilderTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Localization/TranslationKeyGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Localization/TranslationKeyGeneratorTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Localization/UrlHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Localization/UrlHelperTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/LowercaseUrls/AttributeRouteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/LowercaseUrls/AttributeRouteTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/LowercaseUrls/RouteBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/LowercaseUrls/RouteBuilderTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/MockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/MockBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Subdomains/AttributeRouteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Subdomains/AttributeRouteTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Subdomains/RouteBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Subdomains/RouteBuilderTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/Subdomains/RouteReflectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/Subdomains/RouteReflectorTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/Tests/TrailingSlashes/AttributeRouteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/Tests/TrailingSlashes/AttributeRouteTests.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/app.config -------------------------------------------------------------------------------- /src/AttributeRouting.Specs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Specs/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/AttributeRouting.Tests.SelfHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/AttributeRouting.Tests.SelfHost.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/Product.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/ProductsController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/Program.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/app.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.SelfHost/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.SelfHost/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/App_Readme/glimpse.readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/App_Readme/glimpse.readme.txt -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/AdminAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/AdminAreaRegistration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/AdminControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/AdminControllerBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Controllers/UsersController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Views/Home/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Views/Home/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Views/Users/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Views/Users/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Admin/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Admin/Views/Web.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/ApiAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/ApiAreaRegistration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/BaseApiController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/ConstraintsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/ConstraintsController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/ConventionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/ConventionController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/InheritActionsControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/InheritActionsControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/LocalizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/LocalizationController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/PlainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/PlainController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Api/Controllers/UploadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Api/Controllers/UploadController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Subdomain/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Subdomain/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Subdomain/SubdomainAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Subdomain/SubdomainAreaRegistration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Areas/Subdomain/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Areas/Subdomain/Views/Web.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/AttributeRouting.Tests.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/AttributeRouting.Tests.Web.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Content/Styles/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Content/Styles/Site.css -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/ApiExplorerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/ApiExplorerController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/BadStuffController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/BadStuffController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/ConstraintsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/ConstraintsController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/ControllerBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/DangerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/DangerController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/InheritActionsControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/InheritActionsControllers.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/LocalizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/LocalizationController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/NestedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/NestedController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/QueryStringConstraintController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/QueryStringConstraintController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/RenderActionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/RenderActionController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/RestfulController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/RestfulController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Controllers/RestfulConventionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Controllers/RestfulConventionController.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/CultureAwareRouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/CultureAwareRouteHandler.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/CustomWebHostBufferPolicySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/CustomWebHostBufferPolicySelector.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Global.asax -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Models/AccountModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Models/AccountModels.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Account/ChangePassword.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Account/ChangePassword.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Account/ChangePasswordSuccess.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Account/ChangePasswordSuccess.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Account/LogOn.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Account/LogOn.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Account/Register.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Account/Register.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Configuration.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Configuration.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Extras.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Extras.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Quickstart.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Quickstart.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Setup.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Setup.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/AdminHome/Using.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/AdminHome/Using.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/ApiExplorer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/ApiExplorer/Index.cshtml -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/BadStuff/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/BadStuff/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Danger/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Danger/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Home/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Home/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Localization/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Localization/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Nested/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Nested/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Nested/Show.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Nested/Show.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RenderAction/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RenderAction/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RenderAction/Partial.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RenderAction/Partial.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Restful/Delete.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Restful/Delete.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Restful/Edit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Restful/Edit.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Restful/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Restful/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Restful/New.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Restful/New.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Restful/Show.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Restful/Show.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RestfulConvention/Delete.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RestfulConvention/Delete.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RestfulConvention/Edit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RestfulConvention/Edit.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RestfulConvention/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RestfulConvention/Index.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RestfulConvention/New.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RestfulConvention/New.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/RestfulConvention/Show.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/RestfulConvention/Show.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Shared/Error.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Shared/Error.aspx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Shared/LogOnUserControl.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Shared/LogOnUserControl.ascx -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Shared/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Shared/Site.Master -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Views/Web.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Web.Release.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/Web.config -------------------------------------------------------------------------------- /src/AttributeRouting.Tests.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Tests.Web/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/AttributeRouting.Web.Http.SelfHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/AttributeRouting.Web.Http.SelfHost.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/HttpRouteCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/HttpRouteCollectionExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/Logging/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/Logging/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.SelfHost/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.SelfHost/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/AttributeRouting.Web.Http.WebHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/AttributeRouting.Web.Http.WebHost.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Constraints/InboundHttpMethodConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Constraints/InboundHttpMethodConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Constraints/OptionalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Constraints/OptionalRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Framework/AttributeRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Framework/AttributeRouteFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Framework/RouteConstraintFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Framework/RouteConstraintFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Framework/RouteParameterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Framework/RouteParameterFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/HttpRouteCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/HttpRouteCollectionExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/HttpWebConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/HttpWebConfiguration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http.WebHost/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http.WebHost/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/AttributeRouting.Web.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/AttributeRouting.Web.Http.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/AlphaRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/AlphaRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/CompoundRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/CompoundRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/EnumRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/EnumRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/EnumValueRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/EnumValueRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/InboundHttpMethodConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/InboundHttpMethodConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/LengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/LengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/MaxLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/MaxLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/MaxRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/MaxRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/MinLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/MinLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/MinRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/MinRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/OptionalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/OptionalRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/QueryStringRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/QueryStringRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/RangeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/RangeRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/RegexRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/RegexRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Constraints/TypeOfRouteConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Constraints/TypeOfRouteConstraints.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/DELETEAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/DELETEAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/DefaultHttpRouteConventionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/DefaultHttpRouteConventionAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Framework/AttributeRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Framework/AttributeRouteFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Framework/HttpAttributeRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Framework/HttpAttributeRoute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Framework/RouteConstraintFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Framework/RouteConstraintFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Framework/RouteParameterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Framework/RouteParameterFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/GETAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/GETAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/HttpConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/HttpConfiguration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/HttpConfigurationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/HttpConfigurationBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/HttpRouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/HttpRouteAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/POSTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/POSTAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/PUTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/PUTAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Http/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Http/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/AttributeRouting.Web.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/AttributeRouting.Web.Mvc.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Configuration.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Constraints/InboundHttpMethodConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Constraints/InboundHttpMethodConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Constraints/OptionalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Constraints/OptionalRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/DELETEAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/DELETEAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Framework/AttributeRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Framework/AttributeRoute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Framework/AttributeRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Framework/AttributeRouteFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Framework/RouteConstraintFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Framework/RouteConstraintFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Framework/RouteParameterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Framework/RouteParameterFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/GETAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/GETAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/POSTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/POSTAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/PUTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/PUTAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/RestfulRouteConventionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/RestfulRouteConventionAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/RouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/RouteAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/RouteCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/RouteCollectionExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web.Mvc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web.Mvc/packages.config -------------------------------------------------------------------------------- /src/AttributeRouting.Web/AttributeRouting.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/AttributeRouting.Web.csproj -------------------------------------------------------------------------------- /src/AttributeRouting.Web/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/AlphaRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/AlphaRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/CompoundRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/CompoundRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/EnumRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/EnumRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/EnumValueRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/EnumValueRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/LengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/LengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/MaxLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/MaxLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/MaxRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/MaxRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/MinLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/MinLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/MinRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/MinRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/QueryStringRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/QueryStringRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/RangeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/RangeRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/RegexRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/RegexRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Constraints/TypeOfRouteConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Constraints/TypeOfRouteConstraints.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Logging/LogRoutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Logging/LogRoutes.html -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Logging/LogRoutesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Logging/LogRoutesHandler.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Logging/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Logging/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Logging/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Logging/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Logging/knockout-2.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Logging/knockout-2.2.1.js -------------------------------------------------------------------------------- /src/AttributeRouting.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.sln -------------------------------------------------------------------------------- /src/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting/AreaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/AreaConfiguration.cs -------------------------------------------------------------------------------- /src/AttributeRouting/AttributeRouting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/AttributeRouting.csproj -------------------------------------------------------------------------------- /src/AttributeRouting/AttributeRouting.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/AttributeRouting.snk -------------------------------------------------------------------------------- /src/AttributeRouting/ConfigurationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/ConfigurationBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/AlphaRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/AlphaRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/EnumRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/EnumRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/EnumValueRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/EnumValueRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/IAttributeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/IAttributeRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/ICompoundRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/ICompoundRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/IInboundHttpMethodConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/IInboundHttpMethodConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/IOptionalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/IOptionalRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/IQueryStringRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/IQueryStringRouteConstraint.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/LengthRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/LengthRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/MaxLengthRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/MaxLengthRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/MaxRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/MaxRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/MinLengthRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/MinLengthRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/MinRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/MinRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/RangeRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/RangeRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/RegexRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/RegexRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Constraints/TypeOfRouteConstraintBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Constraints/TypeOfRouteConstraintBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/AttributeReflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/AttributeReflector.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/AttributeRouteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/AttributeRouteVisitor.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/AttributeRoutingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/AttributeRoutingException.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/FirstInWinsRouteNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/FirstInWinsRouteNameBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/IAttributeRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/IAttributeRoute.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/IAttributeRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/IAttributeRouteFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/IParameterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/IParameterFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/IRouteConstraintFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/IRouteConstraintFactory.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/IRouteNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/IRouteNameBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/ISubdomainParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/ISubdomainParser.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/ControllerTranslationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/ControllerTranslationBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/FluentTranslationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/FluentTranslationProvider.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/TranslationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/TranslationBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/TranslationKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/TranslationKeyGenerator.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/TranslationProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/TranslationProviderBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/Localization/TranslationsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/Localization/TranslationsDictionary.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/RouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/RouteBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/RouteNameBuilders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/RouteNameBuilders.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/RouteSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/RouteSpecification.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/SubdomainParsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/SubdomainParsers.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/ThreeSectionSubdomainParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/ThreeSectionSubdomainParser.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Framework/UniqueRouteNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Framework/UniqueRouteNameBuilder.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/ExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/ExpressionHelper.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/ParsingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/ParsingExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Helpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Helpers/StringExtensions.cs -------------------------------------------------------------------------------- /src/AttributeRouting/IRouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/IRouteAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Logging/LogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Logging/LogWriter.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Logging/RouteLoggingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Logging/RouteLoggingInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AttributeRouting/RouteAreaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/RouteAreaAttribute.cs -------------------------------------------------------------------------------- /src/AttributeRouting/RouteConventionAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/RouteConventionAttributeBase.cs -------------------------------------------------------------------------------- /src/AttributeRouting/RoutePrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/AttributeRouting/RoutePrefixAttribute.cs -------------------------------------------------------------------------------- /src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /t4/CSharp/MVC 2/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 2/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 3/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 3/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 3/CodeTemplates/AddController/ControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 3/CodeTemplates/AddController/ControllerWithContext.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 4/CodeTemplates/AddController/ApiController.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 4/CodeTemplates/AddController/ApiController.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 4/CodeTemplates/AddController/ApiControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 4/CodeTemplates/AddController/ApiControllerWithContext.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 4/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 4/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/CSharp/MVC 4/CodeTemplates/AddController/ControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/CSharp/MVC 4/CodeTemplates/AddController/ControllerWithContext.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 2/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 2/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 3/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 3/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 3/CodeTemplates/AddController/ControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 3/CodeTemplates/AddController/ControllerWithContext.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 4/CodeTemplates/AddController/ApiController.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 4/CodeTemplates/AddController/ApiController.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 4/CodeTemplates/AddController/ApiControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 4/CodeTemplates/AddController/ApiControllerWithContext.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 4/CodeTemplates/AddController/Controller.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 4/CodeTemplates/AddController/Controller.tt -------------------------------------------------------------------------------- /t4/VisualBasic/MVC 4/CodeTemplates/AddController/ControllerWithContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/t4/VisualBasic/MVC 4/CodeTemplates/AddController/ControllerWithContext.tt -------------------------------------------------------------------------------- /tools/TransformXml.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/TransformXml.proj -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Ellipsis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Ellipsis.gif -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Circles/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Circles/Failure.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Circles/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Circles/Ignored.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Circles/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Circles/Inconclusive.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Circles/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Circles/Skipped.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Circles/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Circles/Success.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Classic/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Classic/Failure.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Classic/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Classic/Ignored.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Classic/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Classic/Inconclusive.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Classic/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Classic/Skipped.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Classic/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Classic/Success.jpg -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Default/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Default/Failure.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Default/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Default/Ignored.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Default/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Default/Inconclusive.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Default/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Default/Skipped.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Default/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Default/Success.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/Failure.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/Ignored.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/Inconclusive.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/SeriousWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/SeriousWarning.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/Skipped.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/Tree/Visual Studio/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/Tree/Visual Studio/Success.png -------------------------------------------------------------------------------- /tools/nunit/lib/Images/pinned.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/pinned.gif -------------------------------------------------------------------------------- /tools/nunit/lib/Images/unpinned.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Images/unpinned.gif -------------------------------------------------------------------------------- /tools/nunit/lib/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/NSubstitute.dll -------------------------------------------------------------------------------- /tools/nunit/lib/NSubstitute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/NSubstitute.xml -------------------------------------------------------------------------------- /tools/nunit/lib/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Rhino.Mocks.dll -------------------------------------------------------------------------------- /tools/nunit/lib/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/Rhino.Mocks.xml -------------------------------------------------------------------------------- /tools/nunit/lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/log4net.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit-gui-runner.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit.core.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit.uiexception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit.uiexception.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit.uikit.dll -------------------------------------------------------------------------------- /tools/nunit/lib/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/lib/nunit.util.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-console-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/nunit-console-x86.exe -------------------------------------------------------------------------------- /tools/nunit/nunit-console-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/nunit-console-x86.exe.config -------------------------------------------------------------------------------- /tools/nunit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/nunit/nunit.framework.dll -------------------------------------------------------------------------------- /tools/psake/psake-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/psake-config.ps1 -------------------------------------------------------------------------------- /tools/psake/psake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/psake.cmd -------------------------------------------------------------------------------- /tools/psake/psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/psake.ps1 -------------------------------------------------------------------------------- /tools/psake/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/psake.psm1 -------------------------------------------------------------------------------- /tools/psake/tabexpansion/PsakeTabExpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/tabexpansion/PsakeTabExpansion.ps1 -------------------------------------------------------------------------------- /tools/psake/tabexpansion/Readme.PsakeTab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccalltd/AttributeRouting/HEAD/tools/psake/tabexpansion/Readme.PsakeTab.txt --------------------------------------------------------------------------------