Skip to content

Commit

Permalink
Added WiX installer project
Browse files Browse the repository at this point in the history
  • Loading branch information
donker committed Nov 30, 2015
1 parent bc594fe commit 01576a4
Show file tree
Hide file tree
Showing 9 changed files with 1,608 additions and 1,222 deletions.
16 changes: 8 additions & 8 deletions My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Imports System.Windows

' Review the values of the assembly attributes

<Assembly: AssemblyTitle("DotNetNuke Translator")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("Translator")>
<Assembly: AssemblyCopyright("Copyright DotNetNuke Corp 2014")>
<Assembly: AssemblyTitle("DNN Translator")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("DNN Connect Association")>
<Assembly: AssemblyProduct("Translator")>
<Assembly: AssemblyCopyright("")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(false)>

Expand All @@ -42,7 +42,7 @@ Imports System.Windows


'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("b76b5e8a-fbb0-44b1-8fb6-7bb6e6c8fc04")>
<Assembly: Guid("b76b5e8a-fbb0-44b1-8fb6-7bb6e6c8fc04")>

' Version information for an assembly consists of the following four values:
'
Expand All @@ -55,5 +55,5 @@ Imports System.Windows
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.11.0")>
<Assembly: AssemblyFileVersion("1.0.11.0")>
<Assembly: AssemblyVersion("1.1.0.0")>
<Assembly: AssemblyFileVersion("1.1.0.0")>
76 changes: 76 additions & 0 deletions My Project/app.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>

<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->

<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->

<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->

<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->

<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->

<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->

</application>
</compatibility>

<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->
<!--
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
</windowsSettings>
</application>
-->

<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!--
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
-->

</assembly>
2 changes: 2 additions & 0 deletions SmithHtmlEditor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: Guid("bdda7e4e-9659-4682-8e4f-deebf1fa4a1b")]

16 changes: 14 additions & 2 deletions Translator.sln
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Translator", "Translator.vbproj", "{DC7B7B19-07A7-44C9-A624-67895E092C52}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmithHtmlEditor", "SmithHtmlEditor\SmithHtmlEditor.csproj", "{84BADDA1-AB3A-4064-B87E-178D7446901D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TranslatorLibrary", "TranslatorLibrary\TranslatorLibrary.csproj", "{343ABC8A-D4D0-44A3-A767-A5450488FD57}"
EndProject
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "DNNTranslatorSetup", "_Setup\DNNTranslatorSetup\DNNTranslatorSetup.wixproj", "{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -49,6 +51,16 @@ Global
{343ABC8A-D4D0-44A3-A767-A5450488FD57}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{343ABC8A-D4D0-44A3-A767-A5450488FD57}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{343ABC8A-D4D0-44A3-A767-A5450488FD57}.Release|x86.ActiveCfg = Release|Any CPU
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Debug|Any CPU.ActiveCfg = Debug|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Debug|Mixed Platforms.Build.0 = Debug|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Debug|x86.ActiveCfg = Debug|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Debug|x86.Build.0 = Debug|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Release|Any CPU.ActiveCfg = Release|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Release|Mixed Platforms.ActiveCfg = Release|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Release|Mixed Platforms.Build.0 = Release|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Release|x86.ActiveCfg = Release|x86
{6BDDAEE9-751B-45DB-A8A7-62C2BE1D8734}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 4 additions & 0 deletions Translator.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
<PropertyGroup>
<ApplicationIcon>applications-internet-3.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down Expand Up @@ -328,6 +331,7 @@
<None Include="Common\TranslatorData.xss">
<DependentUpon>TranslatorData.xsd</DependentUpon>
</None>
<None Include="My Project\app.manifest" />
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
Expand Down
Loading

0 comments on commit 01576a4

Please sign in to comment.