Skip to content

Instantly share code, notes, and snippets.

@BartDM
Created November 21, 2013 09:22
Show Gist options
  • Save BartDM/7578484 to your computer and use it in GitHub Desktop.
Save BartDM/7578484 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
xmlns:sql="http://schemas.microsoft.com/wix/SqlExtension">
<Fragment>
<Binary Id="CreateTablesBin" SourceFile="Database/CreateTables.sql"></Binary>
<Binary Id="FillTablesBin" SourceFile="Database/FillTables.sql"></Binary>
<util:User Id="SQLUserSA" Name="[DB_USER]" Password="[DB_PASSWORD]"></util:User>
</Fragment>
</Wix>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment