Setup project updated to InstallShield 2016

This commit is contained in:
s_falahati 2017-08-10 18:46:01 +04:30
parent f3e50b5491
commit a7bfa03ee5
11 changed files with 1437 additions and 1380 deletions

4
.gitignore vendored
View File

@ -242,4 +242,6 @@ ModelManifest.xml
.paket/paket.exe
# FAKE - F# Make
.fake/
.fake/
HeliosDisplayManagement.Setup/HeliosDisplayManagement.Setup Data/*
HeliosDisplayManagement.Setup/HeliosDisplayManagement.Setup/*

View File

@ -2,14 +2,14 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Select a Product Configuration -->
<InstallShieldProductConfiguration>Express</InstallShieldProductConfiguration>
<InstallShieldProductConfiguration>x64 Configuration</InstallShieldProductConfiguration>
<!-- Select a Visual Studio Configuration / InstallShield Release -->
<Configuration>Debug</Configuration>
<InstallShieldRelease>$(Configuration)</InstallShieldRelease>
</PropertyGroup>
<ItemGroup>
<!-- The InstallShieldProject item selects the project to build -->
<InstallShieldProject Include="$(MSBuildProjectDirectory)\$(MSBuildProjectName).isl"/>
<InstallShieldProject Include="$(MSBuildProjectDirectory)\$(MSBuildProjectName).ism"/>
<!-- The InstallShieldReleaseFlags sets Release Flags -->
<!--<InstallShieldReleaseFlags Include=""/>-->
<!-- The InstallShieldMergeModulePath specifies what directories are
@ -27,12 +27,16 @@
<TargetPath>My Test Exe.exe</TargetPath>
</TaggedOutputs> -->
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\InstallShield\2015Limited\InstallShield.targets"/>
<Import Project="$(MSBuildExtensionsPath32)\InstallShield\2016\InstallShield.targets"/>
<ItemGroup>
<ProjectReference Include="..\HeliosDisplayManagement\HeliosDisplayManagement.csproj">
<Name>HeliosDisplayManagement</Name>
<Project>{608D941A-B431-400C-A91D-C6F971C29577}</Project>
</ProjectReference>
<ProjectReference Include="..\HeliosDisplayManagement.Shared\HeliosDisplayManagement.Shared.csproj">
<Name>HeliosDisplayManagement.Shared</Name>
<Project>{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}</Project>
</ProjectReference>
<ProjectReference Include="..\HeliosDisplayManagement.ShellExtension\HeliosDisplayManagement.ShellExtension.csproj">
<Name>HeliosDisplayManagement.ShellExtension</Name>
<Project>{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}</Project>

View File

@ -17,7 +17,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>..\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -26,7 +26,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>

View File

@ -35,5 +35,5 @@ using System.Runtime.InteropServices;
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyFileVersion("0.9.0.0")]

View File

@ -9,14 +9,15 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HeliosDisplayManagement.ShellExtension</RootNamespace>
<AssemblyName>HeliosDisplayManagement.ShellExtension</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>..\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -24,7 +25,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -76,10 +77,6 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\packages\SharpShellTools.2.2.0.0\lib\srm.exe">
<Link>srm.exe</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="Resources\Run_x16.png" />
<None Include="Resources\Shortcut_x16.png" />
<None Include="Resources\Edit_x16.png" />

View File

@ -35,5 +35,5 @@ using System.Runtime.InteropServices;
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyFileVersion("0.9.0.0")]

View File

@ -1,4 +1,3 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
@ -9,33 +8,34 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeliosDisplayManagement.She
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeliosDisplayManagement.Shared", "HeliosDisplayManagement.Shared\HeliosDisplayManagement.Shared.csproj", "{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}"
EndProject
Project("{6141683F-8A12-4E36-9623-2EB02B2C2303}") = "HeliosDisplayManagement.Setup", "HeliosDisplayManagement.Setup\HeliosDisplayManagement.Setup.isproj", "{864BBBD9-FF3E-43F4-AEAD-06A9CF84A9BA}"
Project("{E729F059-12D4-455F-A2A4-FDA8DD25E08A}") = "HeliosDisplayManagement.Setup", "HeliosDisplayManagement.Setup\HeliosDisplayManagement.Setup.isproj", "{8B2508A9-8167-46D0-83C7-D24BE7407910}"
ProjectSection(ProjectDependencies) = postProject
{608D941A-B431-400C-A91D-C6F971C29577} = {608D941A-B431-400C-A91D-C6F971C29577}
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC} = {1CACDA43-01C7-4CD4-BF6E-9421A29510FC}
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68} = {55D4FF65-EDC7-48EF-933E-B6E7F3809B68}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Debug|AnyCPU = Debug|AnyCPU
Release|AnyCPU = Release|AnyCPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{608D941A-B431-400C-A91D-C6F971C29577}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Debug|Any CPU.Build.0 = Debug|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Release|Any CPU.ActiveCfg = Release|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Release|Any CPU.Build.0 = Release|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Release|Any CPU.Build.0 = Release|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Release|Any CPU.Build.0 = Release|Any CPU
{864BBBD9-FF3E-43F4-AEAD-06A9CF84A9BA}.Debug|Any CPU.ActiveCfg = SingleImage
{864BBBD9-FF3E-43F4-AEAD-06A9CF84A9BA}.Release|Any CPU.ActiveCfg = SingleImage
{864BBBD9-FF3E-43F4-AEAD-06A9CF84A9BA}.Release|Any CPU.Build.0 = SingleImage
{608D941A-B431-400C-A91D-C6F971C29577}.Debug|AnyCPU.ActiveCfg = Debug|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Debug|AnyCPU.Build.0 = Debug|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Release|AnyCPU.ActiveCfg = Release|Any CPU
{608D941A-B431-400C-A91D-C6F971C29577}.Release|AnyCPU.Build.0 = Release|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Debug|AnyCPU.ActiveCfg = Debug|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Debug|AnyCPU.Build.0 = Debug|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Release|AnyCPU.ActiveCfg = Release|Any CPU
{55D4FF65-EDC7-48EF-933E-B6E7F3809B68}.Release|AnyCPU.Build.0 = Release|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Debug|AnyCPU.ActiveCfg = Debug|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Debug|AnyCPU.Build.0 = Debug|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Release|AnyCPU.ActiveCfg = Release|Any CPU
{1CACDA43-01C7-4CD4-BF6E-9421A29510FC}.Release|AnyCPU.Build.0 = Release|Any CPU
{8B2508A9-8167-46D0-83C7-D24BE7407910}.Debug|AnyCPU.ActiveCfg = x64 Release
{8B2508A9-8167-46D0-83C7-D24BE7407910}.Release|AnyCPU.ActiveCfg = x64 Release
{8B2508A9-8167-46D0-83C7-D24BE7407910}.Release|AnyCPU.Build.0 = x64 Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
</configuration>
</configuration>

View File

@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HeliosDisplayManagement</RootNamespace>
<AssemblyName>HeliosDisplayManagement</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<PublishUrl>publish\</PublishUrl>
@ -27,13 +27,14 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>..\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -43,7 +44,7 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyFileVersion("0.9.1.0")]