Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Creating and Debuging a new module #2

Closed
asebak opened this issue May 4, 2016 · 10 comments
Closed

Creating and Debuging a new module #2

asebak opened this issue May 4, 2016 · 10 comments

Comments

@asebak
Copy link

asebak commented May 4, 2016

I really like what I have seen in the iot gateway sdk. Question: Since it's not explained in the documentation, what is the best approach for creating a custom module and debugging it?

@asebak
Copy link
Author

asebak commented May 4, 2016

I don't know if you guys are using visual studio or recommend using something else?

@aribeironovaes
Copy link
Contributor

Hi Ahmad,
We have been using Visual Studio for windows and windbg for Linux.
As for new modules the best approach would be taking a look into our existing ones (hello world and logger are the simplest than you can take a look into BLE Module and IotHub) and create a custom one based on that. 
Let us know how it goes!
Thanks,
Angelo Ribeiro
Sent from Outlook Mobile

_____________________________

From: Ahmad notifications@github.com
Sent: Tuesday, May 3, 2016 10:40 PM
Subject: Re: [Azure/azure-iot-gateway-sdk] Creating and Debuging a new module (#2)
To: Azure/azure-iot-gateway-sdk azure-iot-gateway-sdk@noreply.github.com

I don't know if you guys are using visual studio or recommend using something else?


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub

@aribeironovaes
Copy link
Contributor

Sorry for the typo, I meant wingdb for linux :) 
Thanks
Angelo Ribeiro

Sent from Outlook Mobile

On Tue, May 3, 2016 at 10:40 PM -0700, "Ahmad" notifications@github.com wrote:

I don't know if you guys are using visual studio or recommend using something else?


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub

@andrew-buckley
Copy link
Contributor

Hi @asebak, thanks for the question. Sounds like you're developing in a Windows environment so I'd recommend using Visual Studio.

To add to Angelo's answer:

Our project uses CMake to generate Visual Studio project files and a solution file called azure_iot_gateway_sdk which may be of interest.

If it is of interest here's a bit more info: Opening that solution file will give you, among many other things, all of our samples and modules that we provide. I would suggest looking into the samples and the modules they use (start with the hello_world module), as well as the CMakeLists.txt files for the modules and samples if you are familiar with CMake. You could try either extending one of the samples or creating a new gateway project from there.

If you just want to take a stab at creating your own module and debugging it, try creating a module and extending one of our existing samples to use it and debug like you normally would.

You'll find a couple important things common across our modules and samples ...:

  1. The gateway reads in a JSON configuration file describing each module, the path to the .dll, and any arguments it might need. So any modules you add will need to be in the configuration for that gateway.
  2. Modules must implement the same interface as described here: Module Dev Doc. So be sure to follow this when creating your custom Modules.

Hope this helps!

@asebak
Copy link
Author

asebak commented May 4, 2016

Thanks a lot for the help you guys, out of curiosity are there any plans to integrate the SDK into a project template in Visual Studio?

@asebak
Copy link
Author

asebak commented May 4, 2016

image
When I try opening to the solution file I get all these errors. Should I be using visual studio 2015 or 2013? I had all the perquisites setup.

@andrew-buckley
Copy link
Contributor

Hey @asebak, cah you share what the errors are? We've been using VS 2015

@asebak
Copy link
Author

asebak commented May 4, 2016

agentmacros_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\agentmacros_unittests\agentmacros_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

agentmacros_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\agentmacros_unittests\agentmacros_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

agenttime_unittests_dll

Message

deps\azure-c-shared-utility\tests\agenttime_unittests\agenttime_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

agenttime_unittests_exe

Message

deps\azure-c-shared-utility\tests\agenttime_unittests\agenttime_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

agenttypesystem_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\agenttypesystem_unittests\agenttypesystem_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

agenttypesystem_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\agenttypesystem_unittests\agenttypesystem_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ALL_BUILD

Message

ALL_BUILD.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqp_frame_codec_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqp_frame_codec_unittests\amqp_frame_codec_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqp_frame_codec_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqp_frame_codec_unittests\amqp_frame_codec_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqpvalue_limits_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqpvalue_limits_unittests\amqpvalue_limits_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqpvalue_limits_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqpvalue_limits_unittests\amqpvalue_limits_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqpvalue_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqpvalue_unittests\amqpvalue_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

amqpvalue_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\amqpvalue_unittests\amqpvalue_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

aziotsharedutil

Message

deps\azure-c-shared-utility\aziotsharedutil.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

