Skip to content

Commit 0873617

Browse files
committed
Signed-off-by: 桐铭 梁 <werltm@hotmail.com>
1 parent 257cfb5 commit 0873617

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+40
-42
lines changed

YoYoMooc.StudentManagement.RazorPage/YoYoMooc.StudentManagement.RazorPage.csproj

-12
This file was deleted.

YoYoMooc.StudentManagement.RazorPage.sln renamed to src/YoYoMooc.StudentManagement.RazorPage.sln

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.31105.61
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YoYoMooc.StudentManagement.RazorPage", "YoYoMooc.StudentManagement.RazorPage\YoYoMooc.StudentManagement.RazorPage.csproj", "{4989C4FB-C21C-4280-8449-BC14B45EDC9E}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YoYoMooc.StudentManagement.RazorPage", "YoYoMooc.StudentManagement.RazorPage\YoYoMooc.StudentManagement.RazorPage.csproj", "{6F4DE319-F30C-4597-ABA2-AF324A87788C}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{4989C4FB-C21C-4280-8449-BC14B45EDC9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{4989C4FB-C21C-4280-8449-BC14B45EDC9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{4989C4FB-C21C-4280-8449-BC14B45EDC9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{4989C4FB-C21C-4280-8449-BC14B45EDC9E}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{6F4DE319-F30C-4597-ABA2-AF324A87788C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{6F4DE319-F30C-4597-ABA2-AF324A87788C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{6F4DE319-F30C-4597-ABA2-AF324A87788C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{6F4DE319-F30C-4597-ABA2-AF324A87788C}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
2222
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {810B8DCF-52EA-485E-B92A-1BEE8D3BB1DD}
23+
SolutionGuid = {E1011B34-2BF2-47EC-B82B-4A5216856819}
2424
EndGlobalSection
2525
EndGlobal

YoYoMooc.StudentManagement.RazorPage/Pages/Error.cshtml.cs renamed to src/YoYoMooc.StudentManagement.RazorPage/Pages/Error.cshtml.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
using Microsoft.AspNetCore.Mvc;
2-
using Microsoft.AspNetCore.Mvc.RazorPages;
3-
using Microsoft.Extensions.Logging;
41
using System;
52
using System.Collections.Generic;
63
using System.Diagnostics;
74
using System.Linq;
85
using System.Threading.Tasks;
96

7+
using Microsoft.AspNetCore.Mvc;
8+
using Microsoft.AspNetCore.Mvc.RazorPages;
9+
using Microsoft.Extensions.Logging;
10+
1011
namespace YoYoMooc.StudentManagement.RazorPage.Pages
1112
{
1213
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]

YoYoMooc.StudentManagement.RazorPage/Pages/Index.cshtml.cs renamed to src/YoYoMooc.StudentManagement.RazorPage/Pages/Index.cshtml.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
using Microsoft.AspNetCore.Mvc;
2-
using Microsoft.AspNetCore.Mvc.RazorPages;
3-
using Microsoft.Extensions.Logging;
4-
using System;
1+
using System;
52
using System.Collections.Generic;
63
using System.Linq;
74
using System.Threading.Tasks;
85

6+
using Microsoft.AspNetCore.Mvc;
7+
using Microsoft.AspNetCore.Mvc.RazorPages;
8+
using Microsoft.Extensions.Logging;
9+
910
namespace YoYoMooc.StudentManagement.RazorPage.Pages
1011
{
1112
public class IndexModel : PageModel

YoYoMooc.StudentManagement.RazorPage/Pages/Privacy.cshtml.cs renamed to src/YoYoMooc.StudentManagement.RazorPage/Pages/Privacy.cshtml.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
using Microsoft.AspNetCore.Mvc;
2-
using Microsoft.AspNetCore.Mvc.RazorPages;
3-
using Microsoft.Extensions.Logging;
4-
using System;
1+
using System;
52
using System.Collections.Generic;
63
using System.Linq;
74
using System.Threading.Tasks;
85

6+
using Microsoft.AspNetCore.Mvc;
7+
using Microsoft.AspNetCore.Mvc.RazorPages;
8+
using Microsoft.Extensions.Logging;
9+
910
namespace YoYoMooc.StudentManagement.RazorPage.Pages
1011
{
1112
public class PrivacyModel : PageModel

YoYoMooc.StudentManagement.RazorPage/Program.cs renamed to src/YoYoMooc.StudentManagement.RazorPage/Program.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
using Microsoft.AspNetCore.Hosting;
2-
using Microsoft.Extensions.Configuration;
3-
using Microsoft.Extensions.Hosting;
4-
using Microsoft.Extensions.Logging;
51
using System;
62
using System.Collections.Generic;
73
using System.Linq;
84
using System.Threading.Tasks;
95

6+
using Microsoft.AspNetCore.Hosting;
7+
using Microsoft.Extensions.Configuration;
8+
using Microsoft.Extensions.Hosting;
9+
using Microsoft.Extensions.Logging;
10+
1011
namespace YoYoMooc.StudentManagement.RazorPage
1112
{
1213
public class Program

YoYoMooc.StudentManagement.RazorPage/Properties/launchSettings.json renamed to src/YoYoMooc.StudentManagement.RazorPage/Properties/launchSettings.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"windowsAuthentication": false,
44
"anonymousAuthentication": true,
55
"iisExpress": {
6-
"applicationUrl": "http://localhost:22929",
6+
"applicationUrl": "http://localhost:51734",
77
"sslPort": 0
88
}
99
},
@@ -12,8 +12,7 @@
1212
"commandName": "IISExpress",
1313
"launchBrowser": true,
1414
"environmentVariables": {
15-
"ASPNETCORE_ENVIRONMENT": "Development",
16-
"ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
15+
"ASPNETCORE_ENVIRONMENT": "Development"
1716
}
1817
},
1918
"YoYoMooc.StudentManagement.RazorPage": {
@@ -22,8 +21,7 @@
2221
"launchBrowser": true,
2322
"applicationUrl": "http://localhost:5000",
2423
"environmentVariables": {
25-
"ASPNETCORE_ENVIRONMENT": "Development",
26-
"ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
24+
"ASPNETCORE_ENVIRONMENT": "Development"
2725
}
2826
}
2927
}

YoYoMooc.StudentManagement.RazorPage/Startup.cs renamed to src/YoYoMooc.StudentManagement.RazorPage/Startup.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
16
using Microsoft.AspNetCore.Builder;
27
using Microsoft.AspNetCore.Hosting;
38
using Microsoft.Extensions.Configuration;
49
using Microsoft.Extensions.DependencyInjection;
510
using Microsoft.Extensions.Hosting;
6-
using System;
7-
using System.Collections.Generic;
8-
using System.Linq;
9-
using System.Threading.Tasks;
1011

1112
namespace YoYoMooc.StudentManagement.RazorPage
1213
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

0 commit comments

Comments
 (0)