mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02:00
13 lines
276 B
C++
13 lines
276 B
C++
|
|
#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() };
|
||
|
|
}
|
||
|
|
}
|