雖然我們可以使用 ng new classlib
建立 class library 型態專案,但畢竟是 class library,無法看到結果,此時我們會建立另外一個 console app 專案當成 client,用來測試 class library 的結果。
點燈坊
念念不忘,必有迴響。有一口氣,點一盞燈,有燈就有人。
除了 Console app 扮演 client 的角色,另外一個常見需求就是建立自己的 class library,我們可以使用 ng new classlib
建立 class library 型態專案。
.NET Core SDK 提供了 dotnet restore
指令,但官網的說明很簡單,只說明了他是 restore dependency
,到底什麼是 restore dependency
呢 ?
Console app 是最基本的 .NET Core 專案類型,常用在測試 class library、提供 class library 範例程式,或者開發跨平台的 CLI 工具,我們可以使用 ng new console
建立 console app 型態專案。
只要安裝了 Parallel Desktop,就可以在 macOS 執行 Windows 10 與 Visual Studio,但一些 Visual Studio 的熱鍵會先被 macOS 攔截,且 mac 鍵盤又天生沒有 Home / End / Page Down / Page Up,再加上 Touch Bar 之後,我們會希望盡量不要用到 F1 ~ F12
,在種種條件下, 我們該如何在 macOS 上高效率的使用 Visual Studio 呢 ?
在非同步的資料處理當中,Queue 是常見的應用,本文使用 .NET Framework + AWS Toolkit for Visual Studio 控制有 FIFO 的 AWS SQS。