We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 792f13a + 64503e4 commit f9b9fd9Copy full SHA for f9b9fd9
Tools/Create-Azure-Sentinel-Solution/V3/createSolutionV3.ps1
@@ -1,5 +1,16 @@
1
+
2
+param(
3
+ [string]$SolutionDataFolderPath = $null
4
+)
5
6
Write-Host '=======Starting Package Creation using V3 tool========='
-$path = Read-Host "Enter solution data file path "
7
+if ($null -eq $SolutionDataFolderPath -or $SolutionDataFolderPath -eq '') {
8
+ $path = Read-Host "Enter solution data folder path "
9
+} else {
10
+ $path = $SolutionDataFolderPath
11
+ Write-Host "Solution Data folder path specified is : $path"
12
+}
13
14
$defaultPackageVersion = "3.0.0" # for templateSpec this will be 2.0.0
15
Write-Host "Path $path, DefaultPackageVersion is $defaultPackageVersion"
16
0 commit comments