Skip to content

Commit

Permalink
Use latest version of webcompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas63 committed Jan 7, 2023
1 parent 8019ddd commit 109d860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/dotnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function installBlazorDependencies() {
console.log(chalk.green.bold('Microsoft.Web.LibraryManager.Cli successfully installed.\n'));
}
if (!webcompilerIsInstalled()) {
if (shelljs.exec('dotnet tool install Excubo.WebCompiler --global --version 2.7.14').code !== 0) {
if (shelljs.exec('dotnet tool install Excubo.WebCompiler --global').code !== 0) {
throw new Error('Could not install Excubo.WebCompiler');
}
console.log(chalk.green.bold('Excubo.WebCompiler successfully installed.\n'));
Expand Down

0 comments on commit 109d860

Please sign in to comment.