install: begin rework

This commit is contained in:
2024-06-17 17:20:02 +02:00
parent 96c178b310
commit 99b1db952b
15 changed files with 64 additions and 4358 deletions

View File

@@ -0,0 +1,11 @@
Imports Newtonsoft.Json
Public Class InstallInfos
Public ReadOnly Property Actions As New List(Of InstallAction)
Public Shared Function Parse(content As String) As InstallInfos
Return JsonConvert.DeserializeObject(Of InstallInfos)(content)
End Function
End Class