13 строки
288 B
PowerShell
13 строки
288 B
PowerShell
#!/usr/bin/env pwsh
|
|
#requires -version 4
|
|
|
|
[CmdletBinding(PositionalBinding = $false)]
|
|
param()
|
|
|
|
Set-StrictMode -Version 2
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
. $PSScriptRoot\Test-Template.ps1
|
|
|
|
Test-Template "react" "react" "Microsoft.DotNet.Web.Spa.ProjectTemplates.3.0.0-alpha1.nupkg" $true
|