
MSBuild Structured Log Viewer
Paquet d’installation silencieuse pour MSBuild Structured Log Viewer
2.3.42-1
- package: tis-msbuild-structured-log-viewer
- name: MSBuild Structured Log Viewer
- version: 2.3.42-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.75 Mo
- homepage : https://msbuildlog.com/
package : tis-msbuild-structured-log-viewer
version : 2.3.42-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 : 43d57f60-06cf-4021-bb45-7e3243af285f
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-08-16T02:02:10.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 : Y8+TIAa7BAD436Zxq1blgFSGXiaYzNI05WHGHxmICTXONyzuItDmBA46bCkmq0MU7PjC1zYY2CPdkXarjWbJrb05I5m1PlhmckyJAzK2aztSnxQZmEiqOEdIlu3/oTP27SkXLRa3tVXnNBwyJTtL9PszdCKv2W22LdJBQCrh+lcCGR6K9X6jrwIg6h8aNSY3Wl6tBcG7D0DQUJ+Z39T6AahgHZnauzkERgpNgRahuQWoTmNVsNEKjgA95khbONJL/nhlgIw3ti2B4lxSk9jJ78+XF686HGPFe2ia7ZoxIecI96R+sZAT9UUsJg0n+iOD33fgQYyeOkYiIFDg6plUug==
# -*- 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()
8b5f7764a1eccc6c4c8ca7af6a41bcd434975e2711e14707b483448d746ad930 : Setup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4df9db564c1489862e9b165dd61f918503a162ceea3c8a74589b534381269f2f : WAPT/control
de44802f9c6810e2adf0a05a9ac3450e6ee05ed9b71c0e2e6fbc83904a6bd470 : WAPT/icon.png
4bbaaf5101faa74e60ad4738d086025b542db490844950e7da6d9f68d8972f4a : luti.json
12f2c8ec90d0233c549ebc26496905fadab7b96e61699c256ec7aaa936468c8b : setup.py
6448e39d4f1519a58a3aa4452edb2b8b617db67a3344ed4ab63e09fe9c761981 : update_package.py