Skip to content

Commit

Permalink
Fixing installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbandi committed Jun 29, 2010
1 parent ecfc861 commit ba58a64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions Installer/SpecFlowInstaller/CoreFiles.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
<?include Common.wxi?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<Fragment>
<ComponentGroup Id="CompGroup_CoreFiles">
<ComponentRef Id="Comp_CoreFiles" />
<ComponentRef Id="Comp_AssociateGherkinFiles" />
</ComponentGroup>

<DirectoryRef Id="INSTALLLOCATION">
Expand All @@ -21,16 +20,13 @@
<File Name="IKVM.OpenJDK.Core.dll" Source="$(var.SolutionDir)\lib\gherkin\IKVM.OpenJDK.Core.dll" />
<File Name="IKVM.OpenJDK.Text.dll" Source="$(var.SolutionDir)\lib\gherkin\IKVM.OpenJDK.Text.dll" />
<File Name="gherkin.ico" Source="$(var.SetupResourcesDir)\gherkin.ico" />
</Component>

<!-- Gherkin file associations -->
<Component Id="Comp_AssociateGherkinFiles" Guid="2AE052A2-F932-4282-BF38-021CC54FC441">
<ProgId Id="GherkinFile" Description="Gherkin Specification File" Icon="[INSTALLLOCATION]gherkin.ico">
<!-- Gherkin file associations -->
<ProgId Id="GherkinFile" Description="Gherkin Specification File" Icon="gherkin.ico">
<Extension Id="feature" ContentType='application/text'>
<!--<Verb Id="open" TargetProperty="VS90DEVENV" Command="Open" Argument='/edit "%1"' />-->
</Extension>
</ProgId>
</Component>
</DirectoryRef>
</Fragment>
</Fragment>
</Wix>
2 changes: 1 addition & 1 deletion Installer/SpecFlowInstaller/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<!-- Launch conditions -->
<Condition Message="An administrator must approve or install [ProductName]."> Privileged </Condition>
<Condition Message="A later version of [ProductName] is already installed."> NOT NEWERVERSIONDETECTED </Condition>
<Condition Message="The same or a later version of [ProductName] is already installed."> NOT NEWERVERSIONDETECTED </Condition>

<!-- Root directories -->
<Directory Id="TARGETDIR" Name="SourceDir">
Expand Down

0 comments on commit ba58a64

Please sign in to comment.