Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Wix.Common.props « targets « eng - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a376c6d118434cb262ddc34c8c9d9f0a2bdf0ab7 (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
29
30
31
32
<!-- Targets for making .wixproj better. -->
<Project>

  <PropertyGroup>
    <SchemaVersion>2.0</SchemaVersion>
    <ProductVersion>3.14</ProductVersion>
    <WixVersion>3.14.0-dotnet</WixVersion>
  </PropertyGroup>

  <PropertyGroup>
    <!-- Required to make NuGet happy -->
    <TargetFramework>net461</TargetFramework>
    <MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
    <MSBuildProjectExtensionsPath Condition="'$(MSBuildProjectExtensionsPath)' == ''">$(MSBuildProjectDir)\obj\</MSBuildProjectExtensionsPath>
    <NuGetRestoreTargets Condition="'$(NuGetRestoreTargets)'==''">$(MSBuildExtensionsPath)\..\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targets</NuGetRestoreTargets>
  </PropertyGroup>

  <Import Project="$(MSBuildProjectExtensionsPath)$(MSBuildProjectFile).*.props" />

  <ItemGroup>
    <PackageReference Include="Wix" Version="$(WixVersion)" />
  </ItemGroup>

  <PropertyGroup>
    <SignOutput Condition=" '$(SignType)' != '' ">true</SignOutput>
    <DarkToolPath>$(WixExtDir)dark.exe</DarkToolPath>
  </PropertyGroup>

  <Import Project="MicroBuild.Plugin.props" Condition="'$(MicroBuildSentinelFile)' == ''" />
  <Import Project="$(MicroBuildPluginDirectory)\MicroBuild.Plugins.*\**\build\MicroBuild.Plugins.*.props" Condition=" '$(MicroBuildPluginDirectory)' != ''" />

</Project>