mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
13 lines
274 B
C++
13 lines
274 B
C++
#include "pch.h"
|
|
#include "CommonManaged.h"
|
|
#include "CommonManaged.g.cpp"
|
|
#include <common/utils/version.h>
|
|
|
|
namespace winrt::PowerToys::Interop::implementation
|
|
{
|
|
hstring CommonManaged::GetProductVersion()
|
|
{
|
|
return hstring{ get_product_version() };
|
|
}
|
|
}
|