base64_unittests_dll

Message

deps\azure-c-shared-utility\tests\base64_unittests\base64_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

base64_unittests_exe

Message

deps\azure-c-shared-utility\tests\base64_unittests\base64_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble

Message

modules\ble\ble.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_gatt_io_unittests_dll

Message

modules\ble\tests\ble_gatt_io_unittests\ble_gatt_io_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_gatt_io_unittests_exe

Message

modules\ble\tests\ble_gatt_io_unittests\ble_gatt_io_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_hl

Message

modules\ble\ble_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_hl_static

Message

modules\ble\ble_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_hl_unittests_dll

Message

modules\ble\tests\ble_hl_unittests\ble_hl_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_hl_unittests_exe

Message

modules\ble\tests\ble_hl_unittests\ble_hl_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_static

Message

modules\ble\ble_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_unittests_dll

Message

modules\ble\tests\ble_unittests\ble_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ble_unittests_exe

Message

modules\ble\tests\ble_unittests\ble_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

bleio_seq_unittests_dll

Message

modules\ble\tests\bleio_seq_unittests\bleio_seq_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

bleio_seq_unittests_exe

Message

modules\ble\tests\bleio_seq_unittests\bleio_seq_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

buffer_unittests_dll

Message

deps\azure-c-shared-utility\tests\buffer_unittests\buffer_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

buffer_unittests_exe

Message

deps\azure-c-shared-utility\tests\buffer_unittests\buffer_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_cpp_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_cpp_unittests\codefirst_cpp_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_cpp_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_cpp_unittests\codefirst_cpp_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_unittests\codefirst_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_unittests\codefirst_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_withstructs_cpp_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_withstructs_cpp_unittests\codefirst_withstructs_cpp_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_withstructs_cpp_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_withstructs_cpp_unittests\codefirst_withstructs_cpp_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_withstructs_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_withstructs_unittests\codefirst_withstructs_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

codefirst_withstructs_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\codefirst_withstructs_unittests\codefirst_withstructs_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

commanddecoder_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\commanddecoder_unittests\commanddecoder_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

commanddecoder_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\commanddecoder_unittests\commanddecoder_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

condition_unittests_dll

Message

deps\azure-c-shared-utility\tests\condition_unittests\condition_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

condition_unittests_exe

Message

deps\azure-c-shared-utility\tests\condition_unittests\condition_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

connection_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\connection_unittests\connection_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

connection_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\connection_unittests\connection_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

constbuffer_unittests_dll

Message

deps\azure-c-shared-utility\tests\constbuffer_unittests\constbuffer_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

constbuffer_unittests_exe

Message

deps\azure-c-shared-utility\tests\constbuffer_unittests\constbuffer_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

constmap_unittests_dll

Message

deps\azure-c-shared-utility\tests\constmap_unittests\constmap_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

constmap_unittests_exe

Message

deps\azure-c-shared-utility\tests\constmap_unittests\constmap_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

Continuous

Message

Continuous.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

crt_abstractions_unittests_dll

Message

deps\azure-c-shared-utility\tests\crtabstractions_unittests\crt_abstractions_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

crt_abstractions_unittests_exe

Message

deps\azure-c-shared-utility\tests\crtabstractions_unittests\crt_abstractions_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ctest

Message

deps\azure-c-shared-utility\testtools\ctest\ctest.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ctest_unittests

Message

deps\azure-c-shared-utility\testtools\ctest\unittests\ctestunittests\ctest_unittests.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

datamarshaller_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\datamarshaller_unittests\datamarshaller_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

datamarshaller_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\datamarshaller_unittests\datamarshaller_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

datapublisher_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\datapublisher_unittests\datapublisher_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

datapublisher_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\datapublisher_unittests\datapublisher_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

doublylinkedlist_unittests_dll

Message

deps\azure-c-shared-utility\tests\doublylinkedlist_unittests\doublylinkedlist_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

doublylinkedlist_unittests_exe

Message

deps\azure-c-shared-utility\tests\doublylinkedlist_unittests\doublylinkedlist_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

dynamic_library_unittests_dll

Message

core\tests\dynamic_library_unittests\dynamic_library_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

dynamic_library_unittests_exe

Message

core\tests\dynamic_library_unittests\dynamic_library_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

eh_sender_with_sas_token_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\eh_sender_with_sas_token_sample\eh_sender_with_sas_token_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

Experimental

Message

Experimental.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

frame_codec_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\frame_codec_unittests\frame_codec_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

