MSBuild Structured Log Viewer
Silent install package for MSBuild Structured Log Viewer
2.3.124-1
System and network
System and network
- package: tis-msbuild-structured-log-viewer
- name: MSBuild Structured Log Viewer
- version: 2.3.124-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.77 Mo
- homepage : https://msbuildlog.com/
package : tis-msbuild-structured-log-viewer
version : 2.3.124-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 : a9ce7c40-0ddd-452f-99f0-769b4be1411b
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 : 2026-01-23T21:02:52.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 : CTLm1ZJAP+zXvRXVq+Y/ADuk8tbLP6M97gdnENLgdv+jy52pR+Ix7ohzOQf4H3LZnI+7qN+Kd/eOjW1uXs8EQ6LztBqawN1FqCxZqEHgHzTinrzXmMcljjnEQSfJKTwLzZ1CQahYfo6lbTKh1U2vTnXA6HtAKbARIczIXx9Qepy8wYApiYv0XTcmd7zmABurEZw5yDzrc620/A2ojuPiiRpEABflBPplc4IjF+I9e7AnlKlGslra6kLdX1qeUK8R3gimQtG7tnT088ndQzC6qG4Y0pd6YiSF6n3f/HKx/lMoUVeLhWyD9Mos3baKYPVECJpt1zPga94zZFwZviH8kg==
# -*- 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()
4a4702fe90484bf70bbbd565203034784d39694ae3237da8c4a019c94bc7505f : Setup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
de2ac40171e50d35d978c45771245ea71a7f39cc2721165ecb891b8dd23cb1ee : WAPT/control
de44802f9c6810e2adf0a05a9ac3450e6ee05ed9b71c0e2e6fbc83904a6bd470 : WAPT/icon.png
18e369982b492478a41f88fab36550bbce11d21f6b119be39f42059a9ac627c5 : luti.json
12f2c8ec90d0233c549ebc26496905fadab7b96e61699c256ec7aaa936468c8b : setup.py
6448e39d4f1519a58a3aa4452edb2b8b617db67a3344ed4ab63e09fe9c761981 : update_package.py