mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 07:01:38 +03:00
c0d31a8652
user picture image crop
57 lines
1.8 KiB
C#
57 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel.Activation;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
|
|
namespace MyFriendsAround.Web
|
|
{
|
|
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
|
|
// visit http://go.microsoft.com/?LinkId=9394801
|
|
|
|
public class MvcApplication : System.Web.HttpApplication
|
|
{
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
|
{
|
|
filters.Add(new HandleErrorAttribute());
|
|
}
|
|
|
|
public static void RegisterRoutes(RouteCollection routes)
|
|
{
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
|
|
|
routes.MapRoute(
|
|
"Default", // Route name
|
|
"{controller}/{action}/{id}", // URL with parameters
|
|
new
|
|
{
|
|
controller = "Home",
|
|
action = "Index",
|
|
id = UrlParameter.Optional
|
|
} // Parameter defaults
|
|
,new { controller = "^(?!myfriends).*" }
|
|
);
|
|
|
|
RouteTable.Routes.Add(new ServiceRoute("myfriends", new WebServiceHostFactory(), typeof(myfriends)));
|
|
|
|
|
|
}
|
|
|
|
protected void Application_Start()
|
|
{
|
|
//setup azure
|
|
Microsoft.WindowsAzure.CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
|
|
{
|
|
configSetter(Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetConfigurationSettingValue(configName));
|
|
});
|
|
|
|
|
|
AreaRegistration.RegisterAllAreas();
|
|
|
|
RegisterGlobalFilters(GlobalFilters.Filters);
|
|
RegisterRoutes(RouteTable.Routes);
|
|
}
|
|
}
|
|
} |