| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- 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. --> |
| 3 | |
| 4 | <Project Sdk="Microsoft.NET.Sdk"> |
| 5 | <PropertyGroup> |
| 6 | <TargetFrameworks>net6.0-windows;net472</TargetFrameworks> |
| 7 | <OutputType>Exe</OutputType> |
| 8 | <Description>Harvester</Description> |
| 9 | <Title>WiX Toolset Harvester</Title> |
| 10 | <DebugType>embedded</DebugType> |
| 11 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 12 | <RuntimeIdentifiers Condition=" '$(RuntimeIdentifier)'=='' and '$(TargetFramework)'!='net6.0' ">win-x86;win-x64</RuntimeIdentifiers> |
| 13 | <AppConfig>app.config</AppConfig> |
| 14 | <ApplicationManifest>heat.exe.manifest</ApplicationManifest> |
| 15 | <RollForward>LatestMajor</RollForward> |
| 16 | </PropertyGroup> |
| 17 | |
| 18 | <ItemGroup> |
| 19 | <Compile Update="Serialize\WixHarvesterStrings.Designer.cs"> |
| 20 | <DesignTime>True</DesignTime> |
| 21 | <AutoGen>True</AutoGen> |
| 22 | <DependentUpon>WixHarvesterStrings.resx</DependentUpon> |
| 23 | </Compile> |
| 24 | </ItemGroup> |
| 25 | |
| 26 | <ItemGroup> |
| 27 | <EmbeddedResource Update="Serialize\WixHarvesterStrings.resx"> |
| 28 | <Generator>ResXFileCodeGenerator</Generator> |
| 29 | <LastGenOutput>WixHarvesterStrings.Designer.cs</LastGenOutput> |
| 30 | </EmbeddedResource> |
| 31 | </ItemGroup> |
| 32 | |
| 33 | <ItemGroup> |
| 34 | <PackageReference Include="WixToolset.Core" /> |
| 35 | </ItemGroup> |
| 36 | |
| 37 | <ItemGroup> |
| 38 | <PackageReference Include="Microsoft.Win32.Registry" /> |
| 39 | <PackageReference Include="System.Configuration.ConfigurationManager" /> |
| 40 | <PackageReference Include="System.Diagnostics.PerformanceCounter" /> |
| 41 | <PackageReference Include="System.DirectoryServices" /> |
| 42 | <PackageReference Include="System.Memory" /> |
| 43 | </ItemGroup> |
| 44 | </Project> |