diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/api/wix/WixToolset.Data/WixToolset.Data.csproj | 6 | ||||
| -rw-r--r-- | src/build_all.cmd | 2 | ||||
| -rw-r--r-- | src/internal/SetBuildNumber/global.json.pp | 3 | ||||
| -rw-r--r-- | src/test/burn/WixTestTools/WixTestTools.csproj | 2 | ||||
| -rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj | 2 | ||||
| -rw-r--r-- | src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj | 3 |
6 files changed, 7 insertions, 11 deletions
diff --git a/src/api/wix/WixToolset.Data/WixToolset.Data.csproj b/src/api/wix/WixToolset.Data/WixToolset.Data.csproj index 257b9415..294127a0 100644 --- a/src/api/wix/WixToolset.Data/WixToolset.Data.csproj +++ b/src/api/wix/WixToolset.Data/WixToolset.Data.csproj | |||
| @@ -19,7 +19,9 @@ | |||
| 19 | <None Include="README.md" Pack="true" PackagePath="\" /> | 19 | <None Include="README.md" Pack="true" PackagePath="\" /> |
| 20 | </ItemGroup> | 20 | </ItemGroup> |
| 21 | 21 | ||
| 22 | <ItemGroup> | 22 | <!-- .NET 10 SDK no longer implicitly references these, so we need to be explicit --> |
| 23 | <PackageReference Include="System.IO.Compression" /> | 23 | <ItemGroup Condition="'$(TargetFramework)' == 'net472'"> |
| 24 | <Reference Include="System.IO.Compression" /> | ||
| 25 | <Reference Include="System.IO.Compression.FileSystem" /> | ||
| 24 | </ItemGroup> | 26 | </ItemGroup> |
| 25 | </Project> | 27 | </Project> |
diff --git a/src/build_all.cmd b/src/build_all.cmd index 5f3ba14e..14e77bee 100644 --- a/src/build_all.cmd +++ b/src/build_all.cmd | |||
| @@ -84,7 +84,7 @@ if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" | |||
| 84 | exit /b 2 | 84 | exit /b 2 |
| 85 | ) | 85 | ) |
| 86 | 86 | ||
| 87 | for /f "usebackq delims=" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -version [17.0^,18.0^) -property installationPath`) do ( | 87 | for /f "usebackq delims=" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -version [18^,19^) -property installationPath`) do ( |
| 88 | if exist "%%i\Common7\Tools\vsdevcmd.bat" ( | 88 | if exist "%%i\Common7\Tools\vsdevcmd.bat" ( |
| 89 | call "%%i\Common7\Tools\vsdevcmd.bat" -no_logo | 89 | call "%%i\Common7\Tools\vsdevcmd.bat" -no_logo |
| 90 | exit /b | 90 | exit /b |
diff --git a/src/internal/SetBuildNumber/global.json.pp b/src/internal/SetBuildNumber/global.json.pp index 97f7e471..b99149d2 100644 --- a/src/internal/SetBuildNumber/global.json.pp +++ b/src/internal/SetBuildNumber/global.json.pp | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | "WixToolset.Sdk": "{packageversion}" | 6 | "WixToolset.Sdk": "{packageversion}" |
| 7 | }, | 7 | }, |
| 8 | "sdk": { | 8 | "sdk": { |
| 9 | "allowPrerelease": false | 9 | "version": "10.0.100", |
| 10 | "rollForward": "latestFeature" | ||
| 10 | } | 11 | } |
| 11 | } | 12 | } |
diff --git a/src/test/burn/WixTestTools/WixTestTools.csproj b/src/test/burn/WixTestTools/WixTestTools.csproj index 587ff9ea..619ec974 100644 --- a/src/test/burn/WixTestTools/WixTestTools.csproj +++ b/src/test/burn/WixTestTools/WixTestTools.csproj | |||
| @@ -20,11 +20,9 @@ | |||
| 20 | </ItemGroup> | 20 | </ItemGroup> |
| 21 | 21 | ||
| 22 | <ItemGroup> | 22 | <ItemGroup> |
| 23 | <PackageReference Include="Microsoft.Win32.Registry" /> | ||
| 24 | <PackageReference Include="System.DirectoryServices" /> | 23 | <PackageReference Include="System.DirectoryServices" /> |
| 25 | <PackageReference Include="System.DirectoryServices.AccountManagement" /> | 24 | <PackageReference Include="System.DirectoryServices.AccountManagement" /> |
| 26 | <PackageReference Include="System.Management" /> | 25 | <PackageReference Include="System.Management" /> |
| 27 | <PackageReference Include="System.Security.Principal.Windows" /> | ||
| 28 | <PackageReference Include="WixInternal.TestSupport" /> | 26 | <PackageReference Include="WixInternal.TestSupport" /> |
| 29 | <PackageReference Include="WixToolset.Data" /> | 27 | <PackageReference Include="WixToolset.Data" /> |
| 30 | <PackageReference Include="WixToolset.BootstrapperApplicationApi" /> | 28 | <PackageReference Include="WixToolset.BootstrapperApplicationApi" /> |
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj b/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj index 23a65cdc..1d9615bb 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj +++ b/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj | |||
| @@ -18,8 +18,6 @@ | |||
| 18 | 18 | ||
| 19 | <ItemGroup> | 19 | <ItemGroup> |
| 20 | <PackageReference Include="Microsoft.AspNetCore.Owin" /> | 20 | <PackageReference Include="Microsoft.AspNetCore.Owin" /> |
| 21 | <PackageReference Include="Microsoft.Win32.Registry" /> | ||
| 22 | <PackageReference Include="System.Security.Principal.Windows" /> | ||
| 23 | <PackageReference Include="WixInternal.TestSupport" /> | 21 | <PackageReference Include="WixInternal.TestSupport" /> |
| 24 | <PackageReference Include="WixToolset.Data" /> | 22 | <PackageReference Include="WixToolset.Data" /> |
| 25 | <PackageReference Include="WixToolset.BootstrapperApplicationApi" /> | 23 | <PackageReference Include="WixToolset.BootstrapperApplicationApi" /> |
diff --git a/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj b/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj index 21b00b7d..f0bf8a5d 100644 --- a/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj +++ b/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj | |||
| @@ -28,9 +28,6 @@ | |||
| 28 | </ItemGroup> | 28 | </ItemGroup> |
| 29 | 29 | ||
| 30 | <ItemGroup> | 30 | <ItemGroup> |
| 31 | <PackageReference Include="Microsoft.Win32.Registry" /> | ||
| 32 | <PackageReference Include="System.Net.NetworkInformation" /> | ||
| 33 | <PackageReference Include="System.Security.Principal.Windows" /> | ||
| 34 | <PackageReference Include="WixInternal.TestSupport" /> | 31 | <PackageReference Include="WixInternal.TestSupport" /> |
| 35 | <PackageReference Include="WixToolset.Data" /> | 32 | <PackageReference Include="WixToolset.Data" /> |
| 36 | </ItemGroup> | 33 | </ItemGroup> |
