Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
jobs:
build:
name: Build
runs-on: windows-2022
runs-on: windows-2025
env:
RepoOrg: ${{ github.repository_owner }}
SignBuild: ${{ github.repository_owner == 'wixtoolset' && startsWith(github.ref, 'refs/tags/v') }}
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixto

### Prerequisites

Before building the WiX Toolset, ensure you have Visual Studio 2022 (17.8.2 or higher) with the following installed:
Before building the WiX Toolset, ensure you have Visual Studio 2026 (17.8.2 or higher) with the following installed:

| Workloads |
| :-------- |
Expand All @@ -36,13 +36,13 @@ Before building the WiX Toolset, ensure you have Visual Studio 2022 (17.8.2 or h

| Individual components |
| :-------------------- |
| .NET 8.0 Runtime (Long Term Support) |
| .NET 10.0 Runtime (Long Term Support) |
| .NET Framework 4.7.2 SDK |
| .NET Framework 4.7.2 targeting pack |
| .NET Framework 4.6.2 targeting pack |
| ATL v143 - VS 2022 C++ x64/x86 build tools (Latest) |
| MSVC v143 - VS 2022 C++ ARM64/ARM64EC build tools (Latest) |
| MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest) |
| ATL v143 - VS 2026 C++ x64/x86 build tools (Latest) |
| MSVC v143 - VS 2026 C++ ARM64/ARM64EC build tools (Latest) |
| MSVC v143 - VS 2026 C++ x64/x86 build tools (Latest) |
| Git for Windows |

Also, download the latest [nuget.exe command-line tool](https://www.nuget.org/downloads) and place it in a directory on your path.
Expand All @@ -56,7 +56,7 @@ Also, download the latest [nuget.exe command-line tool](https://www.nuget.org/do

#### To build the WiX toolset:

* Start a VS2022 'Developer Command Prompt'
* Start a VS2026 'Developer Command Prompt'
* Change directory to the root of the cloned repository
* Issue the command `devbuild` (or `devbuild release` if you want to create a release version)

Expand Down
208 changes: 0 additions & 208 deletions src/api/api.sln

This file was deleted.

41 changes: 41 additions & 0 deletions src/api/api.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="ARM64" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/burn/">
<Project Path="burn/balutil/balutil.vcxproj" Id="edcb8095-0e6a-43e0-bc33-c4f762fc5cdb">
<Platform Solution="*|Any CPU" Project="Win32" />
<Build Solution="Release|Any CPU" Project="false" />
</Project>
<Project Path="burn/bextutil/bextutil.vcxproj" Id="06027492-1cb9-48bc-b31e-c1f9356ed07e">
<Platform Solution="*|Any CPU" Project="Win32" />
<Build Solution="Release|Any CPU" Project="false" />
</Project>
<Project Path="burn/mbanative/mbanative.vcxproj" Id="665e0441-17f9-4105-b202-edf274657f6e">
<Platform Solution="*|Any CPU" Project="Win32" />
<Build Solution="Release|Any CPU" Project="false" />
</Project>
<Project Path="burn/test/BalUtilUnitTest/BalUtilUnitTest.vcxproj" Id="9b507af9-035e-4db6-8c0c-5dcc3fef2631">
<Platform Project="Win32" />
<Build Solution="*|ARM64" Project="false" />
<Build Solution="*|x64" Project="false" />
<Build Solution="Release|Any CPU" Project="false" />
</Project>
<Project Path="burn/test/BextUtilUnitTest/BextUtilUnitTest.vcxproj" Id="b69e6422-49b0-4e28-92f9-b8a7410a6ed9">
<Platform Project="Win32" />
<Build Solution="*|ARM64" Project="false" />
<Build Solution="*|x64" Project="false" />
<Build Solution="Release|Any CPU" Project="false" />
</Project>
<Project Path="burn/test/WixToolsetTest.BootstrapperApplicationApi/WixToolsetTest.BootstrapperApplicationApi.csproj" />
<Project Path="burn/WixToolset.BootstrapperApplicationApi/WixToolset.BootstrapperApplicationApi.csproj" />
</Folder>
<Folder Name="/wix/">
<Project Path="wix/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj" />
<Project Path="wix/WixToolset.Data/WixToolset.Data.csproj" />
<Project Path="wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj" />
</Folder>
</Solution>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->

<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)native\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
Expand Down
Loading