In C# WinForms desktop application, according The specified version string contains wildcards, which are not compatible with determinism I've to change <Deterministic>True</Deterministic>
to false
in myproj.csproj
to increment version with asterisk:
[assembly: AssemblyVersionAttribute("1.0.*")]
and avoid:
Error CS8357 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
but I can't find xml
document with <Deterministic>True</Deterministic>
in the project, as it is shown in here The specified version string contains wildcards, which are not compatible with determinism