Skip to content

Commit

Permalink
Merge pull request #217 from Mrxx99/feature/dev-template-install-script
Browse files Browse the repository at this point in the history
Added powershell script to re-install templates easily
  • Loading branch information
maxkatz6 authored Jul 7, 2023
2 parents fbd288a + 819b8d1 commit 941db56
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions install-dev-templates.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dotnet new uninstall Avalonia.Templates
Remove-Item bin/**/*.nupkg
$result = dotnet pack | select-string "Successfully created package '(.*)'" -AllMatches
$package = $result.Matches.Groups[1]
dotnet new install $package

0 comments on commit 941db56

Please sign in to comment.