-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
.NET Core 3.1 review list #1365
Comments
Hey there, may I ask if you have any plans to add this feature anytime soon?
If I understand correctly a fix for that issue has been added to .NET Core 3.1 Thanks |
It's more complicated than that since it also bundles all of my files ASF needs to work with, such as config directory and alike. I'll need to see if there is an easy way to exclude them from bundling. But yes, now that I merged 3.1 in, it's time to see how the list above reflects today. |
Done in #1542. |
Since all outstanding issues have been dealt with, we can close this task in favour of last task that is left: #1543 |
I tried it building ASF myself in my Debian machine and it compiled with no errors. However, when I tried to open it (the Thanks a lot for implementing this! |
Remember that you can always download artifacts directly from AppVeyor (or GitHub in case of releases): https://ci.appveyor.com/project/JustArchi/archisteamfarm/builds/29348255/artifacts I tested linux-x64 and it worked fine for me. |
Yup I was actually waiting for this one: https://ci.appveyor.com/project/JustArchi/archisteamfarm/builds/29348262 Anyway, I've just downloaded it. The binary size is the same of when I compiled it, so I don't think I've messed it up 😄 Also, the 'missing libraries' errors I was getting is related to this one plugin I have installed: https://github.com/Ryzhehvost/ASF-Achievement-Manager I have no idea how to fix it and honestly it's fine if I just disable them for now. I know this fix shouldn't be done by you, but I'll leave my ASF's log file here just in case: Thanks again! |
I had to disable single file publishing anyway for now due to update issues on Windows boxes, I'll see if I can think of something clever upcoming days (single file forces handle on main binary and I can't do anything with it as part of the process, previously I could move it around). |
Too bad... Happy to say that it's working great on Linux though! (except for the plugins part) |
It is because on Linux I can move/rm anything I want to, only Windows is problematic. |
@guixxx Windows awaits reasoning in https://github.com/dotnet/sdk/issues/4022 |
Thanks for heads up. Anyway, since I mostly use Linux and I was able to build ASF from source, I'm good for now... |
Linux (and OS X) will be published as single file starting from V4.1.1.2, officially, since this isn't a blocker for it. And as an extra it's actually a good opportunity to test if my enhanced logic for |
Issue for myself to remind me about areas to explore when upgrading ASF to .NET Core 3.0:
Backlog:
Code upgrades:
HttpClient
use HTTP/2 by default. Needs testing.Maintenance:
Minor
version should be done,Major
depending on whether there will be breaking changes across updates and alike, nothing justifying it as of now.CLR_OPENSSL_VERSION_OVERRIDE=1.1
should no longer be needed.Initial:
ILLink.Tasks
(should now be bundled), check enhanced trimming and publishing single executables, like this.rootDescriptor.xml
, see for the new approach and whether it's still needed.rcedit
should no longer be needed, eradicate it out oftools
andappveyor.yml
, Review rcedit usage when targetting netcoreapp3.0+ #926.CoreCompileCache
workaround incsproj
should no longer be needed, DefineConstants should be considered for CoreCompile incrementality dotnet/msbuild#3350 is supposed to be solved.csproj
andcc.sh
, especially stuff likeLinkDuringPublish
orCrossGenDuringPublish
. Correctdotnet publish
to still use FDD and SCD and not FDE.Check size difference inNot supported in cross-platform building (yet?)PublishReadyToRun
and determine whether to AOT-compile ASF binaries.Future (.NET Core 5.0?):
PublishReadyToRun
is now available for cross-platform scenarios.The text was updated successfully, but these errors were encountered: