.NET
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[.NET Blog:https://devblogs.microsoft.com/dotnet/]]
-[[マイクロソフト系技術情報 Wiki:https://techinfoofmicros...
-[[Insider.NET : .NET ソリューションのための技術情報フォ...
-[[.NET Framework の新機能を超簡単に説明する:https://qiit...
-[[さいきんの.NETのこととかNuGetとかCoreとかよく分からな...
-[[.NETテクノロジーまとめ:http://qiita.com/kenji-yokoi/it...
-[[.NET Framework のバージョン対応表:http://qiita.com/nsk...
--[[.NET Framework の新機能を超簡単に説明する:http://qiit...
-[[.NET Core - .NET Core による .NET のクロスプラットフォ...
----
*LINQ(Language Integrated Query) [#n7125c24]
-[[統合言語クエリ (LINQ):https://docs.microsoft.com/ja-jp...
-[[C#のLINQが便利!:http://hexadrive.jp/hexablog/%E3%83%9...
-[[[C#] これだけ押さえておけば大丈夫!?LINQ拡張メソッド...
-[[【C#】LINQ備忘録1 ~初級編~:http://qiita.com/logikuma...
-[[【C#】LINQ ForEach, Select, Where解説【LINQ】:http://...
-IEnumerable インタフェースを実装している型ならば利用できる
-using System.Linq; を指定
*テスト [#w82df616]
-[[Visual Studio 2017 での Live Unit Testing:https://docs...
-[[MicrosoftがVisual Studio Testをオープンソース化:https:...
-[[テスト駆動開発(TDD) in .NET:https://takanosho.wordpr...
**[[xUnit:https://xunit.github.io]] [#w842d8fd]
-[[xUnit.net の使い方(基本編):http://qiita.com/inabe49/...
-[[xUnit.net の使い方(Context):http://qiita.com/inabe49...
-[[xUnit.net の使い方(ソースの指定):http://qiita.com/in...
-[[.NET Core と xUnit でライブユニットテスト(的なやつ):...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[Visual Studio for Mac で xUnit を実行する方法:http://q...
**[[NUnit:https://www.nunit.org]] [#ye4eb705]
-[[NUnit の使い方:https://m-tmatma.github.io/NUnit/NUnit....
-[[Visual Studio for Macで単体テストをする時に役立つ3つの...
*Yeoman [#fb3caaed]
-[[Introduction to building projects with Yeoman in ASP.N...
-[[.NET Core開発で project.json / .csproj に手動で参照追...
--[[.NET API Browser:https://docs.microsoft.com/ja-jp/dot...
**インストールからプロジェクト作成・実行 [#s153140c]
-インストール
$ npm install -g yo bower
$ npm install -g generator-aspnet
--[[yo:https://www.npmjs.com/package/yo]] ... Yeoman
--[[bower:https://www.npmjs.com/package/bower]] ... フロ...
--[[generator-aspnet:https://www.npmjs.com/package/genera...
-空のASP.NET Core Web Applicationプロジェクトを作成
$ yo aspnet
$ cd [プロジェクトのフォルダ]
$ dotnet restore
$ dotnet run
-Visual Studio Code を起動
$ code .
--これで起動しない場合は Visual Studio Code の画面で「シ...
-yo aspnet:app [options] [<type>] [<applicationName>] [<u...
--type
---web for Empty Web Application
---console for Console Application
---mvc for Web Application
---mvcbasic for Web Application Basic
---webapi for Web API Application
---nancy for Nancy ASP.NET Application
---classlib for Class Library
---mstest MSTest Test project (MSTest)
---xunit xUnit Test project (xUnit.net)
--ui
---bootstrap for Bootstrap (this is the default and does ...
---semantic for Semantic UI
*Tips [#sb031f0e]
-[[書籍「実戦で役立つ C#プログラミングのイディオム/定石&...
-[[ASP.NET Core MVC アプリケーションでスキャフォールディ...
終了行:
[[.NET Blog:https://devblogs.microsoft.com/dotnet/]]
-[[マイクロソフト系技術情報 Wiki:https://techinfoofmicros...
-[[Insider.NET : .NET ソリューションのための技術情報フォ...
-[[.NET Framework の新機能を超簡単に説明する:https://qiit...
-[[さいきんの.NETのこととかNuGetとかCoreとかよく分からな...
-[[.NETテクノロジーまとめ:http://qiita.com/kenji-yokoi/it...
-[[.NET Framework のバージョン対応表:http://qiita.com/nsk...
--[[.NET Framework の新機能を超簡単に説明する:http://qiit...
-[[.NET Core - .NET Core による .NET のクロスプラットフォ...
----
*LINQ(Language Integrated Query) [#n7125c24]
-[[統合言語クエリ (LINQ):https://docs.microsoft.com/ja-jp...
-[[C#のLINQが便利!:http://hexadrive.jp/hexablog/%E3%83%9...
-[[[C#] これだけ押さえておけば大丈夫!?LINQ拡張メソッド...
-[[【C#】LINQ備忘録1 ~初級編~:http://qiita.com/logikuma...
-[[【C#】LINQ ForEach, Select, Where解説【LINQ】:http://...
-IEnumerable インタフェースを実装している型ならば利用できる
-using System.Linq; を指定
*テスト [#w82df616]
-[[Visual Studio 2017 での Live Unit Testing:https://docs...
-[[MicrosoftがVisual Studio Testをオープンソース化:https:...
-[[テスト駆動開発(TDD) in .NET:https://takanosho.wordpr...
**[[xUnit:https://xunit.github.io]] [#w842d8fd]
-[[xUnit.net の使い方(基本編):http://qiita.com/inabe49/...
-[[xUnit.net の使い方(Context):http://qiita.com/inabe49...
-[[xUnit.net の使い方(ソースの指定):http://qiita.com/in...
-[[.NET Core と xUnit でライブユニットテスト(的なやつ):...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[ASP.NET Core MVC と xUnit.NET でユニットテストを行う P...
-[[Visual Studio for Mac で xUnit を実行する方法:http://q...
**[[NUnit:https://www.nunit.org]] [#ye4eb705]
-[[NUnit の使い方:https://m-tmatma.github.io/NUnit/NUnit....
-[[Visual Studio for Macで単体テストをする時に役立つ3つの...
*Yeoman [#fb3caaed]
-[[Introduction to building projects with Yeoman in ASP.N...
-[[.NET Core開発で project.json / .csproj に手動で参照追...
--[[.NET API Browser:https://docs.microsoft.com/ja-jp/dot...
**インストールからプロジェクト作成・実行 [#s153140c]
-インストール
$ npm install -g yo bower
$ npm install -g generator-aspnet
--[[yo:https://www.npmjs.com/package/yo]] ... Yeoman
--[[bower:https://www.npmjs.com/package/bower]] ... フロ...
--[[generator-aspnet:https://www.npmjs.com/package/genera...
-空のASP.NET Core Web Applicationプロジェクトを作成
$ yo aspnet
$ cd [プロジェクトのフォルダ]
$ dotnet restore
$ dotnet run
-Visual Studio Code を起動
$ code .
--これで起動しない場合は Visual Studio Code の画面で「シ...
-yo aspnet:app [options] [<type>] [<applicationName>] [<u...
--type
---web for Empty Web Application
---console for Console Application
---mvc for Web Application
---mvcbasic for Web Application Basic
---webapi for Web API Application
---nancy for Nancy ASP.NET Application
---classlib for Class Library
---mstest MSTest Test project (MSTest)
---xunit xUnit Test project (xUnit.net)
--ui
---bootstrap for Bootstrap (this is the default and does ...
---semantic for Semantic UI
*Tips [#sb031f0e]
-[[書籍「実戦で役立つ C#プログラミングのイディオム/定石&...
-[[ASP.NET Core MVC アプリケーションでスキャフォールディ...
ページ名: