Exemple #1
0
def Run() -> bool:
    for modNamespace in Mods.GetAllModNames():  # type: str
        Mods.BuildMod(modNamespace)

    print("All mods built. " + datetime.datetime.now().strftime("%I:%M %p"))

    return True
Exemple #2
0
def Run() -> bool:
    namespace = "NeonOcean.S4.Cycle"  # type: str

    Mods.BuildMod(namespace)
    Mods.BuildPublishing(namespace)
    Publishing.PublishModPreview(namespace)

    return True
def Run() -> bool:
    namespace = "NeonOcean.S4.Choreography"  # type: str

    Mods.BuildMod(namespace)
    Mods.BuildPublishing(namespace)
    Publishing.PublishModRelease(namespace)

    return True