Replies: 1 comment
-
Thanks for the kind words!
Yea this is very much an oversight, be happy to take a PR for this!
Happy to take a PR updating these. The sourcelink seems to be unmaintained and needs to go. (Discussed here)
Yeah fantomas changes it's formatting rules constantly so not sure what can be done here. This problem should come through in the integration tests if it wasn't formatted properly with the version that miniscaffold ships with.
The TFM could be updated, but updating it's dependencies will probably be difficult. I have a plan to replace the docsTool eventually and just use
Yeah, docsTool shouldn't be packaged and it's marked as such. The warning be triggered by the fact that we do a pack on the solution level. Not sure what can be done here though. |
Beta Was this translation helpful? Give feedback.
-
Hello @TheAngryByrd!
Thank you for your hard and thorough work on this template!
I found it extremely useful and helpful to start my professional F# dev path.
I encountered a few issues though during my first try.
I do not know which of it you may find noteworthy, so I decided to incorporate it all in one as some kind of feedback:
The very first build did not successed due to test failure:
The problem is that I have another
CultureInfo
set by default on my system. As a proposed solution I would suggest to call addCultureInfo.InvariantCulture
as a second param inperson.DateOfBirth.ToString("yyyy/MM/dd", CultureInfo.InvariantCulture)
to make the test fully cross-platform.Tools specified in
dotnet-tools.json
are pretty outdated, there are a few new major versions, maybe its versions can be updated in the template?A few files are not formatted according to fantomas spec initially, i.e. right after the template is instantiated I can run
dotnet fantomas -r .
and a few files will be changed. Though maybe it is like this due to I updated fantomas to the most recent5.2.2
...I have many warnings during build about
net5.0 is out of support
fordocsTool
project. Maybe it can be updated to.net6
as well?According to another warning it looks like something try to pack
docsTool
, which as I understand should not be packable due to explicit<IsPackable>false</IsPackable>
in its fsproj?Maybe if you find anything of this worthing attention I could contribute.
Best wishes
Beta Was this translation helpful? Give feedback.
All reactions