Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Last active September 29, 2017 23:37
Show Gist options
  • Save jonpryor/811d447d4faba7fd1d6d6a096c75309b to your computer and use it in GitHub Desktop.
Save jonpryor/811d447d4faba7fd1d6d6a096c75309b to your computer and use it in GitHub Desktop.
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Ankit: Override these! -->
<MonoSourceFullPath>/Volumes/Seagate4TB/work/xamarin-android/external/mono</MonoSourceFullPath>
</PropertyGroup>
<ItemGroup>
<MonoTestAssembly Include="monodroid_corlib_test.dll">
<SourcePath>corlib</SourcePath>
</MonoTestAssembly>
</ItemGroup>
<Target Name="_BuildRuntimes">
<ItemGroup>
<_BclTestContent Include="@(MonoTestAssembly->'$(MonoSourceFullPath)\mcs\class\%(SourcePath)\Test\**\*.*')" />
<_BclTestContent Remove="@(MonoTestAssembly->'$(MonoSourceFullPath)\mcs\class\%(SourcePath)\Test\**\*.cs')" />
<_BclTestContent Remove="@(MonoTestAssembly->'$(MonoSourceFullPath)\mcs\class\%(SourcePath)\Test\**\.gitattributes')" />
</ItemGroup>
<Message Text="# jonp: SourceFiles: @(_BclTestContent->'%(Identity)', '
')" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment