Skip to content

Commit

Permalink
Bump to dotnet/installer@0b60950 6.0.100-preview.5.21229.1 (#5870)
Browse files Browse the repository at this point in the history
Changes: dotnet/installer@d9bf0d6...0b60950

Microsoft.Dotnet.Sdk.Internal
 From Version 6.0.100-preview.4.21221.10 -> To Version 6.0.100-preview.5.21229.1

[tests] fix AllResourcesInClassLibrary

* Remove `$(OutputType)` from a class library project

Co-authored-by: Jonathan Peppers <[email protected]>
Co-authored-by: Peter Collins <[email protected]>
  • Loading branch information
3 people authored Apr 30, 2021
1 parent 9c04378 commit 351a7ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="6.0.100-preview.4.21221.10">
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="6.0.100-preview.5.21229.1">
<Uri>https://github.com/dotnet/installer</Uri>
<Sha>d9bf0d661ba2e1ac065ae119585dc7f0e3c29703</Sha>
<Sha>0b60950dad3cd50b07e130568454a33e058e2507</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.ILLink" Version="6.0.100-preview.2.21226.1">
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="6.0.100-preview.5.21227.1" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
<Uri>https://github.com/mono/linker</Uri>
<Sha>1dfcf3077aca1ea77850f409d95c3192f03507b3</Sha>
<Sha>bf37b2909bbfb2942173e7b383642c9b32ae0e79</Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
Expand Down
4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<!--Package versions-->
<PropertyGroup>
<MicrosoftDotnetSdkInternalPackageVersion>6.0.100-preview.4.21221.10</MicrosoftDotnetSdkInternalPackageVersion>
<MicrosoftNETILLinkPackageVersion>6.0.100-preview.2.21226.1</MicrosoftNETILLinkPackageVersion>
<MicrosoftDotnetSdkInternalPackageVersion>6.0.100-preview.5.21229.1</MicrosoftDotnetSdkInternalPackageVersion>
<MicrosoftNETILLinkTasksPackageVersion>6.0.100-preview.5.21227.1</MicrosoftNETILLinkTasksPackageVersion>
<MicrosoftDotNetApiCompatPackageVersion>5.0.0-beta.20181.7</MicrosoftDotNetApiCompatPackageVersion>
<MicrosoftDotNetBuildTasksFeedPackageVersion>6.0.0-beta.21212.6</MicrosoftDotNetBuildTasksFeedPackageVersion>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<OutputPath>$(XAInstallPrefix)xbuild\Xamarin\Android\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.ILLink" Version="$(MicrosoftNETILLinkPackageVersion)" />
<PackageReference Include="Microsoft.NET.ILLink" Version="$(MicrosoftNETILLinkTasksPackageVersion)" />
<ProjectReference Include="..\..\external\Java.Interop\src\Java.Interop.Export\Java.Interop.Export.csproj" SkipGetTargetFrameworkProperties="true" AdditionalProperties="TargetFramework=netcoreapp3.1" />

<Compile Include="..\Xamarin.Android.Build.Tasks\obj\$(Configuration)\Profile.g.cs" Link="Profile.g.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3777,6 +3777,9 @@ public void AllResourcesInClassLibrary ([Values (true, false)] bool useAapt2)
};
lib.SetProperty ("AndroidApplication", "False");
lib.AndroidUseAapt2 = useAapt2;
if (Builder.UseDotNet) {
lib.RemoveProperty ("OutputType");
}

// Create an "app" that is basically empty and references the library
var app = new XamarinAndroidLibraryProject {
Expand Down

0 comments on commit 351a7ba

Please sign in to comment.