blob: 031245ba7c1b25184b2d18bdbc125f96b5b3e8f0 (
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
26
27
28
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <TargetFrameworks>netcoreapp2.0;net472</TargetFrameworks> -->
<TargetFrameworks>net472</TargetFrameworks>
<IsTool>true</IsTool>
<IncludeBuildOutput>false</IncludeBuildOutput>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<NoWarn>$(NoWarn);CS0618</NoWarn>
<SignOutput>false</SignOutput>
</PropertyGroup>
<ItemGroup>
<Content Include="build\WixBuildTools.XsdGen.targets" PackagePath="build\" />
<Content Include="buildCrossTargeting\WixBuildTools.XsdGen.targets" PackagePath="buildCrossTargeting\" />
<Content Include="$(OutputPath)net472\$(TargetFileName)" PackagePath="tools\full" />
<!-- <Content Include="$(OutputPath)netcoreapp2.0\$(TargetFileName)" PackagePath="tools\core" /> -->
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="GitInfo" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>
</Project>
|