39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Microsoft.AspNet.Builder;
|
|
using Microsoft.AspNet.FileProviders;
|
|
using Microsoft.AspNet.Mvc.Razor;
|
|
using Microsoft.Framework.DependencyInjection;
|
|
using Microsoft.AspNet.Routing;
|
|
|
|
namespace RazorViewEngineOptionsWebsite
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
var configuration = app.GetTestConfiguration();
|
|
|
|
app.UseServices(services =>
|
|
{
|
|
services.AddMvc(configuration);
|
|
|
|
services.Configure<RazorViewEngineOptions>(options =>
|
|
{
|
|
options.FileProvider = new EmbeddedFileProvider(GetType().GetTypeInfo().Assembly, "EmbeddedResources");
|
|
});
|
|
});
|
|
|
|
app.UseMvc(routes =>
|
|
{
|
|
routes.MapRoute("areaRoute", "{area:exists}/{controller}/{action}");
|
|
routes.MapRoute("default",
|
|
"{controller}/{action}/{id?}",
|
|
new { controller = "Home", action = "Index" });
|
|
});
|
|
}
|
|
}
|
|
} |