mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
f852167ad1
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
10 lines
642 B
XML
10 lines
642 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<!-- Path to the Windows Kits 10 folder -->
|
|
<WinKits10Path>$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots', 'KitsRoot10', null, RegistryView.Registry32, RegistryView.Default))</WinKits10Path>
|
|
|
|
<PostBuildEvent Condition="'$(Configuration)' == 'Release'">"$(WinKits10Path)bin\10.0.18362.0\x64\mt.exe" -verbose -manifest "$(ProjectDir)app.manifest" -outputresource:"$(TargetDir)$(TargetFileName)";#1</PostBuildEvent>
|
|
</PropertyGroup>
|
|
</Project>
|