-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ILStrip failed for [..]/Xamarin.iOS10/ru/Xamarin.Forms.Platform.iOS.resources.dll: File '[...]/Xamarin.iOS10/ru/Xamarin.Forms.Platform.iOS.resources.dll' not found #13922
Comments
@mauroa is this the same ILStrip problem you were facing? |
- Part of investigation of dotnet#13922
- Part of investigation of dotnet#13922
@emaf @rolfbjarne @chamons almost the same issue as this one: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1430924 The only difference is that it's not with resource assemblies but with the main app assembly. I can't see any assembly put in the stripped folder after the ILStrip Task runs |
As per comment on https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1430924 closing. |
@dalexsoto Please quote the comment. The workitem is not publicly available. Thanks! |
This will be fixed in an upcoming preview. |
@chamons Thanks! |
This is a spin-off of #13838 (CC @lauxjpn). See that issue if this does not contain enough information.
Steps to Reproduce
I have a
net6.0-ios
targeting project, that references a package that contains culture specific resource assemblies (the package is a locally buildXamarin.Forms
package, of which the iOS related parts targetnet6.0-ios
).I am running the following build command for my project on my Windows 10 development machine, to build the project remotely on my macOS build host:
dotnet publish "C:\PathToSolution\src\ProjectName\ProjectName.csproj" -c Release -p:ServerAddress=192.168.0.3 -p:ServerUser=username -bl -v d
This results in the following:
At the macOS build host, the following files exist:
The following 2 (sample) directories exist on the macOS build host as well, but contain no files:
A sample Xamarin.Forms resource assembly item looks like this:
The major upload operations for assemblies happen in the
PrepareForBuild
target for_UnpackLibraryResources
items and in the_RunILLink
target.In both targets, the
Xamarin.Forms.Platform.iOS.resources.dll
files are not being uploaded to the macOS build host (no error or warning).The last time the
Xamarin.Forms.Platform.iOS.resources.dll
files were locally copied on the Windows 10 development machines was in the_CopyFilesMarkedCopyLocal
target, shortly after theCoreCompile
target.The text was updated successfully, but these errors were encountered: