Skip to content

Commit a59af02

Browse files
committed
Update the InnoSetup dependency to v6.3.1
There is actually v6.3.3 already, but it does not seem to have propagated to nuget.org yet. While at it, use a centrally-defined property instead of repeating the version number several times. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4a460b4 commit a59af02

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/windows/Installer.Windows/Installer.Windows.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
88
<EnableDefaultItems>false</EnableDefaultItems>
99
<PayloadPath>$(PlatformOutPath)Installer.Windows\bin\$(Configuration)\net472\win-x86</PayloadPath>
10+
<InnoSetupVersion>6.3.1</InnoSetupVersion>
1011
</PropertyGroup>
1112

1213
<ItemGroup>
@@ -18,16 +19,16 @@
1819
</ItemGroup>
1920

2021
<ItemGroup>
21-
<PackageReference Include="Tools.InnoSetup" Version="6.0.5" />
22+
<PackageReference Include="Tools.InnoSetup" Version="$(InnoSetupVersion)" />
2223
</ItemGroup>
2324

2425
<!-- Implicit SDK targets import (so we can override the default targets below) -->
2526
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
2627

2728
<Target Name="CoreCompile" Condition="'$(OSPlatform)'=='windows'">
2829
<PropertyGroup>
29-
<InnoSetupCommandSystem>"$(NuGetPackageRoot)Tools.InnoSetup\6.0.5\tools\ISCC.exe" /DPayloadDir="$(PayloadPath)" /DInstallTarget=system "$(RepoSrcPath)\windows\Installer.Windows\Setup.iss" /O"$(OutputPath)"</InnoSetupCommandSystem>
30-
<InnoSetupCommandUser>"$(NuGetPackageRoot)Tools.InnoSetup\6.0.5\tools\ISCC.exe" /DPayloadDir="$(PayloadPath)" /DInstallTarget=user "$(RepoSrcPath)\windows\Installer.Windows\Setup.iss" /O"$(OutputPath)"</InnoSetupCommandUser>
30+
<InnoSetupCommandSystem>"$(NuGetPackageRoot)Tools.InnoSetup\$(InnoSetupVersion)\tools\ISCC.exe" /DPayloadDir="$(PayloadPath)" /DInstallTarget=system "$(RepoSrcPath)\windows\Installer.Windows\Setup.iss" /O"$(OutputPath)"</InnoSetupCommandSystem>
31+
<InnoSetupCommandUser>"$(NuGetPackageRoot)Tools.InnoSetup\$(InnoSetupVersion)\tools\ISCC.exe" /DPayloadDir="$(PayloadPath)" /DInstallTarget=user "$(RepoSrcPath)\windows\Installer.Windows\Setup.iss" /O"$(OutputPath)"</InnoSetupCommandUser>
3132
</PropertyGroup>
3233

3334
<Message Text="Lay Out" Importance="High" />

0 commit comments

Comments
 (0)