@@ -47,7 +47,7 @@ internal class InstallHelper : PSCmdlet
4747 private bool _trustRepository ;
4848 private PSCredential _credential ;
4949 private bool _asNupkg ;
50- private bool _includeXML ;
50+ private bool _includeXml ;
5151 private bool _noClobber ;
5252 private bool _authenticodeCheck ;
5353 private bool _savePkg ;
@@ -78,14 +78,14 @@ public List<PSResourceInfo> InstallPackages(
7878 bool noClobber ,
7979 PSCredential credential ,
8080 bool asNupkg ,
81- bool includeXML ,
81+ bool includeXml ,
8282 bool skipDependencyCheck ,
8383 bool authenticodeCheck ,
8484 bool savePkg ,
8585 List < string > pathsToInstallPkg )
8686 {
8787 _cmdletPassedIn . WriteVerbose ( string . Format ( "Parameters passed in >>> Name: '{0}'; Version: '{1}'; Prerelease: '{2}'; Repository: '{3}'; " +
88- "AcceptLicense: '{4}'; Quiet: '{5}'; Reinstall: '{6}'; TrustRepository: '{7}'; NoClobber: '{8}'; AsNupkg: '{9}'; IncludeXML '{10}'; SavePackage '{11}'" ,
88+ "AcceptLicense: '{4}'; Quiet: '{5}'; Reinstall: '{6}'; TrustRepository: '{7}'; NoClobber: '{8}'; AsNupkg: '{9}'; IncludeXml '{10}'; SavePackage '{11}'" ,
8989 string . Join ( "," , names ) ,
9090 versionRange != null ? ( versionRange . OriginalString != null ? versionRange . OriginalString : string . Empty ) : string . Empty ,
9191 prerelease . ToString ( ) ,
@@ -96,7 +96,7 @@ public List<PSResourceInfo> InstallPackages(
9696 trustRepository . ToString ( ) ,
9797 noClobber . ToString ( ) ,
9898 asNupkg . ToString ( ) ,
99- includeXML . ToString ( ) ,
99+ includeXml . ToString ( ) ,
100100 savePkg . ToString ( ) ) ) ;
101101
102102 _versionRange = versionRange ;
@@ -110,7 +110,7 @@ public List<PSResourceInfo> InstallPackages(
110110 _noClobber = noClobber ;
111111 _credential = credential ;
112112 _asNupkg = asNupkg ;
113- _includeXML = includeXML ;
113+ _includeXml = includeXml ;
114114 _savePkg = savePkg ;
115115 _pathsToInstallPkg = pathsToInstallPkg ;
116116
@@ -557,7 +557,7 @@ private List<PSResourceInfo> InstallPackage(
557557 // Delete the extra nupkg related files that are not needed and not part of the module/script
558558 DeleteExtraneousFiles ( pkgIdentity , tempDirNameVersion ) ;
559559
560- if ( _includeXML )
560+ if ( _includeXml )
561561 {
562562 CreateMetadataXMLFile ( tempDirNameVersion , installPath , pkg , isModule ) ;
563563 }
0 commit comments