Last active
September 29, 2017 23:37
-
-
Save jonpryor/811d447d4faba7fd1d6d6a096c75309b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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