/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/interop/CommonManaged.cpp
22 строки
535 B
Boliang Zhang
Add preview release versioning and update channel support (#49414)
06 авг 2026, 18:45
Не верифицирован
06 авг 2026, 18:45
558e633
Код
Авторство
О чём код?
#include "pch.h" #include "CommonManaged.h" #include "CommonManaged.g.cpp" #include <common/version/version.h> namespace winrt::PowerToys::Interop::implementation { hstring CommonManaged::GetProductVersion() { return hstring{ get_product_version() }; } hstring CommonManaged::GetProductVersionChannel() { return hstring{ get_product_version_channel() }; } hstring CommonManaged::GetProductVersionSourceCommit() { return hstring{ get_product_version_source_commit() }; } }