frame_codec_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\frame_codec_unittests\frame_codec_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gateway

Message

core\gateway.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gateway_ll_unittests_dll

Message

core\tests\gateway_ll_unittests\gateway_ll_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gateway_ll_unittests_exe

Message

core\tests\gateway_ll_unittests\gateway_ll_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gateway_unittests_dll

Message

core\tests\gateway_unittests\gateway_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gateway_unittests_exe

Message

core\tests\gateway_unittests\gateway_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gballoc_unittests_dll

Message

deps\azure-c-shared-utility\tests\gballoc_unittests\gballoc_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gballoc_unittests_exe

Message

deps\azure-c-shared-utility\tests\gballoc_unittests\gballoc_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gballoc_without_init_unittests_dll

Message

deps\azure-c-shared-utility\tests\gballoc_without_init_unittests\gballoc_without_init_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gballoc_without_init_unittests_exe

Message

deps\azure-c-shared-utility\tests\gballoc_without_init_unittests\gballoc_without_init_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gwmessage_unittests_dll

Message

core\tests\gwmessage_unittests\gwmessage_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

gwmessage_unittests_exe

Message

core\tests\gwmessage_unittests\gwmessage_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hello_world

Message

modules\hello_world\hello_world.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hello_world_hl

Message

modules\hello_world\hello_world_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hello_world_hl_static

Message

modules\hello_world\hello_world_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hello_world_sample

Message

samples\hello_world\hello_world_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hello_world_static

Message

modules\hello_world\hello_world_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hmacsha256_unittests_dll

Message

deps\azure-c-shared-utility\tests\hmacsha256_unittests\hmacsha256_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

hmacsha256_unittests_exe

Message

deps\azure-c-shared-utility\tests\hmacsha256_unittests\hmacsha256_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpapiex_unittests_dll

Message

deps\azure-c-shared-utility\tests\httpapiex_unittests\httpapiex_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpapiex_unittests_exe

Message

deps\azure-c-shared-utility\tests\httpapiex_unittests\httpapiex_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpapiexsas_unittests_dll

Message

deps\azure-c-shared-utility\tests\httpapiexsas_unittests\httpapiexsas_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpapiexsas_unittests_exe

Message

deps\azure-c-shared-utility\tests\httpapiexsas_unittests\httpapiexsas_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpheaders_unittests_dll

Message

deps\azure-c-shared-utility\tests\httpheaders_unittests\httpheaders_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

httpheaders_unittests_exe

Message

deps\azure-c-shared-utility\tests\httpheaders_unittests\httpheaders_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identity_map

Message

modules\identitymap\identity_map.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identity_map_hl

Message

modules\identitymap\identity_map_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identity_map_hl_static

Message

modules\identitymap\identity_map_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identity_map_static

Message

modules\identitymap\identity_map_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identitymap_hl_unittests_dll

Message

modules\identitymap\tests\idmap_hl_unittests\identitymap_hl_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identitymap_hl_unittests_exe

Message

modules\identitymap\tests\idmap_hl_unittests\identitymap_hl_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identitymap_unittests_dll

Message

modules\identitymap\tests\idmap_unittests\identitymap_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

identitymap_unittests_exe

Message

modules\identitymap\tests\idmap_unittests\identitymap_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iotdevice_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\iotdevice_unittests\iotdevice_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iotdevice_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\iotdevice_unittests\iotdevice_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client

Message

deps\azure-iot-sdks\c\iothub_client\iothub_client.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_amqp_transport

Message

deps\azure-iot-sdks\c\iothub_client\iothub_client_amqp_transport.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_http_transport

Message

deps\azure-iot-sdks\c\iothub_client\iothub_client_http_transport.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_mqtt_transport

Message

deps\azure-iot-sdks\c\iothub_client\iothub_client_mqtt_transport.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_sample_amqp

Message

deps\azure-iot-sdks\c\iothub_client\samples\iothub_client_sample_amqp\iothub_client_sample_amqp.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_sample_http

Message

deps\azure-iot-sdks\c\iothub_client\samples\iothub_client_sample_http\iothub_client_sample_http.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_sample_http_shared

Message

deps\azure-iot-sdks\c\iothub_client\samples\iothub_client_sample_http_shared\iothub_client_sample_http_shared.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothub_client_sample_mqtt

Message

deps\azure-iot-sdks\c\iothub_client\samples\iothub_client_sample_mqtt\iothub_client_sample_mqtt.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubclient_ll_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubclient_ll_unittests\iothubclient_ll_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubclient_ll_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubclient_ll_unittests\iothubclient_ll_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubclient_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubclient_unittests\iothubclient_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubclient_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubclient_unittests\iothubclient_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp

