Skip to content
This repository was archived by the owner on Apr 11, 2021. It is now read-only.

Commit 31b2a6e

Browse files
add readme
1 parent 2eb4eca commit 31b2a6e

File tree

12 files changed

+235
-9
lines changed

12 files changed

+235
-9
lines changed

ADONET/Readme.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ This chapter contains these samples:
99

1010
The database that is used with these samples is AdventureWorks. Download AdventureWorks from [CodePlex](https://msftdbprodsamples.codeplex.com).
1111

12-
The current version of this sample is built with .NET Core RTM and Preview 2 Tools.
13-
When RTM of the Tools is available, the project files will be updated.
14-
12+
The current version of this sample is built with .NET Core 1.0 and Preview 2 Tools.
13+
When RTM of the Tools is available, the project files will be updated.

ASPNET/Readme.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,14 @@ This chapter contains this sample:
66

77
Building this sample starts with an empty ASP.NET Core Web project, and adds many features of ASP.NET Core.
88

9-
The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.
9+
To build and run the .NET Core samples, please install
10+
* Visual Studio 2015 Update 3
11+
* .NET Core 1.0 for Visual Studio
12+
13+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
14+
15+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
16+
17+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
18+
19+
Thank you!

ASPNETMVC/Readme.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
# Readme - Code Samples for Chapter 41, ASP.NET MVCThis chapter contains these samples:* MVCSampleApp* MenuPlannerThe MVCSampleApp was created with an empty ASP.NET Core Web project template. Many features for ASP.NET MVC have been added.The MenuPlanner application was created with the ASP.NET MVC Web project template. Sample code shows how to read and write from a database.The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated. With RTM, several views will be added to show edit and delete of menus.
1+
# Readme - Code Samples for Chapter 41, ASP.NET MVC
2+
3+
This chapter contains these samples:
4+
5+
* MVCSampleApp
6+
* MenuPlanner
7+
8+
The MVCSampleApp was created with an empty ASP.NET Core Web project template. Many features for ASP.NET MVC have been added.
9+
10+
The MenuPlanner application was created with the ASP.NET MVC Web project template. Sample code shows how to read and write from a database.
11+
12+
To build and run the .NET Core samples, please install
13+
* Visual Studio 2015 Update 3
14+
* .NET Core 1.0 for Visual Studio
15+
16+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
17+
18+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
19+
20+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
21+
22+
Thank you!

DeploymentWeb/Readme.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Readme - Code Samples for Chapter 45, Deploying Websites and Services
2+
3+
This chapter contains these samples:
4+
5+
* WebDotnetCore
6+
* WebDotnetFramework
7+
8+
This chapter just contains two projects as they are created from the Visual Studio templates for deployment: a Web application with .NET Core, and a Web application with the .NET Framework
9+
10+
To build and run the .NET Core samples, please install
11+
* Visual Studio 2015 Update 3
12+
* .NET Core 1.0 for Visual Studio
13+
14+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
15+
16+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
17+
18+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
19+
20+
Thank you!

DeploymentWindows/Readme.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Readme - Code Samples for Chapter 36, Deploying Windows Apps
2+
3+
This chapter contains the following UWP and WPF code samples:
4+
5+
* ClientWPF
6+
* AppSupport (Library to be installed with ClickOnce)
7+
* ClientWPF (Simple app using AppSupport)
8+
* UniversalWindowsApp (an app thats created from the Visual Studio template to run the Windows App Certification Kit)
9+
10+
To build and run the .NET Core samples, please install
11+
* Visual Studio 2015 Update 3
12+
* .NET Core 1.0 for Visual Studio
13+
14+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
15+
16+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
17+
18+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
19+
20+
Thank you!

EntityFramework/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Most of the projects of this solution are .NET Core projects. The only project u
1919
The database that is used with many of these samples is the Books database. Look for the backup file Books.bak. You can use this file to restore the Books database using SQL Server Management Studio.
2020
The Menus database that is also used in some samples is created using the Migrations feature of Entity Framework.
2121

22-
The current version of the samples are built with .NET Core RTM and Preview 2 of the tools.
23-
When RTM of the tools is available, the project files will be updated.
22+
The current version of the samples are built with .NET Core 1.0 and Preview 2 of the tools.
23+
When RTM of the tools is available, the project files will be updated.

Services/Readme.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Readme - Code Samples for Chapter 39, Windows Services
2+
3+
This chapter contains the following code samples:
4+
5+
* QuoteServer (imlementation of the quote server with TcpListener)
6+
* TestQuoteServer (console application to run the QuoteServer without a Windows Service)
7+
* QuoteService (Windows Service that hosts QuoteServer)
8+
* QuoteClientWPF (WPF application that makes use of the quote service)
9+
* ServiceControlWPF (start/stop Windows services)
10+
11+
This chapter uses the full .NET Framework for creating Windows Services. For monitoring of Windows Services, it would also be possible to use .NET Core.
12+
13+
To build and run the .NET Core samples, please install
14+
* Visual Studio 2015 Update 3
15+
* .NET Core 1.0 for Visual Studio
16+
17+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
18+
19+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
20+
21+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
22+
23+
Thank you!

SignalRAndWebHooks/Readme.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Readme - Code Samples for Chapter 43, WebHooks and SignalR
2+
3+
This chapter contains these samples:
4+
5+
* SignalRSample
6+
* ChatServer (contains SignalR and the HTML file ChatWindow for a HTML/JavaScript client)
7+
* MvvmLib (Library used by WPFChatClient)
8+
* WPFChatClient (WPF Client)
9+
* WebHooksSample
10+
11+
The sample code of this chapter is using the .NET Framework because SignalR and WebHooks was not available for .NET Core at the time writing this book. However, the WPF application makes use of a .NET Core library for dependency injection. This is currently based on .NET Core RC1.
12+
13+
14+
To build and run the .NET Core samples, please install
15+
* Visual Studio 2015 Update 3
16+
* .NET Core 1.0 for Visual Studio
17+
18+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
19+
20+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
21+
22+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
23+
24+
Thank you!

WCF/Readme.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Readme - Code Samples for Chapter 44, Windows Communication Foundation
2+
3+
This chapter contains these samples:
4+
5+
* RoomReservation (a simple WCF client and server)
6+
* RoomReservationContracts (entity types and interface contracts)
7+
* RoomReservationData (Entity Framework Core)
8+
* RoomReservationService (service implementing the RoomReservation contracts)
9+
* RoomReservationHost (custom host using ServiceHost)
10+
* RoomReservationWebServiceHost (custom host using WebServiceHost)
11+
* RoomReservationClient (WPF client applicaiton using the WCF service)
12+
* RoomReservationClientSharedAssembly (WPF client application using the same contract assembly as the server)
13+
* WebSocketsSample
14+
* WebSocketsSample (service host using CCallbackContract and netHttpBinding)
15+
* ClientApp (client application using InstanceContext and CallbackHandler)
16+
* DuplexCommunication
17+
* MessageService (service using a duplex channel, GetCallbackChannel)
18+
* DuplexHost (host using wsDualHttpBinding)
19+
* MessageClient (client using DuplexChannelFactory)
20+
* RoutingSample
21+
* ServiceContract (WCF service contract)
22+
* DemoService (simple WCF service)
23+
* HostOne (a host hosting DemoService)
24+
* HostTwo (another host hosting DemoService)
25+
* Router (router host using ServiceHost and MessageFilter)
26+
* ClientApp (calling the service via the router)
27+
28+
WCF needs (at least the server part) the full .NET Framework.
29+
30+
To build and run the .NET Core samples, please install
31+
* Visual Studio 2015 Update 3
32+
* .NET Core 1.0 for Visual Studio
33+
34+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
35+
36+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
37+
38+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
39+
40+
Thank you!

WPF/Readme.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Readme - Code Samples for Chapter 34, Windows Desktop Applications with WPF
2+
3+
This chapter contains the following WPF code samples:
4+
5+
* ControlsSamples (Frame, Expander, Viewbox, BulletDecorator)
6+
* LayoutSamples (Canvas, StackPanel, Grid, DockPanel, WrapPanel)
7+
* TriggerSamples (Trigger, MultiTrigger, DataTrigger)
8+
* Book
9+
* BooksDemoLib (Library used by two Applications - ICommand, UserControl, DataGrid, CollectionViewSource, ObjectDataProvider, ListBox)
10+
* BooksDemoMenu (using the Menu control)
11+
* BooksDemoRibbon (using the Ribbon control, TabControl)
12+
* MultiBindingSample (MultiBinding, IMultiValueConverter)
13+
* PriorityBindingSample (PriorityBinding)
14+
* ValidationSample (ValidatesOnExceptions, ValidatesOnDataErrors, ValidatesOnNotifyDataErrors, IDataErrorInfo, INotifyDataErrorInfo)
15+
* XML Binding (xmlDataProvider)
16+
* Formula1Demo (TreeView, DataGrid, CollectionViewSource with grouping)
17+
* LiveShaping (CollectionViewSource with live shaping)
18+
19+
The samples in this chapter need the full .NET Framework - for WPF.
20+
21+
To build and run the .NET Core samples, please install
22+
* Visual Studio 2015 Update 3
23+
* .NET Core 1.0 for Visual Studio
24+
25+
Please download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows).
26+
27+
For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)
28+
29+
Please check my blog [csharp.christiannagel.com](https://csharp.christiannagel.com "csharp.christiannagel.com") for additional information for topics covered in the book.
30+
31+
Thank you!

0 commit comments

Comments
 (0)