Skip to content

Commit 02ed8f1

Browse files
scottdurowjanis-veinbergs
authored andcommitted
Adds scottdurow#204 - unpacksolution command
1 parent 8c63828 commit 02ed8f1

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
set package_root=..\..\
3+
REM Find the spkl in the package folder (irrespective of version)
4+
For /R %package_root% %%G IN (spkl.exe) do (
5+
IF EXIST "%%G" (set spkl_path=%%G
6+
goto :continue)
7+
)
8+
9+
:continue
10+
@echo Using '%spkl_path%'
11+
REM spkl instrument [path] [connection-string] [/p:release]
12+
"%spkl_path%" unpacksolution "%cd%\.." ""
13+
14+
pause

spkl/spkl/spkl.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
<None Include="Package\spkl\pack+import.bat" />
142142
<None Include="Package\spkl.json" />
143143
<None Include="Package\spkl.nuspec" />
144+
<None Include="Package\spkl\unpacksolution.bat" />
144145
<None Include="Package\spkl\unpack.bat" />
145146
</ItemGroup>
146147
<ItemGroup>

0 commit comments

Comments
 (0)