Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 1013 Bytes

01_Preparation.md

File metadata and controls

25 lines (13 loc) · 1013 Bytes

Preparations to use Generic.ViewModels with a Windows App

Create a .NET Standard Library

  1. Create a .NET Standard Library named BooksLib with models, services, and view-models

Create a .NET Standard Library

  1. Add the NuGet package to the the Generic.ViewModels Library

Add the NuGet Package

Generic.ViewModels is currently not available on the NuGet server. This will change as the library proceeds. Now, you can either clone the repository with the following command, and a) include the project in your solution and add a project reference, or b) create a NuGet package and configure the NuGet package manager to use your local directory.

git clone https://github.com/GenericViewModels/Generic.ViewModels

Create a NuGet package with the dotnet CLI:

dotnet pack

  1. Create the directories Models, Services, and ViewModels.

  2. Reference the Prism.Core Library

Now you're ready to implement the Books library.