blob: c73fb70301af3a284b580ec96ca8a31a4b7bacb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks> -->
<TargetFrameworks>net461</TargetFrameworks>
<IsTool>true</IsTool>
<IncludeBuildOutput>false</IncludeBuildOutput>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="build\WixBuildTools.XsdGen.targets" PackagePath="build\" />
<Content Include="buildCrossTargeting\WixBuildTools.XsdGen.targets" PackagePath="buildCrossTargeting\" />
<Content Include="$(OutputPath)net461\$(TargetFileName)" PackagePath="tools\full" />
<!-- <Content Include="$(OutputPath)netcoreapp2.0\$(TargetFileName)" PackagePath="tools\core" /> -->
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63102-01" PrivateAssets="All"/>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
</ItemGroup>
</Project>
|