-
Notifications
You must be signed in to change notification settings - Fork 808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement RTObjCInterop to be consumed via built packages #2747
Open
msft-Jeyaram
wants to merge
1
commit into
microsoft:develop
Choose a base branch
from
msft-Jeyaram:rtinterop
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
| ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.26117.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RTObjCInterop", "RTObjCInterop\RTObjCInterop.vcxproj", "{E332B155-82FE-4038-9D20-968F8F97AC3E}" | ||
EndProject | ||
Project("{5DD5E4FA-CB73-4610-85AB-557B54E96AA9}") = "WinObjC.Frameworks.UWP.Core", "WinObjC.Frameworks.UWP.Core\WinObjC.Frameworks.UWP.Core.nuproj", "{D9206FF8-86EF-477F-A022-AB3969D55876}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Debug|ARM = Debug|ARM | ||
Debug|x86 = Debug|x86 | ||
Release|Any CPU = Release|Any CPU | ||
Release|ARM = Release|ARM | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Debug|Any CPU.ActiveCfg = Debug|Win32 | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Debug|ARM.ActiveCfg = Debug|ARM | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Debug|ARM.Build.0 = Debug|ARM | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Debug|x86.ActiveCfg = Debug|Win32 | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Debug|x86.Build.0 = Debug|Win32 | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Release|Any CPU.ActiveCfg = Release|Win32 | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Release|ARM.ActiveCfg = Release|ARM | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Release|ARM.Build.0 = Release|ARM | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Release|x86.ActiveCfg = Release|Win32 | ||
{E332B155-82FE-4038-9D20-968F8F97AC3E}.Release|x86.Build.0 = Release|Win32 | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|ARM.ActiveCfg = Debug|ARM | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|ARM.Build.0 = Debug|ARM | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|x86.ActiveCfg = Debug|x86 | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Debug|x86.Build.0 = Debug|x86 | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|ARM.ActiveCfg = Release|ARM | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|ARM.Build.0 = Release|ARM | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|x86.ActiveCfg = Release|x86 | ||
{D9206FF8-86EF-477F-A022-AB3969D55876}.Release|x86.Build.0 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Label="ProjectConfigurations"> | ||
<ProjectConfiguration Include="Debug|ARM"> | ||
<Configuration>Debug</Configuration> | ||
<Platform>ARM</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Debug|Win32"> | ||
<Configuration>Debug</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Release|ARM"> | ||
<Configuration>Release</Configuration> | ||
<Platform>ARM</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Release|Win32"> | ||
<Configuration>Release</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
</ItemGroup> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>{e332b155-82fe-4038-9d20-968f8f97ac3e}</ProjectGuid> | ||
<Keyword>DynamicLibrary</Keyword> | ||
<RootNamespace>RTObjCInterop</RootNamespace> | ||
<DefaultLanguage>en-US</DefaultLanguage> | ||
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> | ||
<AppContainerApplication>true</AppContainerApplication> | ||
<TargetFramework>uap10.0</TargetFramework> | ||
<ApplicationType>Windows Store</ApplicationType> | ||
<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion> | ||
<WindowsTargetPlatformMinVersion>10.0.10586.0</WindowsTargetPlatformMinVersion> | ||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision> | ||
<TargetOsAndVersion Condition="'$(TargetOsAndVersion)' == ''">Universal Windows</TargetOsAndVersion> | ||
<EnableDotNetNativeCompatibleProfile Condition="'$(EnableDotNetNativeCompatibleProfile)'==''">true</EnableDotNetNativeCompatibleProfile> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
<ConfigurationType>DynamicLibrary</ConfigurationType> | ||
<UseDebugLibraries>true</UseDebugLibraries> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration"> | ||
<ConfigurationType>DynamicLibrary</ConfigurationType> | ||
<UseDebugLibraries>true</UseDebugLibraries> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
<ConfigurationType>DynamicLibrary</ConfigurationType> | ||
<UseDebugLibraries>false</UseDebugLibraries> | ||
<WholeProgramOptimization>true</WholeProgramOptimization> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration"> | ||
<ConfigurationType>DynamicLibrary</ConfigurationType> | ||
<UseDebugLibraries>false</UseDebugLibraries> | ||
<WholeProgramOptimization>true</WholeProgramOptimization> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
<ImportGroup Label="ExtensionSettings"> | ||
<Import Project="$(MSBuildProjectDirectory)\..\WinObjC.Frameworks.UWP.Core\WinObjC.Frameworks.UWP.Core.Packageable.props" /> | ||
</ImportGroup> | ||
<ImportGroup Label="Shared"> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<GenerateManifest>false</GenerateManifest> | ||
<IgnoreImportLibrary>false</IgnoreImportLibrary> | ||
<IslandwoodDRT>true</IslandwoodDRT> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<GenerateManifest>false</GenerateManifest> | ||
<IgnoreImportLibrary>false</IgnoreImportLibrary> | ||
<IslandwoodDRT>true</IslandwoodDRT> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | ||
<GenerateManifest>false</GenerateManifest> | ||
<IgnoreImportLibrary>false</IgnoreImportLibrary> | ||
<IslandwoodDRT>true</IslandwoodDRT> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | ||
<GenerateManifest>false</GenerateManifest> | ||
<IgnoreImportLibrary>false</IgnoreImportLibrary> | ||
<IslandwoodDRT>true</IslandwoodDRT> | ||
</PropertyGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<ClCompile> | ||
<PrecompiledHeader>NotUsing</PrecompiledHeader> | ||
<CompileAsWinRT>false</CompileAsWinRT> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Console</SubSystem> | ||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata> | ||
<ModuleDefinitionFile>export.def</ModuleDefinitionFile> | ||
</Link> | ||
<ClangCompile> | ||
<AdditionalOptions>-Wno-microsoft -Wno-extern-initializer -Wno-ignored-attributes -DWINAPI_FAMILY=WINAPI_FAMILY_APP -DOBJCWINRT_EXPORT=__declspec(dllexport) -ffunction-sections -fdata-sections -d2bigobj </AdditionalOptions> | ||
|
||
<!--We should not need $(WINOBJC_SDK_ROOT)\include once we have resolved the circular dependency between Frameworks.Core and Frameworks--> | ||
<IncludePaths>$(WINOBJC_SDK_ROOT)\include;$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\;$(WINOBJC_SDK_ROOT)\Frameworks\include;$(WINOBJC_SDK_ROOT)\include\xplat;%(IncludePaths)</IncludePaths> | ||
|
||
<UserIncludePaths> | ||
</UserIncludePaths> | ||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
<PreprocessorDefinitions>DEBUG=1</PreprocessorDefinitions> | ||
</ClangCompile> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<ClCompile> | ||
<PrecompiledHeader>NotUsing</PrecompiledHeader> | ||
<CompileAsWinRT>false</CompileAsWinRT> | ||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Console</SubSystem> | ||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata> | ||
<ModuleDefinitionFile>export.def</ModuleDefinitionFile> | ||
</Link> | ||
<ClangCompile> | ||
<AdditionalOptions>-Wno-microsoft -Wno-extern-initializer -Wno-ignored-attributes -DWINAPI_FAMILY=WINAPI_FAMILY_APP -DOBJCWINRT_EXPORT=__declspec(dllexport) -ffunction-sections -fdata-sections -d2bigobj </AdditionalOptions> | ||
|
||
<!--We should not need $(WINOBJC_SDK_ROOT)\include once we have resolved the circular dependency between Frameworks.Core and Frameworks--> | ||
<IncludePaths>$(WINOBJC_SDK_ROOT)\include;$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\;$(WINOBJC_SDK_ROOT)\Frameworks\include;$(WINOBJC_SDK_ROOT)\include\xplat;%(IncludePaths)</IncludePaths> | ||
|
||
<OptimizationLevel>Full</OptimizationLevel> | ||
<WOCStdLib>true</WOCStdLib> | ||
<UserIncludePaths> | ||
</UserIncludePaths> | ||
</ClangCompile> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'"> | ||
<ClCompile> | ||
<PrecompiledHeader>NotUsing</PrecompiledHeader> | ||
<CompileAsWinRT>false</CompileAsWinRT> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Console</SubSystem> | ||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata> | ||
<ModuleDefinitionFile>export.def</ModuleDefinitionFile> | ||
</Link> | ||
<ClangCompile> | ||
<AdditionalOptions>-Wno-microsoft -Wno-extern-initializer -Wno-ignored-attributes -DWINAPI_FAMILY=WINAPI_FAMILY_APP -DOBJCWINRT_EXPORT=__declspec(dllexport) -ffunction-sections -fdata-sections -d2bigobj </AdditionalOptions> | ||
|
||
<!--We should not need $(WINOBJC_SDK_ROOT)\include once we have resolved the circular dependency between Frameworks.Core and Frameworks--> | ||
<IncludePaths>$(WINOBJC_SDK_ROOT)\include;$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\;$(WINOBJC_SDK_ROOT)\Frameworks\include;$(WINOBJC_SDK_ROOT)\include\xplat;%(IncludePaths)</IncludePaths> | ||
|
||
<UserIncludePaths> | ||
</UserIncludePaths> | ||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
<PreprocessorDefinitions>DEBUG=1</PreprocessorDefinitions> | ||
</ClangCompile> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'"> | ||
<ClCompile> | ||
<PrecompiledHeader>NotUsing</PrecompiledHeader> | ||
<CompileAsWinRT>false</CompileAsWinRT> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Console</SubSystem> | ||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata> | ||
<ModuleDefinitionFile>export.def</ModuleDefinitionFile> | ||
</Link> | ||
<ClangCompile> | ||
<AdditionalOptions>-Wno-microsoft -Wno-extern-initializer -Wno-ignored-attributes -DWINAPI_FAMILY=WINAPI_FAMILY_APP -DOBJCWINRT_EXPORT=__declspec(dllexport) -ffunction-sections -fdata-sections -d2bigobj </AdditionalOptions> | ||
|
||
<!--We should not need $(WINOBJC_SDK_ROOT)\include once we have resolved the circular dependency between Frameworks.Core and Frameworks--> | ||
<IncludePaths>$(WINOBJC_SDK_ROOT)\include;$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\;$(WINOBJC_SDK_ROOT)\Frameworks\include;$(WINOBJC_SDK_ROOT)\include\xplat;%(IncludePaths)</IncludePaths> | ||
|
||
<OptimizationLevel>Full</OptimizationLevel> | ||
<WOCStdLib>true</WOCStdLib> | ||
<UserIncludePaths> | ||
</UserIncludePaths> | ||
</ClangCompile> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\InteropBase.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\RTHelpers.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelpers.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelperCommonConvertors.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelperAsyncImplementation.h" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageHeader Include="$(WINOBJC_SDK_ROOT)\include\Platform\Universal Windows\UWP\InteropBase.h"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="export.def" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClangCompile Include="dllmain.cpp" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="WinObjC.Frameworks.Core" Version="*" /> | ||
<PackageReference Include="Nuget.Build.Packaging" Version="0.1.186" /> | ||
<PackageReference Include="WinObjC.Language" Version="*" /> | ||
</ItemGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
<Import Project="$(WINOBJC_SDK_ROOT)\common\winobjc.packagereference.override.targets" Condition="Exists('$(WINOBJC_SDK_ROOT)\common\winobjc.packagereference.override.targets')" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="Resource Files"> | ||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> | ||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tga;tiff;tif;png;wav;mfcribbon-ms</Extensions> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\InteropBase.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\RTHelpers.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelpers.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelperCommonConvertors.h" /> | ||
<ClInclude Include="$(WINOBJC_SDK_ROOT)\include\Platform\$(TargetOsAndVersion)\UWP\ObjCHelperAsyncImplementation.h" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClangCompile Include="dllmain.cpp" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
<ClangCompile Include="src/*.mm" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="export.def" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//****************************************************************************** | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// | ||
// This code is licensed under the MIT License (MIT). | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
//****************************************************************************** | ||
|
||
#include <Windows.h> | ||
|
||
BOOL APIENTRY DllMain(HMODULE hDLL, DWORD ul_reason_for_call, LPVOID /* lpReserved */) { | ||
switch (ul_reason_for_call) { | ||
case DLL_PROCESS_ATTACH: | ||
DisableThreadLibraryCalls(hDLL); | ||
break; | ||
} | ||
|
||
return TRUE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
LIBRARY RTObjCInterop | ||
EXPORTS | ||
rt_dynamic_cast | ||
fastEnumArrayImpl | ||
fastEnumIteratorImpl | ||
SizeByEnumeration | ||
getPropertyValueArrayInfo | ||
convertNSDictionaryToPropertySet | ||
convertNSErrorToPropertySet | ||
convertPropertySetToNSDictionary | ||
propertyValueCreator | ||
convertNSDateToWinRT | ||
convertWinRTToNSDate | ||
convertNSURLToWinRTStorageFile | ||
convertNSURLToWinRTUri | ||
convertWinRTStorageFileToNSURL | ||
convertWinRTUriToNSURL | ||
convertNSNumberToPropertyValue | ||
convertNSStringToPropertyValue | ||
_OBJC_CLASS_RTObject DATA | ||
__objc_class_name_RTObject CONSTANT | ||
_OBJC_CLASS_WFGUID DATA | ||
__objc_class_name_WFGUID CONSTANT | ||
_OBJC_CLASS_RTKeyValuePair DATA | ||
__objc_class_name_RTKeyValuePair CONSTANT | ||
_OBJC_CLASS_ListenerMgr DATA | ||
__objc_class_name_ListenerMgr CONSTANT | ||
_OBJC_CLASS_RTProxiedNSArray DATA | ||
__objc_class_name_RTProxiedNSArray CONSTANT | ||
_OBJC_CLASS_RTProxiedNSArrayFull DATA | ||
__objc_class_name_RTProxiedNSArrayFull CONSTANT | ||
_OBJC_CLASS_RTProxiedNSMutableArray DATA | ||
__objc_class_name_RTProxiedNSMutableArray CONSTANT | ||
_OBJC_CLASS_RTProxiedNSMutableArrayFull DATA | ||
__objc_class_name_RTProxiedNSMutableArrayFull CONSTANT | ||
_OBJC_CLASS_RTProxiedIterableNSArray DATA | ||
__objc_class_name_RTProxiedIterableNSArray CONSTANT | ||
_OBJC_CLASS_RTProxiedIterableNSArrayFull DATA | ||
__objc_class_name_RTProxiedIterableNSArrayFull CONSTANT | ||
_OBJC_CLASS_RTProxiedNSDictionaryKeyEnumerator DATA | ||
__objc_class_name_RTProxiedNSDictionaryKeyEnumerator CONSTANT | ||
_OBJC_CLASS_RTProxiedNSDictionary DATA | ||
__objc_class_name_RTProxiedNSDictionary CONSTANT | ||
_OBJC_CLASS_RTProxiedNSMutableDictionary DATA | ||
__objc_class_name_RTProxiedNSMutableDictionary CONSTANT | ||
_OBJC_CLASS_RTProxiedKeyValuePair DATA | ||
__objc_class_name_RTProxiedKeyValuePair CONSTANT | ||
_OBJC_CLASS_RTProxiedObservableNSMutableArray DATA | ||
__objc_class_name_RTProxiedObservableNSMutableArray CONSTANT | ||
_OBJC_CLASS_RTProxiedObservableNSMutableDictionary DATA | ||
__objc_class_name_RTProxiedObservableNSMutableDictionary CONSTANT | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this repeated so many times?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which one? codeflow isn't being nice here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<ClangCompile Include="src/*.mm" />
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LOL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LOL inherited;P can fix that up