aboutsummaryrefslogtreecommitdiff
path: root/src/ext/VisualStudio/vs.cmd
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-02-14 22:29:39 -0500
committerBob Arnson <bob@firegiant.com>2025-02-14 22:29:39 -0500
commita181c02fd5ef6d601a98778a5c9e20b5c52779ca (patch)
tree7f6989e81ce05264f4c93e481e257a8cebdc6ded /src/ext/VisualStudio/vs.cmd
parent1be4e0930eb296f44b8cecd10fc9632a867149ce (diff)
downloadwix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.gz
wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.bz2
wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.zip
Convert ext\ to MSTest and traversal projects.
- Move ext\ unit tests to MSTest. - MSBuildify ext projects with MSTest execution. - Fork test support projects for MSTest: - WixInternal.TestSupport - WixInternal.Core.TestPackage
Diffstat (limited to 'src/ext/VisualStudio/vs.cmd')
-rw-r--r--src/ext/VisualStudio/vs.cmd21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/ext/VisualStudio/vs.cmd b/src/ext/VisualStudio/vs.cmd
deleted file mode 100644
index f0873f1d..00000000
--- a/src/ext/VisualStudio/vs.cmd
+++ /dev/null
@@ -1,21 +0,0 @@
1@setlocal
2@pushd %~dp0
3
4@set _C=Debug
5:parse_args
6@if /i "%1"=="release" set _C=Release
7@if not "%1"=="" shift & goto parse_args
8
9@echo VisualStudio.wixext build %_C%
10
11:: Build
12msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b
13
14:: Test
15dotnet test -c %_C% --no-build test\WixToolsetTest.VisualStudio || exit /b
16
17:: Pack
18msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.VisualStudio.wixext.csproj || exit /b
19
20@popd
21@endlocal