tis-msbuild-structured-log-viewer icon

MSBuild Structured Log Viewer

Paquet d’installation silencieuse pour MSBuild Structured Log Viewer

2.2.489-1

  • package: tis-msbuild-structured-log-viewer
  • name: MSBuild Structured Log Viewer
  • version: 2.2.489-1
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,Licence MIT,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 6.72 Mo
  • homepage : https://msbuildlog.com/

package           : tis-msbuild-structured-log-viewer
version           : 2.2.489-1
architecture      : x64
section           : base
priority          : optional
name              : MSBuild Structured Log Viewer
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : A recorder for MSBuild that saves a structured representation of executed targets, tasks, properties and element values
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Un enregistreur pour MSBuild qui enregistre une représentation structurée des cibles exécutées, des tâches, des propriétés et des valeurs d'éléments
description_pl    : Rejestrator dla MSBuild, który zapisuje ustrukturyzowaną reprezentację wykonanych celów, zadań, właściwości i wartości elementów
description_de    : Ein Rekorder für MSBuild, der eine strukturierte Darstellung von ausgeführten Zielen, Aufgaben, Eigenschaften und Elementwerten aufzeichnet
description_es    : Un grabador para MSBuild que registra una representación estructurada de objetivos, tareas, propiedades y valores de elementos ejecutados
description_pt    : Um gravador para MSBuild que regista uma representação estruturada de alvos, tarefas, propriedades e valores de elementos executados
description_it    : Un registratore per MSBuild che registra una rappresentazione strutturata di obiettivi, attività, proprietà e valori di elementi eseguiti
description_nl    : Een recorder voor MSBuild die een gestructureerde weergave van uitgevoerde doelen, taken, eigenschappen en elementwaarden vastlegt
description_ru    : Регистратор для MSBuild, который записывает структурированное представление выполненных целей, задач, свойств и значений элементов
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,Licence MIT,wapt_private
homepage          : https://msbuildlog.com/
package_uuid      : d22008e4-5114-4bbd-baa6-b9b8ad41c377
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : de44802f9c6810e2adf0a05a9ac3450e6ee05ed9b71c0e2e6fbc83904a6bd470
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-05-18T04:40:41.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : aP7BnPd8FJhcy1GVQ9dagIG7XbgP/S2yLnhSV3/phSKTokZeBylSHxGQdDy46SZtmA1vcYGnCCdekGnhMzdC8qUxaIHUs89Hv2vj+Q6PkbxR0NcX2/+TQEwl7upqghVp3C5edaaF+Pyqm8870K6pkg2UHc0uvbG6NYz7xnGRUWghGiu5FdlxJQYvQmbRdeKCny2fuS3KY2eNmyn6tPHGfLN0hWjYYsMBUI+6XKwtUxOwXTyGkOmVoGMjN6quqKJPOio1Jws3luM0mV5Ygs5islf79TKvcHAiP4hWauBZvuCvKlc91hKPbIAVzaT7jbhS2mUyHT2I5KydQ+dWFy8tfg==

# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    # Uninstalling older versions of the software
    for to_uninstall in installed_softwares(name="MSBuild Structured Log Viewer Machine-Wide Installer"):
        if Version(to_uninstall["version"]) < Version(control.get_software_version()):
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])
            if isdir(to_uninstall["install_location"]):
                remove_tree(to_uninstall["install_location"])


    # Installing the software
    print("Installing: Setup.msi")
    install_msi_if_needed("Setup.msi")

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
    
    git_repo = "KirillOsenkov/MSBuildStructuredLog"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('.msi') :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.msi'):
        if f != filename:
            remove_file(f)

    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

ff0c01560d6a65ae38646e122c8848f2e3bed019201cb2dd93380d8fd87e679b : Setup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
0300fad67a625a91fdf55baa8c7af429e651398866421532a98c87c026bda8bd : WAPT/control
de44802f9c6810e2adf0a05a9ac3450e6ee05ed9b71c0e2e6fbc83904a6bd470 : WAPT/icon.png
bc3d84350e3465c96f6cfb04a20cc0a27e150be2ccb73130d74e06e6991f17e4 : luti.json
12f2c8ec90d0233c549ebc26496905fadab7b96e61699c256ec7aaa936468c8b : setup.py
6448e39d4f1519a58a3aa4452edb2b8b617db67a3344ed4ab63e09fe9c761981 : update_package.py