Skip .NET Framework-only tests on xplat

This commit is contained in:
Nate McMaster 2017-02-16 11:16:47 -08:00
parent e35ee53ee5
commit 76b998a8dc
No known key found for this signature in database
GPG Key ID: BD729980AA6A21BD
1 changed files with 7 additions and 0 deletions

7
build/repo.props Normal file
View File

@ -0,0 +1,7 @@
<Project>
<ItemGroup>
<!-- TODO re-enable tests on .NET Core when we upgrade to 2.0. This project started using 2.0 API but we had to drop temporarily to .NET Core 1.1 -->
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.CodeAnalysis.Razor.Test\*.csproj" Condition="'$(OS)' != 'Windows_NT'"/>
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Razor.Evolution.Test\*.csproj" Condition="'$(OS)' != 'Windows_NT'" />
</ItemGroup>
</Project>