| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | <PropertyGroup> |
| 3 | <TargetFramework>net462</TargetFramework> |
| 4 | <Description>Sample managed custom actions</Description> |
| 5 | </PropertyGroup> |
| 6 | |
| 7 | <ItemGroup> |
| 8 | <Content Include="CustomAction.config" CopyToOutputDirectory="PreserveNewest" /> |
| 9 | <None Include="testsub\testfile.txt" CopyToOutputDirectory="PreserveNewest" /> |
| 10 | <CustomActionContents Include="testsub\SampleCAs.cs=$(OutputDirectory)testsub\testfile.txt" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <PackageReference Include="WixToolset.Dtf.CustomAction" /> |
| 15 | </ItemGroup> |
| 16 | </Project> |