@joebigelow / wix / commits / 190c5244

Properly place Iis.wixext in its own segment and simplify its build

Rob Mensching committed Jan 3, 2022 at 20:50 UTC 190c5244bf7f2f7827a661d2d2bfb85ae40279a3
2 files changed +13 -3
src/ext/Msmq/Directory.Build.props new
+10
@@ -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>
src/ext/Msmq/msmq.cmd
+3 -3
@@ -9,13 +9,13 @@
9 @echo Msmq.wixext build %_C%
10
11 :: Build
12 -msbuild -Restore -p:Configuration=%_C% || exit /b
12 +msbuild -Restore -p:Configuration=%_C% -nologo || exit /b
13
14 :: Test
15 -dotnet test -c %_C% --no-build test\WixToolsetTest.Msmq || exit /b
15 +dotnet test test\WixToolsetTest.Msmq -c %_C% --no-build --nologo || exit /b
16
17 :: Pack
18 -msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Msmq.wixext.csproj || exit /b
18 +dotnet pack wixext\WixToolset.Msmq.wixext.csproj -c %_C% --no-build --nologo || exit /b
19
20 @popd
21 @endlocal