You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FeedBuilder generates version"0.0.0.0" for text files (such as .config files).
If we generates with CompareVersion=True, it includes for that files the following condition:
While checking for update it checks this version with the version of text file, and version becomes null:
(FileVersionCondition.cs: 37)
var versionInfo = FileVersionInfo.GetVersionInfo(localPath);
if (versionInfo.FileVersion == null) return true; // perform the update if no version info is found
And in this case NAppUpdate thies to update these files every time, even they are binary equal to each other.
The text was updated successfully, but these errors were encountered:
Either FeedBuiler should check if FileVersion is null, and do not generate FileVersionCondition for such files; or you should change FileVersionCondition behavior in such situations; or FeedBuilder should have smarter settings capabilities, for example, possibility to set different conditions for each files
FeedBuilder generates version"0.0.0.0" for text files (such as .config files).
If we generates with CompareVersion=True, it includes for that files the following condition:
While checking for update it checks this version with the version of text file, and version becomes null:
(FileVersionCondition.cs: 37)
var versionInfo = FileVersionInfo.GetVersionInfo(localPath);
if (versionInfo.FileVersion == null) return true; // perform the update if no version info is found
And in this case NAppUpdate thies to update these files every time, even they are binary equal to each other.
The text was updated successfully, but these errors were encountered: