Skip to content

Commit

Permalink
chore(deps): Bump WixToolset.Dtf.WindowsInstaller from 5.0.1 to 5.0.2…
Browse files Browse the repository at this point in the history
… in /src (#1866)

Bumps
[WixToolset.Dtf.WindowsInstaller](https://github.com/wixtoolset/wix)
from 5.0.1 to 5.0.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/wixtoolset/wix/releases">WixToolset.Dtf.WindowsInstaller's
releases</a>.</em></p>
<blockquote>
<h2>WiX Toolset v5.0.2</h2>
<p><a
href="https://www.firegiant.com/blog/2024/10/4/wix-v4.0.6-and-v5.0.2-have-been-released/">Blog
announcement</a></p>
<p><a href="https://wixtoolset.org/docs/releasenotes/#v5">Release
notes</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/wixtoolset/wix/commit/aa65968c419420d32e3e1b647aea0082f5ca5b78"><code>aa65968</code></a>
WiX Toolset v5.0.2</li>
<li><a
href="https://github.com/wixtoolset/wix/commit/f0f6aba258c2dab72808d4eaf7525d940e1efae3"><code>f0f6aba</code></a>
Add overloads to support create-only Wixouts.</li>
<li><a
href="https://github.com/wixtoolset/wix/commit/467367e3018767ca5bcbd7e49c349b4c176fd0b8"><code>467367e</code></a>
Fix crash when adding file in patch when filtering</li>
<li><a
href="https://github.com/wixtoolset/wix/commit/1f46b690775e7c1aec323dbda4585f03126d3c18"><code>1f46b69</code></a>
Fix crash with use of File/<a
href="https://github.com/PatchGroup"><code>@​PatchGroup</code></a>.</li>
<li><a
href="https://github.com/wixtoolset/wix/commit/3fd3204a4861f3f2ab0e289ecafa419232d68963"><code>3fd3204</code></a>
Re-enable insignificant zeros in PackageVersion</li>
<li><a
href="https://github.com/wixtoolset/wix/commit/61d21b6075f4af8c1d561c1823490d49a012fd2c"><code>61d21b6</code></a>
Start WiX Toolset v5.0.2</li>
<li>See full diff in <a
href="https://github.com/wixtoolset/wix/compare/v5.0.1...v5.0.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=WixToolset.Dtf.WindowsInstaller&package-manager=nuget&previous-version=5.0.1&new-version=5.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 5, 2024
1 parent 9697743 commit 20ae00a
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 84 deletions.
38 changes: 19 additions & 19 deletions src/AccessibilityInsights.CustomActions/CustomActions.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.CustomActions</AssemblyName>
<RootNamespace>AccessibilityInsights.CustomActions</RootNamespace>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.SetupLibrary\SetupLibrary.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.CustomActions</AssemblyName>
<RootNamespace>AccessibilityInsights.CustomActions</RootNamespace>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.SetupLibrary\SetupLibrary.csproj" />
</ItemGroup>

</Project>
42 changes: 21 additions & 21 deletions src/AccessibilityInsights.SetupLibrary/SetupLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.SetupLibrary</AssemblyName>
<RootNamespace>AccessibilityInsights.SetupLibrary</RootNamespace>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="7.0.0" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.Win32\Win32.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.SetupLibrary</AssemblyName>
<RootNamespace>AccessibilityInsights.SetupLibrary</RootNamespace>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="7.0.0" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.Win32\Win32.csproj" />
</ItemGroup>

</Project>
88 changes: 44 additions & 44 deletions src/AccessibilityInsights.VersionSwitcher/VersionSwitcher.csproj
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.VersionSwitcher</AssemblyName>
<RootNamespace>AccessibilityInsights.VersionSwitcher</RootNamespace>
<ApplicationManifest>AppManifests\app.manifest</ApplicationManifest>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.SetupLibrary\SetupLibrary.csproj" />
<ProjectReference Include="..\AccessibilityInsights.Win32\Win32.csproj" />
</ItemGroup>

<ItemGroup>
<Resource Include="Resources\DialogBackground.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<AssemblyName>AccessibilityInsights.VersionSwitcher</AssemblyName>
<RootNamespace>AccessibilityInsights.VersionSwitcher</RootNamespace>
<ApplicationManifest>AppManifests\app.manifest</ApplicationManifest>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
</PropertyGroup>

<Import Project="..\..\build\NetFrameworkRelease.targets" />

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AccessibilityInsights.SetupLibrary\SetupLibrary.csproj" />
<ProjectReference Include="..\AccessibilityInsights.Win32\Win32.csproj" />
</ItemGroup>

<ItemGroup>
<Resource Include="Resources\DialogBackground.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

</Project>

0 comments on commit 20ae00a

Please sign in to comment.