资源简介

如果在iis express下调试的话,

1.请将 .vs/config/applicationhost.config 中的节点替换为如下:

<binding protocol="http" bindingInformation="*:57707:" />

2. 重新打开vs,切记必须以管理员身份打开 方可。

3.输入 如下图的域名 即可查看效果

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using webmarks.xyz.Models;

namespace webmarks.xyz
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var host = BuildWebHost(args);

            using (var scope = host.Services.CreateScope())
            {
                var services = scope.ServiceProvider;
                var context = services.GetRequiredService();
                context.Database.EnsureCreated();
                if (!context.Tenants.Any())
         

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-10 21:21  Controllers\
     文件        1019  2018-03-08 12:15  Controllers\HomeController.cs
     文件         974  2018-05-10 21:21  Controllers\TestController.cs
     目录           0  2018-05-09 23:23  Infrastructure\
     文件        1591  2018-03-08 12:15  Infrastructure\TenantActionFilter.cs
     目录           0  2018-05-09 23:23  Models\
     文件         210  2018-03-08 12:15  Models\ErrorViewModel.cs
     文件         229  2018-03-08 12:15  Models\Tenant.cs
     文件         365  2018-03-08 12:15  Models\WebMarksDbContext.cs
     文件        1326  2018-03-08 12:15  Program.cs
     目录           0  2018-05-09 23:23  Properties\
     文件         650  2018-05-09 23:23  Properties\launchSettings.json
     文件        1646  2018-03-08 12:15  Startup.cs
     目录           0  2018-05-09 23:23  Views\
     目录           0  2018-05-09 23:23  Views\Home\
     文件         156  2018-03-08 12:15  Views\Home\About.cshtml
     文件         451  2018-03-08 12:15  Views\Home\Contact.cshtml
     文件        5333  2018-03-08 12:15  Views\Home\Index.cshtml
     目录           0  2018-05-09 23:23  Views\Shared\
     文件         847  2018-03-08 12:15  Views\Shared\Error.cshtml
     文件        3533  2018-03-08 12:15  Views\Shared\_Layout.cshtml
     文件        1154  2018-03-08 12:15  Views\Shared\_ValidationscriptsPartial.cshtml
     文件         100  2018-03-08 12:15  Views\_ViewImports.cshtml
     文件          32  2018-03-08 12:15  Views\_ViewStart.cshtml
     文件         168  2018-03-08 12:15  appsettings.Development.json
     文件         105  2018-03-08 12:15  appsettings.json
     目录           0  2018-05-09 23:23  bin\
     目录           0  2018-05-09 23:23  bin\Debug\
     目录           0  2018-05-10 20:59  bin\Debug\netcoreapp2.0\
     文件      280956  2018-05-10 21:19  bin\Debug\netcoreapp2.0\webmarks.xyz.deps.json
     文件       13824  2018-05-10 21:21  bin\Debug\netcoreapp2.0\webmarks.xyz.dll
............此处省略79个文件信息

评论

共有 条评论