main
props 41 lines 2.32 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4 <Project>
5 <PropertyGroup>
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
8 <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
9 <NoWarn>$(NoWarn);MSB3026</NoWarn>
10
11 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName>
12 <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder>
13 <RootPackagesFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\packages\))</RootPackagesFolder>
14 <PdbsFolder>$(RootBuildFolder)logs\pdbs\$(Configuration)\</PdbsFolder>
15 <ArtifactsFolder>$(RootBuildFolder)artifacts\</ArtifactsFolder>
16 <ToolsFolder>$(RootBuildFolder).tools</ToolsFolder>
17 <PackageOutputPath>$(ArtifactsFolder)</PackageOutputPath>
18 <BaseOutputPath>$(RootBuildFolder)$(SegmentName)\</BaseOutputPath>
19 <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath>
20 <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
21
22 <!-- This is C++-specific but used from managed projects to pick up native build artifacts. -->
23 <WixNativeSdkLibraryToolset>v143</WixNativeSdkLibraryToolset>
24 <PlatformToolset Condition=" '$(ConfigurationType)' == 'StaticLibrary' ">$(WixNativeSdkLibraryToolset)</PlatformToolset>
25 <PlatformToolset Condition=" '$(PlatformToolset)' == '' ">v143</PlatformToolset>
26
27 <Authors>WiX Toolset Team</Authors>
28 <Company>WiX Toolset</Company>
29 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright>
30 <PackageLicenseExpression>MS-RL</PackageLicenseExpression>
31 <Product>WiX Toolset</Product>
32 <ProjectUrl>https://wixtoolset.org/</ProjectUrl>
33 <PackageIcon>wix.png</PackageIcon>
34
35 <NuGetAudit>true</NuGetAudit>
36 <NuGetAuditMode>all</NuGetAuditMode>
37 <NuGetAuditLevel>low</NuGetAuditLevel>
38 </PropertyGroup>
39
40 <Import Project="Directory$(MSBuildProjectExtension).props" Condition=" Exists('Directory$(MSBuildProjectExtension).props') " />
41 </Project>