Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into impl-set-virtu…
Browse files Browse the repository at this point in the history
…al-entity
  • Loading branch information
Splaxi committed Mar 3, 2024
2 parents 1f3a85d + c5c6677 commit 7d6e06b
Show file tree
Hide file tree
Showing 4 changed files with 506 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"image": "mcr.microsoft.com/powershell:latest",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/natescherer/devcontainers-custom-features/powershell-resources": {
"resources": "d365bap.tools"
},
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "8.0"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.powershell",
"ms-dotnettools.dotnet-interactive-vscode"
]
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: .\build\vsts-validate.ps1
shell: powershell
- name: Build
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY -AutoVersion
shell: powershell
env:
APIKEY: ${{ secrets.ApiKey }}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ Depending on which PowerShell console (v5 / v7+) - you will have different sign-
Login-AzAccount -UseDeviceAuthentication -TenantId abd...
```

## Learn interactively

We have implemented a **Jupyter Notebook** to help you learn interactively about the different cmdlets / functions available in the module. The notebook is located inside the **'notebooks'** folder in this repository. Click this link [**notebooks**](/learning/notebooks/get-started.ipynb) to jump straight inside.

While the notebook is already helpful in itself, its interactive nature will help you learn on another level. To do that, open the notebook in Visual Studio Code with the [Polyglot](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode) extension installed.

The repository also contains a [devcontainer](.devcontainer/devcontainer.json) that has everything installed to run the notebook. The easiest way to get started is to use GitHub Codespaces. Click the button below to start a new Codespace with the repository.

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/d365collaborative/d365bap.tools)

## Getting help

[The wiki](https://github.com/d365collaborative/d365bap.tools/wiki) contains more details about installation and also guides to help you with some common tasks. It also contains documentation for all the module's commands. Expand the wiki's `Pages` control at the top of the content sidebar to view and search the list of command documentation pages.
Expand Down
Loading

0 comments on commit 7d6e06b

Please sign in to comment.