資源簡介
跟MVP楊旭學習asp.net core3.0 前6節課程源代碼。這位大佬的課程源碼并沒有公布出來,可能是太簡單了。
所以這里的源代碼是我照著視頻練習所敲下來的,希望對需要的學友們有所幫助。
這里為大家附上視頻課程地址:https://www.bilibili.com/video/av65313713
非常厲害的技術大牛,并且講課風格高度凝煉,思路清晰,沒有半句廢話,是不可多得的高質量視頻教學。

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Threading.Tasks;
using?Microsoft.AspNetCore.Hosting;
using?Microsoft.Extensions.Configuration;
using?Microsoft.Extensions.Hosting;
using?Microsoft.Extensions.Logging;
namespace?Three
{
????public?class?Program
????{
????????public?static?void?Main(string[]?args)
????????{
????????????CreateHostBuilder(args).Build().Run();
????????}
????????public?static?IHostBuilder?CreateHostBuilder(string[]?args)?=>
????????????Host.CreateDefaultBuilder(args)
????????????//以下6行:不想使用框架默認的配置文件時,可以自定義自己的配置文件。需要增加自己的配置文件,如myAppJsonConfig.json
????????????.ConfigureAppConfiguration((context?configBuilder)?=>
????????????{
????????????????configBuilder.Sources.Clear();
????????????????configBuilder.AddJsonFile(“myAppJsonConfig.json“);
????????????})
????????????????.ConfigureWebHostDefaults(webBuilder?=>
????????????????{
????????????????????webBuilder.UseStartup();
????????????????????webBuilder.UseKestrel();//使用服務器托管
????????????????});
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????76676??2019-09-13?21:13??Three\.vs\Three\config\applicationhost.config
?????文件?????463040??2019-09-15?18:01??Three\.vs\Three\DesignTimeBuild\.dtbcache
????..A..H.?????94720??2019-09-15?18:01??Three\.vs\Three\v16\.suo
?????文件??????????0??2019-09-13?21:34??Three\.vs\Three\v16\Server\sqlite3\db.lock
?????文件????2789376??2019-09-15?18:01??Three\.vs\Three\v16\Server\sqlite3\storage.ide
?????文件????????146??2019-09-13?21:34??Three\Three\appsettings.Development.json
?????文件????????262??2019-09-15?17:14??Three\Three\appsettings.json
?????文件????????146??2019-09-13?21:34??Three\Three\bin\Debug\netcoreapp3.0\appsettings.Development.json
?????文件????????262??2019-09-15?17:14??Three\Three\bin\Debug\netcoreapp3.0\appsettings.json
?????文件????????358??2019-09-14?11:52??Three\Three\bin\Debug\netcoreapp3.0\bundleconfig.json
?????文件????????239??2019-09-14?11:35??Three\Three\bin\Debug\netcoreapp3.0\libman.json
?????文件??????????8??2019-08-06?14:27??Three\Three\bin\Debug\netcoreapp3.0\myAppJsonConfig.json
?????文件?????????98??2019-09-14?11:34??Three\Three\bin\Debug\netcoreapp3.0\package.json
?????文件????????674??2019-09-13?21:34??Three\Three\bin\Debug\netcoreapp3.0\Properties\launchSettings.json
?????文件?????106960??2019-09-15?17:18??Three\Three\bin\Debug\netcoreapp3.0\Three.deps.json
?????文件??????23552??2019-09-15?17:57??Three\Three\bin\Debug\netcoreapp3.0\Three.dll
?????文件?????159744??2019-09-15?17:57??Three\Three\bin\Debug\netcoreapp3.0\Three.exe
?????文件???????5024??2019-09-15?17:57??Three\Three\bin\Debug\netcoreapp3.0\Three.pdb
?????文件????????252??2019-09-14?11:52??Three\Three\bin\Debug\netcoreapp3.0\Three.runtimeconfig.dev.json
?????文件????????241??2019-09-14?11:52??Three\Three\bin\Debug\netcoreapp3.0\Three.runtimeconfig.json
?????文件??????62976??2019-09-15?17:57??Three\Three\bin\Debug\netcoreapp3.0\Three.Views.dll
?????文件???????5548??2019-09-15?17:57??Three\Three\bin\Debug\netcoreapp3.0\Three.Views.pdb
?????文件????????358??2019-09-14?11:52??Three\Three\bundleconfig.json
?????文件???????1568??2019-09-15?17:37??Three\Three\Controllers\DepartmentController.cs
?????文件???????1863??2019-09-14?13:30??Three\Three\Controllers\EmployeeController.cs
?????文件????????239??2019-09-14?11:35??Three\Three\libman.json
?????文件????????306??2019-09-14?12:31??Three\Three\Models\CompanySummary.cs
?????文件????????483??2019-09-15?15:23??Three\Three\Models\Department.cs
?????文件????????510??2019-09-14?12:03??Three\Three\Models\Employee.cs
????.......?????????8??2019-08-06?14:27??Three\Three\myAppJsonConfig.json
............此處省略110個文件信息
評論
共有 條評論