Skip to content

Commit 419a884

Browse files
committed
Updated and fixed mvc test application
1 parent c92e442 commit 419a884

30 files changed

+1614
-1553
lines changed

samples/ASPNet/MvcTestApplication.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30011.22
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcTestApplication", "MvcTestApplication\MvcTestApplication.csproj", "{2658E893-EB33-43FE-B4D0-AD16BC76578B}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {9288D4A6-BBEC-4995-89CE-5E5AC37851B4}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
using System;
2-
3-
namespace MvcTestApplication
4-
{
5-
public class ApplicationDependencyClass : IApplicationDependency
6-
{
7-
private readonly DateTime _CurrentDateTime;
8-
9-
/// <summary>
10-
/// Initializes a new instance of the RequestDependencyClass class.
11-
/// </summary>
12-
public ApplicationDependencyClass()
13-
{
14-
_CurrentDateTime = DateTime.Now;
15-
}
16-
17-
public string GetContent()
18-
{
19-
return "This is an application level dependency, constructed on: " + _CurrentDateTime.ToLongTimeString();
20-
}
21-
}
22-
}
1+
using System;
2+
3+
namespace MvcTestApplication
4+
{
5+
public class ApplicationDependencyClass : IApplicationDependency
6+
{
7+
private readonly DateTime _CurrentDateTime;
8+
9+
/// <summary>
10+
/// Initializes a new instance of the RequestDependencyClass class.
11+
/// </summary>
12+
public ApplicationDependencyClass()
13+
{
14+
_CurrentDateTime = DateTime.Now;
15+
}
16+
17+
public string GetContent()
18+
{
19+
return "This is an application level dependency, constructed on: " + _CurrentDateTime.ToLongTimeString();
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)