diff --git a/scriptsharp/ScriptSharp/Program.cs b/scriptsharp/ScriptSharp/Program.cs index 790ebf3..86288e8 100644 --- a/scriptsharp/ScriptSharp/Program.cs +++ b/scriptsharp/ScriptSharp/Program.cs @@ -11,12 +11,6 @@ // dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained true // permet de generer un seul gros .exe avec tout ce qu'il faut dedans -// TODO creer un projet fake en kotlin pour peupler le .gradle Google "gradle init to create new kotlin project" -// TODO ou la meme chose en maven : https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-archetype-jvm -// https://books.sonatype.com/mvnex-book/reference/simple-project-sect-create-simple.html#:~:text=To%20start%20a%20new%20Maven,will%20use%20the%20archetype%20org. -// gradle init --type kotlin-application --dsl kotlin --test-framework kotlintest --package ca.cem --project-name fake-kotlin --no-split-project --java-version 17 - - // .gradle pour un projet kotlin tout court = 2.03 Go // .gradle pour un projet Android = 2.03 Go // .gradle pour un projet kotlin avec un projet android = 4.06 Go @@ -25,11 +19,6 @@ // Sdk de base apres install de Labybug : 5.01 Go // Sdk de ed5depinfo : 7.52 Go -// TODO https://www.jetbrains.com/help/idea/install-plugins-from-the-command-line.html - -// TODO bug pour les shortcut -// TODO mettre le Sdk a la bonne place - /** Install JetBrains 8h10 debut * 3 min 8h11 debut SDK * 7 min 8h14 debut sync gradle (on parle essentiellement de plein de tout petit telechargement) @@ -162,7 +151,6 @@ public static async Task DownloadRepo(string url, string name) } } - // TODO split copy and unzip to start other download while unzipping public static async Task InstallAndroidSdk() { LogSingleton.Get.LogAndWriteLine("Installation Android SDK démarré"); @@ -189,8 +177,6 @@ public static async Task InstallAndroidStudio() Utils.AddToPath(Path.Combine(desktopPath, "android-studio", "bin")); string destinationFolder = Path.Combine(desktopPath); await Utils.Unzip7ZFileAsync(Path.Combine(Config.LocalTemp, "android-studio.7z"), destinationFolder); - // TODO add shortcut - LogSingleton.Get.LogAndWriteLine(" FAIT Installation Android Studio fini"); } diff --git a/scriptsharp/ScriptSharp/Script5N6.cs b/scriptsharp/ScriptSharp/Script5N6.cs index 849d6c7..6316536 100644 --- a/scriptsharp/ScriptSharp/Script5N6.cs +++ b/scriptsharp/ScriptSharp/Script5N6.cs @@ -51,7 +51,6 @@ private static async Task InstallFlutter() LogSingleton.Get.LogAndWriteLine("Installation Flutter démarré"); // ajouter flutter au path Utils.AddToPath(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "flutter", "bin")); - // TODO remove this in favor of cache flutter await Utils.CopyFileFromNetworkShareAsync( Path.Combine(Config.LocalCache, "flutter.7z"), Path.Combine(Config.LocalTemp, "flutter.7z"));