November Happy Hour will be moved to Thursday December 5th.

Mark Hall
Aug 4, 2021
  5896
(6 votes)

Starting a new project - .NET 5 Series, Part 2

Introduction to Optimizely .NET 5 Series

Welcome everyone to a series of posts about the upcoming releases of .Net 5 compatible commerce and content clouds.

Getting started with upgrade-assistant

Starting a new project

Working with docker and containers

Introduction

Welcome everyone to the second post in a series of posts about the upcoming releases of Optimizely .Net 5. In this post we will explore starting a new project.  Optimizely Content and Commerce clouds have always been relatively easy to setup a new project, and .Net 5 is no different.  Lets take a look at whats changed compared to full framework. 

Install Tools

When working with .Net 5, Microsoft provides tools to create and manage .Net 5 applications. These tools are actually .Net 5 applications themselves, which allow them to run on all operating systems.  In the full framework version, Optimizely relied on Visual Studio extensions and visual studio powershell to install new projects and update schema.  This of course will not work in .Net 5 because Visual Studio is not available on all the operating systems that can run .Net 5 applications.  

 dotnet new -i EPiServer.Net.Templates::1.0.0-pre-020039 --nuget-source https://pkgs.dev.azure.com/EpiserverEngineering/netCore/_packaging/beta-program/nuget/v3/index.json --force
 dotnet tool install EPiServer.Net.Cli --global --add-source https://pkgs.dev.azure.com/EpiserverEngineering/netCore/_packaging/beta-program/nuget/v3/index.json --version 1.0.0-pre-020034

(Note please use the beta feed for the preview packages until they are pushed to the normal Optimizely feed.)

Understanding the tools

The first tool we are installing are Optimizely project templates.  .Net 5 allows the developers the abiility to create a new project template using the dotnet new command.  There are many templates out there to help scaffold different types of .Net 5 applications.  For Optimizely, we provide empty cms and empty commerce projects.

The second tool is the Optimizely CLI tool.  This is a tool for creating database and database users as well as updating connection strings in appsettings.json.  It is important to note that this tool does not install any schema, it just creates the database and the user.  The schema is auto installed for the connection string if it does not find the schema it needs to run the application.

Creating the project

If the run command fails with missing assembly add beta feed package source to nuget.config on the root of the project folder and rerun.

Lets create a new cms project.

dotnet new epicmsempty --name ProjectName
cd projectname
dotnet-episerver create-cms-database ProjectName.csproj -S . -E 
dotnet run

Now lets create a new commerce project.

dotnet new epicommerceempty --name ProjectName
cd projectname
dotnet-episerver create-cms-database ProjectName.csproj -S . -E
dotnet-episerver create-commerce-database ProjectName.csproj -S . -E --reuse-cms-user
dotnet run

Foundation

If you prefer to start with one of the foundation projects we have .Net 5 branches available.  These branches will move to develop once the software is General Availabiility.

Foundation

foundation-mvc-cms

Closing Thoughts

Getting started with a new Optimizely project is as easy as ever.  It is even easier for the non windows users who used to struggle with virtual machines to run the software locally.  With the cross plaform capabilities it is now possible to develop on your favored operating system.  In a future post we go a step further and explore how we leverage containers to run Optimizely.

Aug 04, 2021

Comments

Johnny Mullaney
Johnny Mullaney Aug 6, 2021 02:19 PM

Delighted to see  .Net Core Optimizely get so much momentum this year. Well done all!

Please login to comment.
Latest blogs
CMS Core 12.22.0 delisted from Nuget feed

We have decided to delist version 12.22.0 of the CMS Core packages from our Nuget feed, following the discovery of a bug that affects rendering of...

Magnus Rahl | Dec 3, 2024

Force Login to Optimizely DXP Environments using an Authorization Filter

When working with sites deployed to the Optimizely DXP, you may want to restrict access to the site in a particular environment to only authenticat...

Chris Sharp | Dec 2, 2024 | Syndicated blog

Video Guides: Image Generation Features in Optimizely

The AI Assistant for Optimizely now integrates seamlessly with Recraft AI, providing advanced image generation capabilities directly within your...

Luc Gosso (MVP) | Dec 1, 2024 | Syndicated blog

DAM integration new major version, performance improvements and Library Picker folder selection

As you might already have seen we have decided to delist the EPiServer.CMS.WelcomeIntegration version 1.4.0 where we introduced Graph support....

Robert Svallin | Nov 29, 2024

Adding Geolocation Personalisation to Optimizely CMS with Cloudflare

Enhance your Optimizely CMS personalisation by integrating Cloudflare's geolocation headers. Learn how my Cloudflare Geo-location Criteria package...

Andy Blyth | Nov 26, 2024 | Syndicated blog

Optimizely SaaS CMS + Coveo Search Page

Short on time but need a listing feature with filters, pagination, and sorting? Create a fully functional Coveo-powered search page driven by data...

Damian Smutek | Nov 21, 2024 | Syndicated blog