[build] Remove unix-distribution-setup (#7060)
The tools (opt, llc, cross*) that we download and install from the mono bundle already seem to have the executable flag set, so this project should no longer be needed.
This commit is contained in:
Родитель
d1089c6bea
Коммит
98821bbe6d
|
@ -67,8 +67,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.EnterpriseServices",
|
|||
{3F1F2F50-AF1A-4A5A-BEDB-193372F068D7} = {3F1F2F50-AF1A-4A5A-BEDB-193372F068D7}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "unix-distribution-setup", "build-tools\unix-distribution-setup\unix-distribution-setup.csproj", "{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "class-parse", "external\Java.Interop\tools\class-parse\class-parse.csproj", "{38C762AB-8FD1-44DE-9855-26AAE7129DC3}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "logcat-parse", "external\Java.Interop\tools\logcat-parse\logcat-parse.csproj", "{7387E151-48E3-4885-B2CA-A74434A34045}"
|
||||
|
@ -264,10 +262,6 @@ Global
|
|||
{2868FC32-A4E7-4008-87C8-2C7879CACB58}.Debug|AnyCPU.Build.0 = Debug|Any CPU
|
||||
{2868FC32-A4E7-4008-87C8-2C7879CACB58}.Release|AnyCPU.ActiveCfg = Release|Any CPU
|
||||
{2868FC32-A4E7-4008-87C8-2C7879CACB58}.Release|AnyCPU.Build.0 = Release|Any CPU
|
||||
{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A}.Debug|AnyCPU.ActiveCfg = Debug|Any CPU
|
||||
{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A}.Debug|AnyCPU.Build.0 = Debug|Any CPU
|
||||
{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A}.Release|AnyCPU.ActiveCfg = Release|Any CPU
|
||||
{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A}.Release|AnyCPU.Build.0 = Release|Any CPU
|
||||
{38C762AB-8FD1-44DE-9855-26AAE7129DC3}.Debug|AnyCPU.ActiveCfg = Debug|Any CPU
|
||||
{38C762AB-8FD1-44DE-9855-26AAE7129DC3}.Debug|AnyCPU.Build.0 = Debug|Any CPU
|
||||
{38C762AB-8FD1-44DE-9855-26AAE7129DC3}.Release|AnyCPU.ActiveCfg = Release|Any CPU
|
||||
|
@ -461,7 +455,6 @@ Global
|
|||
{2DD1EE75-6D8D-4653-A800-0A24367F7F38} = {CAB438D8-B0F5-4AF0-BEBD-9E2ADBD7B483}
|
||||
{53E4ABF0-1085-45F9-B964-DCAE4B819998} = {CAB438D8-B0F5-4AF0-BEBD-9E2ADBD7B483}
|
||||
{2868FC32-A4E7-4008-87C8-2C7879CACB58} = {04E3E11E-B47D-4599-8AFC-50515A95E715}
|
||||
{2CF172E5-BDAE-4ABA-8BC8-08040ED3E77A} = {E351F97D-EA4F-4E7F-AAA0-8EBB1F2A4A62}
|
||||
{38C762AB-8FD1-44DE-9855-26AAE7129DC3} = {864062D3-A415-4A6F-9324-5820237BA058}
|
||||
{7387E151-48E3-4885-B2CA-A74434A34045} = {864062D3-A415-4A6F-9324-5820237BA058}
|
||||
{B8F799C5-D7CE-4E09-9CE6-BAA4173E7EC8} = {04E3E11E-B47D-4599-8AFC-50515A95E715}
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<TargetFramework>net472</TargetFramework>
|
||||
<OutputPath>..\..\bin\$(Configuration)\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="..\..\Configuration.props" />
|
||||
<Import Project="unix-distribution-setup.targets" />
|
||||
</Project>
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<Target Name="Build">
|
||||
<PropertyGroup>
|
||||
<_CrossDir>$(OutputPath)lib\xamarin.android\xbuild\Xamarin\Android\$(HostOS)</_CrossDir>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<_ExecutableScript Include="$(_CrossDir)\cross*" />
|
||||
<_ExecutableScript
|
||||
Condition=" Exists('$(_CrossDir)\llc') "
|
||||
Include="$(_CrossDir)\llc"
|
||||
/>
|
||||
<_ExecutableScript
|
||||
Condition=" Exists('$(_CrossDir)\opt') "
|
||||
Include="$(_CrossDir)\opt"
|
||||
/>
|
||||
</ItemGroup>
|
||||
<Exec
|
||||
Condition=" '$(HostOS)' != 'Windows' And '@(_ExecutableScript)' != '' "
|
||||
Command="chmod +x @(_ExecutableScript->'"%(Identity)"', ' ')"
|
||||
/>
|
||||
</Target>
|
||||
|
||||
<Target Name="Clean">
|
||||
</Target>
|
||||
|
||||
<Target Name="CoreCompile"
|
||||
DependsOnTargets="Build">
|
||||
</Target>
|
||||
|
||||
<Target Name="Compile"
|
||||
DependsOnTargets="CoreCompile">
|
||||
</Target>
|
||||
</Project>
|
||||
|
Загрузка…
Ссылка в новой задаче