Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Examples/aspdotnet-web-dev/devbox.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This devbox.yaml installs the open-source OrchardCore ASP.NET web application on a Dev Box
# and prepares build caches by running dotnet build

setupTasks:
- task: choco
inputs:
package: git
- task: choco
inputs:
package: dotnet-sdk
- task: powershell
inputs:
command: 'git clone https://github.com/OrchardCMS/OrchardCore.git'
workingDirectory: 'C:\\Projects'
- task: powershell
inputs:
command: dotnet build
workingDirectory: 'C:\\Projects'