diff options
| author | Rob Mensching <rob@firegiant.com> | 2025-11-13 10:20:34 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2025-12-13 16:30:50 -0800 |
| commit | ce6075b804cb43aa3474f9e5d878d0ded1a77aaf (patch) | |
| tree | 63a04bd59fbed1a46c294bb8acb1886d98d08a1e /src/api | |
| parent | 7760a8b0d241223e0210c52d17b950f64629d2a4 (diff) | |
| download | wix-ce6075b804cb43aa3474f9e5d878d0ded1a77aaf.tar.gz wix-ce6075b804cb43aa3474f9e5d878d0ded1a77aaf.tar.bz2 wix-ce6075b804cb43aa3474f9e5d878d0ded1a77aaf.zip | |
Update to use .NET 10 SDK for builds
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/wix/WixToolset.Data/WixToolset.Data.csproj | 6 |
1 files changed, 4 insertions, 2 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> |
