AssemblyVersion using * fails with error "wildcards, which are not compatible with determinism?"
.net-core, c#, visual-studio
Solution
I guess you were able to use it earlier and can't anymore.
Reason - There have been some changes to Visual Studio as the new project files now default to 'True' for 'Deterministic' attribute.
Solution - as Hans Passant says, edit project file by hand. Cons to doing it, also as he says.
Specifically, edit `.csproj` to `<Deterministic>false</Deterministic>`.
Source - https://marinovdh.wordpress.com/2018/10/22/68/
Problem
I can't use `*` in assembly version; when I do I get the following compilation error: The specified version string contains wildcards, which are not compatible with determinism. Either remove wildcards from the version string, or disable determinism for this compilation