-
Hello, I would like to know what code is present in the When something is merged to main, I always very much struggle to know when this will finally be available in an SDK. I downloaded the Anyway, I think others might have this problem as well. I know @edgarfgp got excited when the Lastly, I would very much like to have an SDK with the code from Besides regressions, I would like to set something up something that tests out the results of certain flags like #14494. Having an SDK with the latest main could make that a lot easier. The thing I have in mind is a GitHub Action, that downloads the latest nightly, clones a couple of repositories and builds them. Running that on a weekly basis would boost confidence in new features and the overall next iteration of the compiler. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 18 replies
-
That gets you the last F# commit included in the .NET 8 dailies. You can see that it's ~2 weeks behind the HEAD in main, since changes take some time to bubble up through multiple repos.
I reckon that unless a bug fix is manually cherry picked and merged into a release branch, commits go towards the next major version only. As for VS tooling, changes tend to land in a preview around 1 or 2 months after having been merged. |
Beta Was this translation helpful? Give feedback.
-
@baronfel may have more info about how .NET 8 insertions work |
Beta Was this translation helpful? Give feedback.
-
Thanks @kerams! Does this mean something needs to go to |
Beta Was this translation helpful? Give feedback.
-
From contributor point of view. Having to wait for several months (in some cases) is a little discorauging and also the way to setup the nightly net8 builds is long tedious and confusing. I appreciate all of this has a lot of complexity so I not compalining just giving my observations :) |
Beta Was this translation helpful? Give feedback.
-
Hi @vzarytovskii, the latest commit to the nightlies it e391694 for some time now. |
Beta Was this translation helpful? Give feedback.
-
What's coming in .net 8 |
Beta Was this translation helpful? Give feedback.
sdk_commit
https://github.com/dotnet/sdk/blob/{SDK_COMMIT_FROM_ABOVE}/eng/Version.Details.xml
<Dependency Name="Microsoft.FSharp.Compiler"
https://github.com/dotnet/fsharp/commit/{FSHARP_COMMIT_FROM_ABOVE}
That gets you the last F# commit included in the .NET 8 dailies. You can see that it's ~2 weeks behind the HEAD in main, since changes take some time to bubble up through multiple repos.
I re…