📄
publish.ps1
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[string]
$NugetApiKey
)
dotnet publish ./OutGridTree/OutGridTree.csproj --configuration Release --output ./bin/OutGridTree/
dotnet publish ./OutGridTree.Window/OutGridTree.Window.csproj --configuration Release --output ./bin/OutGridTree/
Publish-Module -Path ./bin/OutGridTree/ -NuGetApiKey $NugetApiKey