Browse Source

update namespaces

The default for this app is
'Microsoft.eShopOnContainers.Catalog.WebForms'
pull/73/head
Bill Wagner 8 years ago
parent
commit
43cbd62784
23 changed files with 40 additions and 57 deletions
  1. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx
  2. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx.cs
  3. +5
    -7
      src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx.designer.cs
  4. +2
    -2
      src/Web/Catalog.WebForms/Catalog.WebForms/App_Start/BundleConfig.cs
  5. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/App_Start/RouteConfig.cs
  6. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Catalog.WebForms.csproj
  7. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx
  8. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx.cs
  9. +5
    -7
      src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx.designer.cs
  10. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx
  11. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs
  12. +5
    -7
      src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.designer.cs
  13. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Global.asax
  14. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Global.asax.cs
  15. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master
  16. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master.cs
  17. +5
    -16
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master.designer.cs
  18. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master
  19. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master.cs
  20. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master.designer.cs
  21. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx
  22. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx.cs
  23. +1
    -1
      src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx.designer.cs

+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx View File

@ -1,4 +1,4 @@
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="Catalog.WebForms.About" %>
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.About" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<h2><%: Title %>.</h2>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class About : Page
{


+ 5
- 7
src/Web/Catalog.WebForms/Catalog.WebForms/About.aspx.designer.cs View File

@ -3,15 +3,13 @@
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms
{
public partial class About
{
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class About {
}
}

+ 2
- 2
src/Web/Catalog.WebForms/Catalog.WebForms/App_Start/BundleConfig.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.Optimization;
using System.Web.UI;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public class BundleConfig
{
@ -34,7 +34,7 @@ namespace Catalog.WebForms
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
ScriptManager.ScriptResourceMapping.AddDefinition(
System.Web.UI.ScriptManager.ScriptResourceMapping.AddDefinition(
"respond",
new ScriptResourceDefinition
{


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/App_Start/RouteConfig.cs View File

@ -4,7 +4,7 @@ using System.Web;
using System.Web.Routing;
using Microsoft.AspNet.FriendlyUrls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public static class RouteConfig
{


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Catalog.WebForms.csproj View File

@ -13,7 +13,7 @@
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Catalog.WebForms</RootNamespace>
<RootNamespace>Microsoft.eShopOnContainers.Catalog.WebForms</RootNamespace>
<AssemblyName>Catalog.WebForms</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx View File

@ -1,4 +1,4 @@
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="Catalog.WebForms.Contact" %>
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.Contact" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<h2><%: Title %>.</h2>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class Contact : Page
{


+ 5
- 7
src/Web/Catalog.WebForms/Catalog.WebForms/Contact.aspx.designer.cs View File

@ -3,15 +3,13 @@
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms
{
public partial class Contact
{
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class Contact {
}
}

+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx View File

@ -1,4 +1,4 @@
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Catalog.WebForms._Default" %>
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class _Default : Page
{


+ 5
- 7
src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.designer.cs View File

@ -3,15 +3,13 @@
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms
{
public partial class _Default
{
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class _Default {
}
}

+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Global.asax View File

@ -1 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="Catalog.WebForms.Global" Language="C#" %>
<%@ Application Codebehind="Global.asax.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.Global" Language="C#" %>

+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Global.asax.cs View File

@ -7,7 +7,7 @@ using System.Web.Routing;
using System.Web.Security;
using System.Web.SessionState;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public class Global : HttpApplication
{


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master View File

@ -1,4 +1,4 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="Catalog.WebForms.SiteMaster" %>
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.SiteMaster" %>
<!DOCTYPE html>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class SiteMaster : MasterPage
{


+ 5
- 16
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Master.designer.cs View File

@ -7,22 +7,11 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms
{
public partial class SiteMaster
{
/// <summary>
/// HeadContent control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.ContentPlaceHolder HeadContent;
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class SiteMaster {
/// <summary>
/// MainContent control.
/// </summary>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master View File

@ -1,4 +1,4 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.Mobile.master.cs" Inherits="Catalog.WebForms.Site_Mobile" %>
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.Mobile.master.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.Site_Mobile" %>
<%@ Register Src="~/ViewSwitcher.ascx" TagPrefix="friendlyUrls" TagName="ViewSwitcher" %>
<!DOCTYPE html>


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master.cs View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class Site_Mobile : System.Web.UI.MasterPage
{


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/Site.Mobile.Master.designer.cs View File

@ -7,7 +7,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms {
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class Site_Mobile {


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx View File

@ -1,4 +1,4 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ViewSwitcher.ascx.cs" Inherits="Catalog.WebForms.ViewSwitcher" %>
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ViewSwitcher.ascx.cs" Inherits="Microsoft.eShopOnContainers.Catalog.WebForms.ViewSwitcher" %>
<div id="viewSwitcher">
<%: CurrentView %> view | <a href="<%: SwitchUrl %>" data-ajax="false">Switch to <%: AlternateView %></a>
</div>

+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx.cs View File

@ -7,7 +7,7 @@ using System.Web.UI;
using System.Web.UI.WebControls;
using Microsoft.AspNet.FriendlyUrls.Resolvers;
namespace Catalog.WebForms
namespace Microsoft.eShopOnContainers.Catalog.WebForms
{
public partial class ViewSwitcher : System.Web.UI.UserControl
{


+ 1
- 1
src/Web/Catalog.WebForms/Catalog.WebForms/ViewSwitcher.ascx.designer.cs View File

@ -7,7 +7,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Catalog.WebForms {
namespace Microsoft.eShopOnContainers.Catalog.WebForms {
public partial class ViewSwitcher {


Loading…
Cancel
Save