-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit of packaging that was omitted from the main disto
- Loading branch information
1 parent
3a8efd6
commit 994a8c5
Showing
1,034 changed files
with
32,477 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||
<ProductVersion>3.10</ProductVersion> | ||
<ProjectGuid>af1a5c5e-4fd1-4bcc-9c96-7d145e5a4eb3</ProjectGuid> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<OutputName>Installer</OutputName> | ||
<OutputType>Package</OutputType> | ||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> | ||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | ||
<OutputPath>bin\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||
<DefineConstants>Debug</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | ||
<OutputPath>bin\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Product.wxs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Product_en_us.wxl" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="App.ico" /> | ||
<Content Include="Background.bmp" /> | ||
<Content Include="BannerTop.bmp" /> | ||
<Content Include="Notes.txt" /> | ||
<Content Include="PHBLogo256.ico" /> | ||
<Content Include="Product.build" /> | ||
<Content Include="Strings.html" /> | ||
</ItemGroup> | ||
<Import Project="$(WixTargetsPath)" /> | ||
<PropertyGroup> | ||
<PostBuildEvent>copy !(TargetPath) $(ProjectDir)..\Distribution\</PostBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Publish|x86' "> | ||
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Publish|AnyCPU' "> | ||
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Publish|Any CPU' "> | ||
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<!-- | ||
To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Wix.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
<Fragment> | ||
<UI> | ||
<Dialog Id="LicenseAgreementDlg" Width="370" Height="270" Title="!(loc.LicenseAgreementDlg_Title)"> | ||
<Control Id="LicenseAcceptedCheckBox" Type="CheckBox" X="20" Y="207" Width="330" Height="18" CheckBoxValue="1" Property="LicenseAccepted" Text="!(loc.LicenseAgreementDlgLicenseAcceptedCheckBox)" /> | ||
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" /> | ||
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)"> | ||
<Condition Action="disable"><![CDATA[LicenseAccepted <> "1"]]></Condition> | ||
<Condition Action="enable">LicenseAccepted = "1"</Condition> | ||
</Control> | ||
|
||
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" /> | ||
<Control Id="LicenseText" Type="ScrollableText" X="20" Y="60" Width="330" Height="140" Sunken="yes" TabSkip="no"> | ||
<!-- This is the original line --> | ||
<!--<Text SourceFile="!(wix.WixUILicenseRtf=$(var.LicenseRtf))" />--> | ||
<!-- To enable EULA localization we change it to this: --> | ||
<Text SourceFile="$(var.ProjectDir)\!(loc.LicenseRtf)" /> | ||
<!-- In each of the localization files (wxl) put a line like this: | ||
<String Id="LicenseRtf" Overridable="yes">EULA_en-us.rtf</String>--> | ||
</Control> | ||
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | ||
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | ||
<Control Id="Description" Type="Text" X="25" Y="23" Width="340" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgDescription)" /> | ||
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgTitle)" /> | ||
</Dialog> | ||
</UI> | ||
</Fragment> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Package ID is E0EE8E7D-F498-459E-9E90-2B3D73124AD5 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Build | ||
Package PHBBuildTools "92C31DDB-1D8F-428B-9A40-7882C261D3A7" | ||
Company "DefaultDeny" "Default Deny Security Inc." | ||
|
||
NetFramework "4.6" | ||
VSIX "PHBBuildTools.vsix" | ||
|
||
Icon "PHBLogo256.ico" | ||
|
||
Directory "Mesh Tools" | ||
CommandLine "ASN2Shell.exe" | ||
CommandLine "Exceptional.exe" | ||
CommandLine "FSRGen.exe" | ||
CommandLine "goedel3.exe" | ||
CommandLine "gscript.exe" | ||
CommandLine "Protogen.exe" | ||
CommandLine "RegistryConfig.exe" | ||
CommandLine "rfctool.exe" | ||
CommandLine "Trojan.exe" | ||
|
||
Directory "Documentation" | ||
Feature Documentation | ||
Documentation hallambaker-rfctools | ||
Documentation hallambaker-protogen | ||
Documentation hallambaker-goedel | ||
Documentation hallambaker-misc | ||
|
||
Localization English_US "en-us" 1252 1033 | ||
License "Eula-en.rtf" | ||
OSVersionOld "This product requires at least Windows Vista / Server 2008." | ||
NewerInstalled "The same or a newer version of this product is already installed." | ||
Requirex64 "You need to install the 64-bit version of this product on 64-bit Windows." | ||
Requirex32 "You need to install the 32-bit version of this product on 32-bit Windows." | ||
FeatureComplete "The complete package." | ||
FeatureMain "The main version including all dependencies." | ||
|
||
|
||
|
||
|
Oops, something went wrong.