Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions build-tools/create-packs/Microsoft.Android.Sdk.proj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ core workload SDK packs imported by WorkloadManifest.targets.
<PackageId>Microsoft.Android.Sdk.$(HostOS)</PackageId>
<Description>C# Tools and Bindings for the Android SDK.</Description>
<Description Condition=" '$(HostOS)' == 'Linux' ">$(Description) Please note that this package is not officially supported, and has not received extensive testing.</Description>
<!-- Exclude mono bundle components declared in `create-installers.targets`. -->
<IncludeMonoBundleComponents>false</IncludeMonoBundleComponents>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

Expand All @@ -30,8 +28,8 @@ core workload SDK packs imported by WorkloadManifest.targets.
<Target Name="_GenerateXASdkContent"
DependsOnTargets="ConstructInstallerItems;_GetLicense">
<ItemGroup>
<AndroidSdkBuildTools Include="@(MSBuildItemsWin)" PackagePath="tools\$([System.IO.Path]::GetDirectoryName('%(MSBuildItemsWin.RelativePath)'))" Condition=" '%(MSBuildItemsWin.ExcludeFromAndroidNETSdk)' != 'true' and '$(HostOS)' == 'Windows' " />
<AndroidSdkBuildTools Include="@(MSBuildItemsUnix)" PackagePath="tools\$([System.IO.Path]::GetDirectoryName('%(MSBuildItemsUnix.RelativePath)'))" Condition=" '%(MSBuildItemsUnix.ExcludeFromAndroidNETSdk)' != 'true' and ('$(HostOS)' == 'Linux' or '$(HostOS)' == 'Darwin') " />
<AndroidSdkBuildTools Include="@(MSBuildItemsWin)" PackagePath="tools\$([System.IO.Path]::GetDirectoryName('%(MSBuildItemsWin.RelativePath)'))" Condition=" '$(HostOS)' == 'Windows' " />
<AndroidSdkBuildTools Include="@(MSBuildItemsUnix)" PackagePath="tools\$([System.IO.Path]::GetDirectoryName('%(MSBuildItemsUnix.RelativePath)'))" Condition=" '$(HostOS)' == 'Linux' or '$(HostOS)' == 'Darwin' " />
</ItemGroup>

<GenerateUnixFilePermissions
Expand Down
1 change: 0 additions & 1 deletion build-tools/create-packs/SignList.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

<ItemGroup>
<ThirdParty Include="HtmlAgilityPack.dll" />
<ThirdParty Include="ICSharpCode.SharpZipLib.dll" />
<ThirdParty Include="INIFileParser.dll" />
<ThirdParty Include="Irony.dll" />
<ThirdParty Include="K4os.Compression.LZ4.dll" />
Expand Down
Loading