blob: 00fb5a4142496cf2c5138036e8f5b0aad656b0b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!-- 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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<!-- Add some random EULA Ids for testing purposes. -->
<AcceptEula>foo;wix7;bar</AcceptEula>
</PropertyGroup>
<ItemGroup>
<Content Include="CustomAction.config" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Dtf.CustomAction" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" />
</ItemGroup>
</Project>
|