Skip to content

Commit cf01c04

Browse files
author
Kapil Borle
committed
Add restore task
1 parent 3a5e476 commit cf01c04

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.build.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
param(
2+
[ValidateSet("net451", "netstandard1.6")]
3+
[string]$Framework = "netstandard1.6",
4+
5+
[ValidateSet("Debug", "Release", "PSv3Debug", "PSv3Release")]
6+
[string]$Configuration = "Debug"
7+
)
8+
9+
task -Name restore `
10+
-Inputs Engine/project.json, Rules/project.json `
11+
-Outputs Engine/project.lock.json, Rules/project.lock.json `
12+
-Jobs {
13+
dotnet restore
14+
}

0 commit comments

Comments
 (0)