1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 6 <Platform>Win32</Platform> 7 </ProjectConfiguration> 8 </ItemGroup> 9 <PropertyGroup Label="Globals"> 10 <VCProjectVersion>16.0</VCProjectVersion> 11 <Keyword>Win32Proj</Keyword> 12 <ProjectGuid>{9a8fd41d-dd8d-42c0-825a-266aebd15c99}</ProjectGuid> 13 <RootNamespace>JobsDemo</RootNamespace> 14 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 15 </PropertyGroup> 16 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 17 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 18 <ConfigurationType>Application</ConfigurationType> 19 <UseDebugLibraries>true</UseDebugLibraries> 20 <PlatformToolset>v142</PlatformToolset> 21 <CharacterSet>Unicode</CharacterSet> 22 <PreferredToolArchitecture>x86</PreferredToolArchitecture> 23 </PropertyGroup> 24 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 25 <ImportGroup Label="ExtensionSettings"> 26 </ImportGroup> 27 <ImportGroup Label="Shared"> 28 </ImportGroup> 29 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 30 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 31 </ImportGroup> 32 <PropertyGroup Label="UserMacros" /> 33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 34 <LinkIncremental>true</LinkIncremental> 35 </PropertyGroup> 36 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 37 <ClCompile> 38 <WarningLevel>Level3</WarningLevel> 39 <SDLCheck>true</SDLCheck> 40 <PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;_DEBUG;_CONSOLE;MBEDTLS_CONFIG_FILE="mbedtls_config_v3.5.1.h";%(PreprocessorDefinitions)</PreprocessorDefinitions> 41 <ConformanceMode>true</ConformanceMode> 42 <AdditionalIncludeDirectories>.\;..\..\Mqtt_Demo_Helpers;..\..\..\..\Source\AWS\jobs\source\include;..\..\..\..\Source\Application-Protocols\coreMQTT\source\interface;..\..\..\..\Source\Application-Protocols\coreMQTT\source\include;..\..\..\..\Source\coreJSON\source\include;..\..\..\..\Source\Application-Protocols\network_transport\tcp_sockets_wrapper\include;..\..\..\..\Source\Utilities\backoff_algorithm\source\include;..\..\..\..\Source\Application-Protocols\network_transport;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 43 </ClCompile> 44 <Link> 45 <SubSystem>Console</SubSystem> 46 <GenerateDebugInformation>true</GenerateDebugInformation> 47 </Link> 48 </ItemDefinitionGroup> 49 <ItemGroup> 50 <ProjectReference Include="..\..\..\..\VisualStudio_StaticProjects\FreeRTOS+TCP\FreeRTOS+TCP.vcxproj"> 51 <Project>{c90e6cc5-818b-4c97-8876-0986d989387c}</Project> 52 </ProjectReference> 53 <ProjectReference Include="..\..\..\..\VisualStudio_StaticProjects\FreeRTOS-Kernel\FreeRTOS-Kernel.vcxproj"> 54 <Project>{72c209c4-49a4-4942-a201-44706c9d77ec}</Project> 55 </ProjectReference> 56 <ProjectReference Include="..\..\..\..\VisualStudio_StaticProjects\Logging\Logging.vcxproj"> 57 <Project>{be362ac0-b10b-4276-b84e-6304652ba228}</Project> 58 </ProjectReference> 59 <ProjectReference Include="..\..\..\..\VisualStudio_StaticProjects\MbedTLS\MbedTLS.vcxproj"> 60 <Project>{e1016f3e-94e9-4864-9fd8-1d7c1fefbfd7}</Project> 61 </ProjectReference> 62 </ItemGroup> 63 <ItemGroup> 64 <ClCompile Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\core_mqtt.c" /> 65 <ClCompile Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\core_mqtt_serializer.c" /> 66 <ClCompile Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\core_mqtt_state.c" /> 67 <ClCompile Include="..\..\..\..\Source\Application-Protocols\network_transport\mbedtls_bio_tcp_sockets_wrapper.c" /> 68 <ClCompile Include="..\..\..\..\Source\Application-Protocols\network_transport\tcp_sockets_wrapper\ports\freertos_plus_tcp\tcp_sockets_wrapper.c" /> 69 <ClCompile Include="..\..\..\..\Source\Application-Protocols\network_transport\transport_mbedtls.c" /> 70 <ClCompile Include="..\..\..\..\Source\AWS\jobs\source\jobs.c" /> 71 <ClCompile Include="..\..\..\..\Source\coreJSON\source\core_json.c" /> 72 <ClCompile Include="..\..\..\..\Source\Utilities\backoff_algorithm\source\backoff_algorithm.c" /> 73 <ClCompile Include="..\..\Mqtt_Demo_Helpers\mqtt_demo_helpers.c" /> 74 <ClCompile Include="DemoTasks\JobsDemoExample.c" /> 75 <ClCompile Include="main.c" /> 76 </ItemGroup> 77 <ItemGroup> 78 <ClInclude Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\include\core_mqtt.h" /> 79 <ClInclude Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\include\core_mqtt_config_defaults.h" /> 80 <ClInclude Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\include\core_mqtt_serializer.h" /> 81 <ClInclude Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\include\core_mqtt_state.h" /> 82 <ClInclude Include="..\..\..\..\Source\Application-Protocols\coreMQTT\source\interface\transport_interface.h" /> 83 <ClInclude Include="..\..\..\..\Source\Application-Protocols\network_transport\mbedtls_bio_tcp_sockets_wrapper.h" /> 84 <ClInclude Include="..\..\..\..\Source\Application-Protocols\network_transport\tcp_sockets_wrapper\include\tcp_sockets_wrapper.h" /> 85 <ClInclude Include="..\..\..\..\Source\Application-Protocols\network_transport\transport_mbedtls.h" /> 86 <ClInclude Include="..\..\..\..\Source\AWS\jobs\source\include\jobs.h" /> 87 <ClInclude Include="..\..\..\..\Source\coreJSON\source\include\core_json.h" /> 88 <ClInclude Include="..\..\..\..\Source\Utilities\backoff_algorithm\source\include\backoff_algorithm.h" /> 89 <ClInclude Include="..\..\Mqtt_Demo_Helpers\mqtt_demo_helpers.h" /> 90 <ClInclude Include="core_mqtt_config.h" /> 91 <ClInclude Include="demo_config.h" /> 92 </ItemGroup> 93 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 94 <ImportGroup Label="ExtensionTargets"> 95 </ImportGroup> 96</Project>