File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
src/wix/test/WixToolsetTest.CoreIntegration Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,13 @@ public void PopulatesAppSearchTablesFromDirectorySearch()
7070
7171 Assert . True ( File . Exists ( msiPath ) ) ;
7272 var results = Query . QueryDatabase ( msiPath , new [ ] { "AppSearch" , "DrLocator" } ) ;
73- WixAssert . CompareLineByLine ( new [ ]
74- {
73+ WixAssert . CompareLineByLine (
74+ [
75+ "AppSearch:EXAMPLEDIRFOUND\t dircdo7ICRtQ3CvoztHSvflmt6yVh4" ,
7576 "AppSearch:SAMPLEDIRFOUND\t SampleDirSearch" ,
77+ "DrLocator:dircdo7ICRtQ3CvoztHSvflmt6yVh4\t \t C:\\ ExampleDir\t " ,
7678 "DrLocator:SampleDirSearch\t \t C:\\ SampleDir\t " ,
77- } , results ) ;
79+ ] , results ) ;
7880 }
7981 }
8082
Original file line number Diff line number Diff line change 22<Wix xmlns =" http://wixtoolset.org/schemas/v4/wxs" >
33 <Fragment >
44 <ComponentGroup Id =" ProductComponents" >
5- <ComponentGroupRef Id =" MinimalComponentGroup" ></ ComponentGroupRef >
5+ <ComponentGroupRef Id =" MinimalComponentGroup" / >
66 </ComponentGroup >
77
88 <Property Id =" SAMPLEDIRFOUND" >
9- <DirectorySearch Id =" SampleDirSearch" AssignToProperty =" yes" Path =" C:\SampleDir" ></DirectorySearch >
9+ <DirectorySearch Id =" SampleDirSearch" AssignToProperty =" yes" Path =" C:\SampleDir" />
10+ </Property >
11+
12+ <Property Id =" EXAMPLEDIRFOUND" >
13+ <DirectorySearch AssignToProperty =" yes" Path =" C:\ExampleDir" />
1014 </Property >
1115 </Fragment >
1216</Wix >
You can’t perform that action at this time.
0 commit comments