FrameworkReference required for c++/cli project on .Net Core

In order to build a c++/cli project on dot net core I must have a vcxproj that includes
<ItemGroup>
<FrameworkReference Include=“Microsoft.WindowsDesktop.App” />
</ItemGroup>

My build system is using CMake and I can’t find a way to configure it to include these lines in the generated project.
Thanks for helping

Can this appear in a custom VS_USER_PROPS file?

I managed to make this work using a custom props file and the target property VS_PROJECT_IMPORT.

The props file is just:

<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
	<FrameworkReference Include="Microsoft.WindowsDesktop.App"/>
  </ItemGroup>
</Project>