diff options
Diffstat (limited to 'tests/src/dir.props')
-rw-r--r-- | tests/src/dir.props | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/src/dir.props b/tests/src/dir.props index abad765fe4..7f1f523cc4 100644 --- a/tests/src/dir.props +++ b/tests/src/dir.props @@ -18,11 +18,11 @@ <!-- Expose the target OS in a more convenient fashion --> <PropertyGroup> - <OSGroup Condition="'$(OSGroup)'=='' and $(Configuration.StartsWith('Windows'))">Windows_NT</OSGroup> - <OSGroup Condition="'$(OSGroup)'=='' and $(Configuration.StartsWith('Linux'))">Linux</OSGroup> - <OSGroup Condition="'$(OSGroup)'=='' and $(Configuration.StartsWith('OSX'))">OSX</OSGroup> - <OSGroup Condition="'$(OSGroup)'=='' and $(Configuration.StartsWith('FreeBSD'))">FreeBSD</OSGroup> - <OSGroup Condition="'$(OSGroup)'==''">Windows_NT</OSGroup> + <OSGroup Condition="'$(OSGroup)'=='' and $(OSPlatformConfig.StartsWith('Windows'))">Windows_NT</OSGroup> + <OSGroup Condition="'$(OSGroup)'=='' and $(OSPlatformConfig.StartsWith('Linux'))">Linux</OSGroup> + <OSGroup Condition="'$(OSGroup)'=='' and $(OSPlatformConfig.StartsWith('OSX'))">OSX</OSGroup> + <OSGroup Condition="'$(OSGroup)'=='' and $(OSPlatformConfig.StartsWith('FreeBSD'))">FreeBSD</OSGroup> + <OSGroup Condition="'$(OSGroup)'==''">AnyOS</OSGroup> </PropertyGroup> <!-- Setup properties per OSGroup --> |