// 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. #if VIEWMETADATA using System; using System.Collections.Generic; public class ViewMetadata { public static Dictionary Metadata { get { return new Dictionary { { "~/Views/Home/MyView.cshtml", typeof(MvcSample.Views.MyView) }, { "~/Views/Shared/_Layout.cshtml", typeof(MvcSample.Views.Layout) } }; } } } #endif