diff --git a/.gitignore b/.gitignore index 465cdb4..7dc97f2 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ nbproject *.sublime-project *.sublime-workspace .idea +.vs/ # Komodo *.komodoproject diff --git a/.vs/caliburn-micro.github.io/v16/.suo b/.vs/caliburn-micro.github.io/v16/.suo new file mode 100644 index 0000000..b0e4f20 Binary files /dev/null and b/.vs/caliburn-micro.github.io/v16/.suo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..9a8152a Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/_posts/2021-10-24-Caliburn Micro Templates.md b/_posts/2021-10-24-Caliburn Micro Templates.md index f361782..f8af582 100644 --- a/_posts/2021-10-24-Caliburn Micro Templates.md +++ b/_posts/2021-10-24-Caliburn Micro Templates.md @@ -2,12 +2,13 @@ Template options for Caliburn Micro in VS 2019 -## CmNet5ProjectTemplate +## Caliburn Micro Starter with .NET 5 -CMNET5 project template for FAST and EASY creation of WPF MVVM Windows Desktop application using Caliburn.Micro WPF MVVM Framework (stable version 4.0.173) and the powerful .NET5. This first release s +This starter project template is for FAST and EASY creation of WPF MVVM Windows Desktop application using Caliburn.Micro WPF MVVM Framework (stable version 4.0.173) and the powerful .NET5. +This first release supports only VS 2019. More templates and VS 2022 support coming soon. -https://marketplace.visualstudio.com/items?itemName=AADE-24584A29-EE74-4159-866D-696FBCFBC38D.CmNet5ProjectTemplate202110211850 +https://marketplace.visualstudio.com/items?itemName=AADE-24584A29-EE74-4159-866D-696FBCFBC38D.CmNet5ProjectTemplate202111012030 ## Caliburn Micro Templates diff --git a/documentation/easy-starter-template.md b/documentation/easy-starter-template.md new file mode 100644 index 0000000..1121ce0 --- /dev/null +++ b/documentation/easy-starter-template.md @@ -0,0 +1,56 @@ +--- +layout: page +title: Easy Starter using Visual Studio Extension +--- + +This serves as a quick setup of a WPF project using Caliburn.Micro MVVM Framework. + +There are some **Visual Studio Extensions** that provide project template which help user to create and setup a WPF project using Caliburn Micro Framework. + +####Caliburn Micro Starter with .NET 5 + +This starter project template for FAST and EASY creation of WPF MVVM Windows Desktop application using Caliburn.Micro WPF MVVM Framework and the powerful .NET5. +Cost: FREE! +Version: 1.0.1 +Author: Aixtreme-Agile + +Download link [HERE](https://marketplace.visualstudio.com/items?itemName=AADE-24584A29-EE74-4159-866D-696FBCFBC38D.CmNet5ProjectTemplate202111012030) + +**Usage step-by-step** +- download and install this extension on your Visual Studio. +- (Re-)Start your Visual Studio. +- Create New Project. +- Search in "Create New Project" dialog the project template using keyword "Caliburn Micro" +- Choose **Caliburn Micro Starter with .NET5** and click "Next" +- Enter project name, solution name and location as you want, then click "Create" +- and .. voila .. you have your WPF MVVM project using Caliburn.Micro Framework. + +![Example of generated project by this template](/public/images/documentation/project-template-result.png) + +####Caliburn Micro Starter with .NET Framework + +This starter project template for FAST and EASY creation of WPF MVVM Windows Desktop application using Caliburn.Micro WPF MVVM Framework and .NET Framework (up to 4.8). +Cost: FREE! +Version: 1.0 +Author: Aixtreme-Agile + +Download link [HERE](https://marketplace.visualstudio.com/items?itemName=AADE-24584A29-EE74-4159-866D-696FBCFBC38D.CmNetFrameworkProjectTemplate202111011900) + +**Usage step-by-step** +- download and install this extension on your Visual Studio. +- (Re-)Start your Visual Studio. +- Create New Project. +- Search in "Create New Project" dialog the project template using keyword "Caliburn Micro" +- Choose **Caliburn Micro Starter with .NET Framework** and click "Next" +- Enter project name, solution name and location as you want, then click "Create" +- and .. voila .. you have your WPF MVVM project using Caliburn.Micro Framework. + + +####Caliburn Micro Templates + +Caliburn.Micro project templates for .net core WPF apps. The template pack includes VB and C# templates +Cost: FREE! +Version: 1.0 +Author: Ken Tucker + +Download link [HERE](https://marketplace.visualstudio.com/items?itemName=KenTucker.CaliburnMicroTemplates) diff --git a/documentation/index.md b/documentation/index.md index 6748564..e3acaaa 100644 --- a/documentation/index.md +++ b/documentation/index.md @@ -8,6 +8,7 @@ title: Documentation - [Obtain and Build the Code](./build) - [Nuget](./nuget) - [Cheat Sheet](./cheat-sheet) + - [Easy Starter using Visual Studio Extension](./easy-starter-template) - Soup to Nuts - [Basic Configuration](./configuration) - [Customizing the Bootstrapper](./bootstrapper) diff --git a/public/images/documentation/project-template-result.png b/public/images/documentation/project-template-result.png new file mode 100644 index 0000000..46b389c Binary files /dev/null and b/public/images/documentation/project-template-result.png differ