Package Exports
- @nx-dotnet/core
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nx-dotnet/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Prerequisites
- Have an existing nx workspace. For creating this, see nrwl's documentation.
- .NET SDK is installed, and dotnetis available on the path. For help on this, see Microsoft's documentation
Installation
NPM
npm i --save-dev @nx-dotnet/core
npx nx g @nx-dotnet/core:initPNPM
pnpm i --save-dev @nx-dotnet/core
pnpx nx g @nx-dotnet/core:initYarn
yarn add --dev @nx-dotnet/core
npx nx g @nx-dotnet/core:initGenerate and run your first api!
Generate my-api, and my-api-test with C# and nunit tests.
npx nx g @nx-dotnet/core:app my-api --test-template nunit --language C#Run my-api locally
npx nx serve my-api