-
Notifications
You must be signed in to change notification settings - Fork 158
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
Consider targetting .NET 6 as well #799
Comments
Hello, Thank you for bringing this up. This may not be possible because we depend on MSBuild bits for project cracking. @baronfel any thoughts? |
I think it's possible but we need to set the
|
We would first need to have #796 right? |
I don't think we need it for just this. The dependencies for Ionide.ProjInfo.FCS are |
Yeah, until you actually install it.
Lock file says:
I do think we need the latest FCS to get around that problem. When I add:
I don't get those MSBuild dlls. |
Oh because this project is on |
And looks like this project doesn't need |
Available in https://www.nuget.org/packages/fsdocs-tool/18.0.0 |
since v17,
fsdocs-tool
only supports .NET 7. This can cause problems especially in projects where FAKE is being used, as FAKE targets .NET6 and will not work due to incompatible msbuild log formats when running with the .NET 7 sdk. Should there be no .NET 7 exclusive code i'd suggest multi-targetting frameworks here:FSharp.Formatting/src/fsdocs-tool/fsdocs-tool.fsproj
Line 6 in e665aa9
to
or even only targetting .net 6, as that is the LTS release anyways
The text was updated successfully, but these errors were encountered: