Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,038 changes: 1,038 additions & 0 deletions .vs/config/applicationhost.config

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions EmailMyGradesMVC.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmailMyGradesMVC", "EmailMyGradesMVC\EmailMyGradesMVC.csproj", "{BC9DDC26-D46D-4CB6-B98C-8E5C6B9EE3E9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BC9DDC26-D46D-4CB6-B98C-8E5C6B9EE3E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BC9DDC26-D46D-4CB6-B98C-8E5C6B9EE3E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BC9DDC26-D46D-4CB6-B98C-8E5C6B9EE3E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC9DDC26-D46D-4CB6-B98C-8E5C6B9EE3E9}.Release|Any CPU.Build.0 = Release|Any CPU
{01BDFDBA-22D8-4C97-9F57-866CEB5175B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{01BDFDBA-22D8-4C97-9F57-866CEB5175B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{01BDFDBA-22D8-4C97-9F57-866CEB5175B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{01BDFDBA-22D8-4C97-9F57-866CEB5175B3}.Release|Any CPU.Build.0 = Release|Any CPU
{92C9CAE7-8A26-4AD5-A05A-C79063F64BA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{92C9CAE7-8A26-4AD5-A05A-C79063F64BA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{92C9CAE7-8A26-4AD5-A05A-C79063F64BA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{92C9CAE7-8A26-4AD5-A05A-C79063F64BA6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Web;
using System.Web.Optimization;

namespace MVCInBuiltFeatures
namespace EmailMyGradesMVC
{
public class BundleConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Web;
using System.Web.Mvc;

namespace MVCInBuiltFeatures
namespace EmailMyGradesMVC
{
public class FilterConfig
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Web.Mvc;
using System.Web.Routing;

namespace MVCInBuiltFeatures
namespace EmailMyGradesMVC
{
public class RouteConfig
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.Owin.Security.Cookies;
using Owin;

namespace MVCInBuiltFeatures
namespace EmailMyGradesMVC
{
public partial class Startup
{
Expand Down
File renamed without changes.
Loading