@nx-dotnet/core
Version:
- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https
13 lines • 469 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const child_process_1 = require("child_process");
try {
const version = (0, child_process_1.execSync)('dotnet --version', { windowsHide: true })
.toString('utf-8')
.trim();
console.info(`[nx-dotnet] .NET SDK ${version} will be used for .NET CLI commands`);
}
catch {
console.warn(`[nx-dotnet] [WARN] .NET SDK NOT FOUND`);
}
//# sourceMappingURL=post-install.js.map
;