Message

modules\iothubhttp\iothubhttp.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_hl

Message

modules\iothubhttp\iothubhttp_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_hl_static

Message

modules\iothubhttp\iothubhttp_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_hl_unittests_dll

Message

modules\iothubhttp\tests\iothubhttp_hl_unittests\iothubhttp_hl_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_hl_unittests_exe

Message

modules\iothubhttp\tests\iothubhttp_hl_unittests\iothubhttp_hl_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_static

Message

modules\iothubhttp\iothubhttp_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_unittests_dll

Message

modules\iothubhttp\tests\iothubhttp_unittests\iothubhttp_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubhttp_unittests_exe

Message

modules\iothubhttp\tests\iothubhttp_unittests\iothubhttp_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubmessage_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubmessage_unittests\iothubmessage_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubmessage_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubmessage_unittests\iothubmessage_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransport_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransport_unittests\iothubtransport_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransport_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransport_unittests\iothubtransport_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransportamqp_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransportamqp_unittests\iothubtransportamqp_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransportamqp_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransportamqp_unittests\iothubtransportamqp_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransporthttp_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransporthttp_unittests\iothubtransporthttp_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransporthttp_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransporthttp_unittests\iothubtransporthttp_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransportmqtt_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransportmqtt_unittests\iothubtransportmqtt_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

iothubtransportmqtt_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\iothubtransportmqtt_unittests\iothubtransportmqtt_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

jsondecoder_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\jsondecoder_unittests\jsondecoder_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

jsondecoder_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\jsondecoder_unittests\jsondecoder_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

jsonencoder_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\jsonencoder_unittests\jsonencoder_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

jsonencoder_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\jsonencoder_unittests\jsonencoder_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

list_unittests_dll

Message

deps\azure-c-shared-utility\tests\list_unittests\list_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

list_unittests_exe

Message

deps\azure-c-shared-utility\tests\list_unittests\list_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

local_client_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\local_client_sample\local_client_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

local_server_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\local_server_sample\local_server_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

lock_unittests_dll

Message

deps\azure-c-shared-utility\tests\lock_unittests\lock_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

lock_unittests_exe

Message

deps\azure-c-shared-utility\tests\lock_unittests\lock_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger

Message

modules\logger\logger.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_hl

Message

modules\logger\logger_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_hl_static

Message

modules\logger\logger_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_hl_unittests_dll

Message

modules\logger\tests\logger_hl_unittests\logger_hl_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_hl_unittests_exe

Message

modules\logger\tests\logger_hl_unittests\logger_hl_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_static

Message

modules\logger\logger_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_unittests_dll

Message

modules\logger\tests\logger_unittests\logger_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

logger_unittests_exe

Message

modules\logger\tests\logger_unittests\logger_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

map_unittests_dll

Message

deps\azure-c-shared-utility\tests\map_unittests\map_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

map_unittests_exe

Message

deps\azure-c-shared-utility\tests\map_unittests\map_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_bus_unittests_dll

Message

core\tests\message_bus_unittests\message_bus_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_bus_unittests_exe

Message

core\tests\message_bus_unittests\message_bus_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_receiver_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\message_receiver_sample\message_receiver_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_sender_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\message_sender_sample\message_sender_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\message_unittests\message_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

message_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\message_unittests\message_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

micromock_cpp_unittest

Message

deps\azure-c-shared-utility\testtools\micromock\micromock_cpp_unittest.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

micromock_ctest

Message

deps\azure-c-shared-utility\testtools\micromock\micromock_ctest.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

micromock_generator

Message

deps\azure-c-shared-utility\testtools\micromock\micromock_generator.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

micromock_unittests_dll

Message

deps\azure-c-shared-utility\testtools\micromock\unittests\micromocktest\micromock_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

micromock_unittests_exe

Message

deps\azure-c-shared-utility\testtools\micromock\unittests\micromocktest\micromock_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

module_loader_unittests_dll

Message

core\tests\module_loader_unittests\module_loader_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

module_loader_unittests_exe

Message

core\tests\module_loader_unittests\module_loader_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_client_sample

Message

