aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-01-03 20:50:17 -0800
committerRob Mensching <rob@firegiant.com>2022-01-03 21:28:32 -0800
commit190c5244bf7f2f7827a661d2d2bfb85ae40279a3 (patch)
tree07a7c20cf4c5f3d9543ac13f1297423675a4470e /src
parentd4b81140251e365a3241a15b16efc65a035c152a (diff)
downloadwix-190c5244bf7f2f7827a661d2d2bfb85ae40279a3.tar.gz
wix-190c5244bf7f2f7827a661d2d2bfb85ae40279a3.tar.bz2
wix-190c5244bf7f2f7827a661d2d2bfb85ae40279a3.zip
Properly place Iis.wixext in its own segment and simplify its build
Diffstat (limited to 'src')
-rw-r--r--src/ext/Msmq/Directory.Build.props10
-rw-r--r--src/ext/Msmq/msmq.cmd6
2 files changed, 13 insertions, 3 deletions
diff --git a/src/ext/Msmq/Directory.Build.props b/src/ext/Msmq/Directory.Build.props
new file mode 100644
index 00000000..3efb0afa
--- /dev/null
+++ b/src/ext/Msmq/Directory.Build.props
@@ -0,0 +1,10 @@
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 <SegmentName>Msmq.wixext</SegmentName>
7 </PropertyGroup>
8
9 <Import Project="..\..\Directory.Build.props" />
10</Project>
diff --git a/src/ext/Msmq/msmq.cmd b/src/ext/Msmq/msmq.cmd
index 8b6865fe..963e3ecf 100644
--- a/src/ext/Msmq/msmq.cmd
+++ b/src/ext/Msmq/msmq.cmd
@@ -9,13 +9,13 @@
9@echo Msmq.wixext build %_C% 9@echo Msmq.wixext build %_C%
10 10
11:: Build 11:: Build
12msbuild -Restore -p:Configuration=%_C% || exit /b 12msbuild -Restore -p:Configuration=%_C% -nologo || exit /b
13 13
14:: Test 14:: Test
15dotnet test -c %_C% --no-build test\WixToolsetTest.Msmq || exit /b 15dotnet test test\WixToolsetTest.Msmq -c %_C% --no-build --nologo || exit /b
16 16
17:: Pack 17:: Pack
18msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Msmq.wixext.csproj || exit /b 18dotnet pack wixext\WixToolset.Msmq.wixext.csproj -c %_C% --no-build --nologo || exit /b
19 19
20@popd 20@popd
21@endlocal 21@endlocal