diff --git a/Examples/aspdotnet-web-dev/devbox.yaml b/Examples/aspdotnet-web-dev/devbox.yaml new file mode 100644 index 0000000..3b35c82 --- /dev/null +++ b/Examples/aspdotnet-web-dev/devbox.yaml @@ -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' \ No newline at end of file