deps\azure-iot-sdks\c\azure-umqtt-c\samples\mqtt_client_sample\mqtt_client_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_client_unittests_dll

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_client_unittests\mqtt_client_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_client_unittests_exe

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_client_unittests\mqtt_client_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_codec_unittests_dll

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_codec_unittests\mqtt_codec_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_codec_unittests_exe

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_codec_unittests\mqtt_codec_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_message_unittests_dll

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_message_unittests\mqtt_message_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mqtt_message_unittests_exe

Message

deps\azure-iot-sdks\c\azure-umqtt-c\tests\mqtt_message_unittests\mqtt_message_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

mssbcbs_sample

Message

deps\azure-iot-sdks\c\azure-uamqp-c\samples\mssbcbs_sample\mssbcbs_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

multitree_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\multitree_unittests\multitree_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

multitree_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\multitree_unittests\multitree_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

Nightly

Message

Nightly.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

NightlyMemoryCheck

Message

NightlyMemoryCheck.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

parson

Message

core\deps\parson.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

refcount_unittests_dll

Message

deps\azure-c-shared-utility\tests\refcount_unittests\refcount_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

refcount_unittests_exe

Message

deps\azure-c-shared-utility\tests\refcount_unittests\refcount_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

remote_monitoring

Message

deps\azure-iot-sdks\c\serializer\samples\remote_monitoring\remote_monitoring.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

RUN_TESTS

Message

RUN_TESTS.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_anonymous_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_anonymous_unittests\sasl_anonymous_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_anonymous_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_anonymous_unittests\sasl_anonymous_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_frame_codec_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_frame_codec_unittests\sasl_frame_codec_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_frame_codec_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_frame_codec_unittests\sasl_frame_codec_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_mechanism_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_mechanism_unittests\sasl_mechanism_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_mechanism_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_mechanism_unittests\sasl_mechanism_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_plain_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_plain_unittests\sasl_plain_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sasl_plain_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\sasl_plain_unittests\sasl_plain_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

saslclientio_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\saslclientio_unittests\saslclientio_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

saslclientio_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\saslclientio_unittests\saslclientio_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sastoken_unittests_dll

Message

deps\azure-c-shared-utility\tests\sastoken_unittests\sastoken_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

sastoken_unittests_exe

Message

deps\azure-c-shared-utility\tests\sastoken_unittests\sastoken_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schema_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\schema_unittests\schema_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schema_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\schema_unittests\schema_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemalib_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\schemalib_unittests\schemalib_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemalib_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\schemalib_unittests\schemalib_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemalib_without_init_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\schemalib_without_init_unittests\schemalib_without_init_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemalib_without_init_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\schemalib_without_init_unittests\schemalib_without_init_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemaserializer_unittests_dll

Message

deps\azure-iot-sdks\c\serializer\tests\schemaserializer_unittests\schemaserializer_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

schemaserializer_unittests_exe

Message

deps\azure-iot-sdks\c\serializer\tests\schemaserializer_unittests\schemaserializer_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

serializer

Message

deps\azure-iot-sdks\c\serializer\serializer.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

session_unittests_dll

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\session_unittests\session_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

session_unittests_exe

Message

deps\azure-iot-sdks\c\azure-uamqp-c\tests\session_unittests\session_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simplesample_amqp

Message

deps\azure-iot-sdks\c\serializer\samples\simplesample_amqp\simplesample_amqp.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simplesample_http

Message

deps\azure-iot-sdks\c\serializer\samples\simplesample_http\simplesample_http.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simplesample_mqtt

Message

deps\azure-iot-sdks\c\serializer\samples\simplesample_mqtt\simplesample_mqtt.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simulated_device

Message

modules\simulated_device\simulated_device.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simulated_device_cloud_upload_sample

Message

samples\simulated_device_cloud_upload\simulated_device_cloud_upload_sample.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simulated_device_hl

Message

modules\simulated_device\simulated_device_hl.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simulated_device_hl_static

Message

modules\simulated_device\simulated_device_hl_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

simulated_device_static

Message

modules\simulated_device\simulated_device_static.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

socketio_win32_unittests_dll

Message

deps\azure-c-shared-utility\tests\socketio_win32_unittests\socketio_win32_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

socketio_win32_unittests_exe

Message

deps\azure-c-shared-utility\tests\socketio_win32_unittests\socketio_win32_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

string_tokenizer_unittests_dll

Message

deps\azure-c-shared-utility\tests\string_tokenizer_unittests\string_tokenizer_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

string_tokenizer_unittests_exe

Message

deps\azure-c-shared-utility\tests\string_tokenizer_unittests\string_tokenizer_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

strings_unittests_dll

