| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <!-- <TargetFrameworks>netcoreapp2.0;net472</TargetFrameworks> --> |
| 6 | <TargetFrameworks>net472</TargetFrameworks> |
| 7 | <IsTool>true</IsTool> |
| 8 | <IncludeBuildOutput>false</IncludeBuildOutput> |
| 9 | <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> |
| 10 | <DebugType>embedded</DebugType> |
| 11 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 12 | <NoWarn>$(NoWarn);CS0618</NoWarn> |
| 13 | <SignOutput>false</SignOutput> |
| 14 | </PropertyGroup> |
| 15 | |
| 16 | <ItemGroup> |
| 17 | <Content Include="build\WixBuildTools.XsdGen.targets" PackagePath="build\" /> |
| 18 | <Content Include="buildCrossTargeting\WixBuildTools.XsdGen.targets" PackagePath="buildCrossTargeting\" /> |
| 19 | |
| 20 | <Content Include="$(OutputPath)net472\$(TargetFileName)" PackagePath="tools\full" /> |
| 21 | <!-- <Content Include="$(OutputPath)netcoreapp2.0\$(TargetFileName)" PackagePath="tools\core" /> --> |
| 22 | </ItemGroup> |
| 23 | |
| 24 | <ItemGroup> |
| 25 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
| 26 | </ItemGroup> |
| 27 | </Project> |