Skip to content

Commit

Permalink
Cleanup des TODOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdeguet committed Oct 17, 2024
1 parent c5251e4 commit 6dda5ac
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
14 changes: 0 additions & 14 deletions scriptsharp/ScriptSharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down Expand Up @@ -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é");
Expand All @@ -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");
}

Expand Down
1 change: 0 additions & 1 deletion scriptsharp/ScriptSharp/Script5N6.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down

0 comments on commit 6dda5ac

Please sign in to comment.