Message

deps\azure-c-shared-utility\tests\strings_unittests\strings_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

strings_unittests_exe

Message

deps\azure-c-shared-utility\tests\strings_unittests\strings_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

temp_sensor_anomaly

Message

deps\azure-iot-sdks\c\serializer\samples\temp_sensor_anomaly\temp_sensor_anomaly.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

testrunnerswitcher

Message

deps\azure-c-shared-utility\testtools\testrunnerswitcher\testrunnerswitcher.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

tickcounter_unittests_dll

Message

deps\azure-c-shared-utility\tests\tickcounter_unittests\tickcounter_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

tickcounter_unittests_exe

Message

deps\azure-c-shared-utility\tests\tickcounter_unittests\tickcounter_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

uamqp

Message

deps\azure-iot-sdks\c\azure-uamqp-c\uamqp.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umock_c

Message

deps\azure-c-shared-utility\testtools\umock_c\umock_c.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umock_c_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umock_c_unittests\umock_c_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umock_c_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umock_c_unittests\umock_c_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umock_c_without_init_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umock_c_without_init_unittests\umock_c_without_init_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umock_c_without_init_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umock_c_without_init_unittests\umock_c_without_init_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umockcall_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umockcall_unittests\umockcall_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umockcall_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umockcall_unittests\umockcall_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umockcallrecorder_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umockcallrecorder_unittests\umockcallrecorder_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umockcallrecorder_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umockcallrecorder_unittests\umockcallrecorder_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypename_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypename_unittests\umocktypename_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypename_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypename_unittests\umocktypename_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_c_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_c_unittests\umocktypes_c_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_c_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_c_unittests\umocktypes_c_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_charptr_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_charptr_unittests\umocktypes_charptr_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_charptr_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_charptr_unittests\umocktypes_charptr_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_unittests\umocktypes_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_unittests\umocktypes_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_without_init_unittests_dll

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_without_init_unittests\umocktypes_without_init_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umocktypes_without_init_unittests_exe

Message

deps\azure-c-shared-utility\testtools\umock_c\tests\umocktypes_without_init_unittests\umocktypes_without_init_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

umqtt

Message

deps\azure-iot-sdks\c\azure-umqtt-c\umqtt.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

uniqueid_unittests_dll

Message

deps\azure-c-shared-utility\tests\uniqueid_unittests\uniqueid_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

uniqueid_unittests_exe

Message

deps\azure-c-shared-utility\tests\uniqueid_unittests\uniqueid_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

urlencode_unittests_dll

Message

deps\azure-c-shared-utility\tests\urlencode_unittests\urlencode_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

urlencode_unittests_exe

Message

deps\azure-c-shared-utility\tests\urlencode_unittests\urlencode_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

vector_unittests_dll

Message

deps\azure-c-shared-utility\tests\vector_unittests\vector_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

vector_unittests_exe

Message

deps\azure-c-shared-utility\tests\vector_unittests\vector_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

version_unittests_dll

Message

deps\azure-iot-sdks\c\iothub_client\tests\version_unittests\version_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

version_unittests_exe

Message

deps\azure-iot-sdks\c\iothub_client\tests\version_unittests\version_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

whentestfunctioninitializefailstests

Message

deps\azure-c-shared-utility\testtools\ctest\unittests\ctestunittests\whentestfunctioninitializefailstests.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

whentestsuiteinitializefailstests

Message

deps\azure-c-shared-utility\testtools\ctest\unittests\ctestunittests\whentestsuiteinitializefailstests.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

xio_unittests_dll

Message

deps\azure-c-shared-utility\tests\xio_unittests\xio_unittests_dll.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

xio_unittests_exe

Message

deps\azure-c-shared-utility\tests\xio_unittests\xio_unittests_exe.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

ZERO_CHECK

Message

ZERO_CHECK.vcxproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkId=628321&projecttype=8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942

@avranju
Copy link
Contributor

avranju commented May 5, 2016

@asebak It's strange that VS was attempting to perform a project migration at all for you. CMake should have generated the VS project files directly in the format expected by the version of VS you have installed.

One possibility might be that you have both VS 2013 and VS 2015 installed and you ran CMake from a VS 2013 developer command prompt and opened the generated solution file from VS 2015. If that's the case, please attempt to generate the solution files from a VS 2015 command prompt before opening the solution in VS 2015.

@asebak
Copy link
Author

asebak commented May 5, 2016

I managed to get it working by reinstalling vs, I will close this issue now.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants