-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Publish iOS app fails due to missing *.resources.dll files #12296
Comments
I got the same problem using VS2022 on Windows paired to a mac. |
Ok. I managed to get it working, somehow... |
I wrote a PowerShell script to manage the copy if you have a ton of files
However, I just tried this and got the following error for each language:
|
I'm having the same problem during build on an ARABIC ar resource file. The error is: |
The issue over on Xamarin-macios I linked turns out to be identical, and it proposes a workaround that works (make sure to Clean first):
Apparently it's safe to set it for all projects and only affects iOS? Not sure about that one. |
This might be a duplicate of dotnet/macios#14841.
Correct, it should be safe for all types of projects. Although you can limit it if you want: <PropertyGroup Condition="'$(TargetFramework)' == 'net7.0-ios'">
<EnableAssemblyILStripping>false</EnableAssemblyILStripping>
</PropertyGroup> |
@rolfbjarne |
Seems fixed/duplicate in another repo. Nothing much for us to do here. Thanks all! |
Description
The
obj/Release/net7.0-ios/ios-arm64/<culture>/<projectname>.resources.dll
files aren't being generated on the Mac build server during publishing. They are generated in Release mod for the simulator. Because they aren't generated, the ILStrip step fails, and the whole process fails.The publishing command I'm using is:
It seems like the files are created locally, but not remotely?
Steps to Reproduce
Not sure yet
Link to public reproduction project repository
n/a yet
Version with bug
7.0 (current)
Last version that worked well
Unknown/Other
Affected platforms
iOS
Affected platform versions
iOS 16
Did you find any workaround?
No response
Relevant log output
The text was updated successfully, but these errors were encountered: