diff --git a/build.psm1 b/build.psm1 index 015c58e40..5bd162296 100644 --- a/build.psm1 +++ b/build.psm1 @@ -33,6 +33,7 @@ function Start-PSBuild { # These runtimes must match those in project.json # We do not use ValidateScript since we want tab completion [ValidateSet("ubuntu.14.04-x64", + "debian.8-x64", "centos.7.1-x64", "win7-x64", "win81-x64", @@ -211,6 +212,7 @@ function New-PSOptions { # We do not use ValidateScript since we want tab completion [ValidateSet("", "ubuntu.14.04-x64", + "debian.8-x64", "centos.7.1-x64", "win7-x64", "win81-x64", diff --git a/src/powershell/project.json b/src/powershell/project.json index 2b1547492..7e5e6fc77 100644 --- a/src/powershell/project.json +++ b/src/powershell/project.json @@ -37,6 +37,7 @@ "runtimes": { "ubuntu.14.04-x64": { }, + "debian.8-x64": { }, "centos.7.1-x64": { }, "win7-x64": { }, "win81-x64": { }, diff --git a/test/csharp/project.json b/test/csharp/project.json index 88cbbfcf5..6c4754c98 100644 --- a/test/csharp/project.json +++ b/test/csharp/project.json @@ -22,6 +22,7 @@ "runtimes": { "ubuntu.14.04-x64": { }, + "debian.8-x64": { }, "centos.7.1-x64": { }, "win7-x64": { }, "win81-x64": { },