CMake/Tests/VSWinStorePhone/WinRT/Batman.cpp
Gilles Khouzam cff026dbc0 VS: Fix WinRT component references
WinRT components need to be referenced in a similar way that managed
code libraries are referenced.  Validate that the library reference is a
WinRT component and reference it through the project.

Add test coverage for `VS_WINRT_COMPONENT`.  While at it, fix the IOT
reference failing on Win10 SDK 17763 which doesn't include it anymore.

Fixes: #18846
2019-02-01 13:04:52 -05:00

15 lines
156 B
C++

#include "Batman.h"
using namespace JusticeLeagueWinRT;
using namespace Platform;
Batman::Batman()
{
}
void Batman::savePeople()
{
int i = 0;
i++;
}