Developer forum

Forum » Dynamicweb 10 » DW 10 Beta downloiad

DW 10 Beta downloiad

Imar Spaanjaars Dynamicweb Employee
Imar Spaanjaars
Reply

Hi there,

The beta 1 download from here: https://doc.dynamicweb.com/downloads/dynamicweb-10 has the following config:

 <aspNetCore processPath="dotnet"
                  arguments=".\bin\Dynamicweb.CoreUI.Host.dll"
                  stdoutLogEnabled="false"
                  stdoutLogFile=".\logs\stdout"
                  hostingModel="inprocess" />

However, I couldn't get it to work and had to change it to 

      <aspNetCore processPath="dotnet"
                  arguments=".\bin\debug\net7.0\Dynamicweb.Host.Suite.dll"
                  stdoutLogEnabled="false"
                  stdoutLogFile=".\logs\stdout"
                  hostingModel="inprocess" />

 

Is that expected or am I doing something wrong?

Imar


Replies

 
Imar Spaanjaars Dynamicweb Employee
Imar Spaanjaars
Reply

Oh, I see there's a beta 2 now that uses a different folder structure, so maybe this now works? I'll check it out.

Imar

 
Nicolai Pedersen Dynamicweb Employee
Nicolai Pedersen
Reply
This post has been marked as an answer

Yeah - maybe a small error in that 1st beta.

But you should do it from VS Code, VS or developer prompt like this:

dotnet new install Dynamicweb.ProjectTemplates::0.0.7
dotnet new dw10-suite
dotnet run

And if you need the webapi, add the API package as well:

dotnet add package Dynamicweb.Frontend.Classic.Api --version 10.0.0-Beta001
Votes for this answer: 1

 

You must be logged in to post in the forum