@@ -13,24 +13,24 @@ public class MockFileVersionInfo : FileVersionInfoBase
1313 /// <inheritdoc />
1414 public MockFileVersionInfo (
1515 string fileName ,
16- string fileVersion ,
17- string productVersion ,
18- string fileDescription ,
19- string productName ,
20- string companyName ,
21- string comments ,
22- string internalName ,
23- bool isDebug ,
24- bool isPatched ,
25- bool isPrivateBuild ,
26- bool isPreRelease ,
27- bool isSpecialBuild ,
28- string language ,
29- string legalCopyright ,
30- string legalTrademarks ,
31- string originalFilename ,
32- string privateBuild ,
33- string specialBuild )
16+ string fileVersion = null ,
17+ string productVersion = null ,
18+ string fileDescription = null ,
19+ string productName = null ,
20+ string companyName = null ,
21+ string comments = null ,
22+ string internalName = null ,
23+ bool isDebug = false ,
24+ bool isPatched = false ,
25+ bool isPrivateBuild = false ,
26+ bool isPreRelease = false ,
27+ bool isSpecialBuild = false ,
28+ string language = null ,
29+ string legalCopyright = null ,
30+ string legalTrademarks = null ,
31+ string originalFilename = null ,
32+ string privateBuild = null ,
33+ string specialBuild = null )
3434 {
3535 FileName = fileName ;
3636 FileVersion = fileVersion ;
@@ -73,18 +73,6 @@ public MockFileVersionInfo(
7373 ProductPrivatePart = productPrivate ;
7474 }
7575
76- /// <inheritdoc/>
77- public MockFileVersionInfo ( string fileName )
78- : this ( fileName , null , null , null , null , null , null , null , false , false , false , false , false , null , null , null , null , null , null ) { }
79-
80- /// <inheritdoc/>
81- public MockFileVersionInfo ( string fileName , string fileVersion , string productVersion )
82- : this ( fileName , fileVersion , productVersion , null , null , null , null , null , false , false , false , false , false , null , null , null , null , null , null ) { }
83-
84- /// <inheritdoc/>
85- public MockFileVersionInfo ( )
86- : this ( null , null , null , null , null , null , null , null , false , false , false , false , false , null , null , null , null , null , null ) { }
87-
8876 /// <inheritdoc/>
8977 public override string FileName { get ; }
9078
0 commit comments