diff options
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj')
-rw-r--r-- | src/WixToolset.BootstrapperCore.Native/WixToolset.BootstrapperCore.Native.proj | 19 |
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> | ||