Lotte
03/07/2024, 9:46 AMWarren Buckley
03/07/2024, 9:51 AMWarren Buckley
03/07/2024, 10:03 AMWarren Buckley
03/07/2024, 10:06 AMWarren Buckley
03/07/2024, 10:11 AM@inherits UmbracoViewPage<Home>
Lotte
03/07/2024, 10:28 AMLotte
03/07/2024, 10:28 AMSebastiaan
03/07/2024, 10:38 AMdotnet new install Umbraco.Templates::14.0.0-beta001 --nuget-source https://www.myget.org/F/umbracoprereleases/api/v3/index.json
dotnet new umbraco --force -n "MyProject" --friendly-name "Test" --email "test@test.com" --password 'test123456' --development-database-type LocalDB && dotnet run --project "MyProject"
This will make a new directory MyProject
and install and run the beta. Username/pass: test@test.com
/ test123456
Sebastiaan
03/07/2024, 10:41 AMxml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="myget nightly" value="https://www.myget.org/F/umbracoprereleases/api/v3/index.json" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>
This also is only local to that project, so not installing a feed globally.Owain
03/07/2024, 12:04 PMSebastiaan
03/07/2024, 12:12 PMWarren Buckley
03/07/2024, 12:13 PMOwain
03/07/2024, 1:43 PMCodeBunTes
03/07/2024, 2:00 PMJoe Glombek
03/07/2024, 3:32 PM