aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/WixToolset.Data.csproj6
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>