-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinstall-dev-templates.ps1
27 lines (23 loc) · 1.12 KB
/
install-dev-templates.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Inspired by https://github.com/AvaloniaUI/avalonia-dotnet-templates/blob/main/install-dev-templates.ps1
######################################################################
# Step 2: Uninstall previous templates and clean output
######################################################################
dotnet new uninstall Akka.Templates
Remove-Item bin/**/*.nupkg
######################################################################
# Step 3: Pack new templates
######################################################################
dotnet pack -c Release
# Search Directory
$directoryPath = ".\bin\Release"
$latestNupkgFile = Get-ChildItem -Path $directoryPath -Recurse -Filter "*.nupkg" |
Where-Object { -not $_.PSIsContainer } |
Sort-Object LastWriteTime -Descending |
Select-Object -First 1
######################################################################
# Step 4: install the templates
######################################################################
if ($latestNupkgFile) {
$latestNupkgPath = $latestNupkgFile.FullName
dotnet new install $latestNupkgPath
}