Skip to content

Commit

Permalink
Fix CentOS RID in tests and build module
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleejordan committed Jun 17, 2016
1 parent f432279 commit b19be8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Start-PSBuild {
# We do not use ValidateScript since we want tab completion
[ValidateSet("ubuntu.14.04-x64",
"debian.8-x64",
"centos.7.1-x64",
"centos.7-x64",
"win7-x64",
"win81-x64",
"win10-x64",
Expand Down Expand Up @@ -221,7 +221,7 @@ function New-PSOptions {
[ValidateSet("",
"ubuntu.14.04-x64",
"debian.8-x64",
"centos.7.1-x64",
"centos.7-x64",
"win7-x64",
"win81-x64",
"win10-x64",
Expand Down
2 changes: 1 addition & 1 deletion test/csharp/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"runtimes": {
"ubuntu.14.04-x64": { },
"debian.8-x64": { },
"centos.7.1-x64": { },
"centos.7-x64": { },
"win7-x64": { },
"win81-x64": { },
"win10-x64": { },
Expand Down

1 comment on commit b19be8c

@andyleejordan
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7.1 explicit "support" was dropped from CoreFX. That is, 7(.*) is supported, without specific versions.

Please sign in to comment.