-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Settings rearrangement - Context menu for account file
- Loading branch information
Showing
5 changed files
with
242 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Setup] | ||
AppName=Inno_Setup_Project | ||
AppVersion=1.0 | ||
DefaultDirName={pf}\Inno_Setup_Project | ||
DefaultGroupName=Inno_Setup_Project | ||
UninstallDisplayIcon={app}\Inno_Setup_Project.exe | ||
Compression=lzma2 | ||
SolidCompression=yes | ||
OutputDir=Output | ||
|
||
[Files] | ||
Source: "InstallScript.iss"; DestDir: "{app}" | ||
|
||
[Icons] | ||
Name: "{group}\Inno_Setup_Project"; Filename: "{app}\Inno_Setup_Project.exe" |
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,25 @@ | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>1.0</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>b57d6b18-a896-4a44-8e87-9af3da8986a6</ProjectGuid> | ||
<AssemblyName>LPM Installer</AssemblyName> | ||
<Name>LPM Installer</Name> | ||
<RootNamespace>LPM Installer</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<OutputPath> | ||
</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<OutputPath> | ||
</OutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="InstallScript.iss"> | ||
</Compile> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\InnoSetupTools\InnoSetupProject.targets" /> | ||
</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
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
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