Connexion displaying wrong date for custom plugin
Please try adding: <Deterministic>False</Deterministic> to the first PropertyGroup section of your .csproj file and rebuilding the solution. This reference that states as of Visual Studio v15.4, that without this set, VS will put gibberish in those fields.
https://intellitect.com/displaying-deploymentbuild-date-web-pages/
Update for Visual Studio 15.4.
Builds in VS now contain information that makes the values in these fields gibberish. Fortunately, this can be easily fixed with a change to your .csproj file. in the first <PropertyGroup> section add the following element:
<Deterministic>False</Deterministic> |