aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-21 11:01:33 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:41:44 -0700
commit8eb98efd2175d9ece2e4639d43081667af9a4990 (patch)
tree6573fa8371f6917c1a6d476c6b8d6eea6526908d /src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj
parentd2f27517dffc02b7c50e386793c7ad89762c6b64 (diff)
downloadwix-8eb98efd2175d9ece2e4639d43081667af9a4990.tar.gz
wix-8eb98efd2175d9ece2e4639d43081667af9a4990.tar.bz2
wix-8eb98efd2175d9ece2e4639d43081667af9a4990.zip
Migrate Burn API headers from burn repository
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj b/src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj
new file mode 100644
index 00000000..0899bdcf
--- /dev/null
+++ b/src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj
@@ -0,0 +1,19 @@
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
5<Project ToolsVersion="4.0" DefaultTargets="Pack" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6 <PropertyGroup>
7 <PackageId>WixToolset.BootstrapperCore.Native</PackageId>
8 <Description>WiX Bootstrapper native interfaces</Description>
9 </PropertyGroup>
10
11 <Target Name="PackNative" DependsOnTargets="GetBuildVersion">
12 <Exec Command='nuget pack $(PackageId).nuspec -OutputDirectory "$(BaseOutputPath)$(Configuration)" -Properties Id=$(PackageId);Version="$(BuildVersionSimple)";Authors="$(Authors)";Copyright="$(Copyright)";Description="$(Description)"' />
13 </Target>
14
15 <Import Project="..\Directory.Build.props" />
16 <!-- <Import Project="..\Directory.Build.targets" /> -->
17
18 <Import Project="..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets')" />
19</Project>