diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index a896cb635..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,65 +0,0 @@ -# -# Copyright (c) 2016, The OpenThread Authors. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the -# names of its contributors may be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# - -version: 0.1.{build} -image: Visual Studio 2015 -configuration: -- Release -platform: -- x64 -- x86 -- arm -clone_depth: 10 -install: - - cmd: Bcdedit.exe -set TESTSIGNING ON - # Configure logging - - cmd: reg import tools\windows\ThreadEtw.reg - - ps: Restart-Computer -Force - - ps: Start-Sleep -s 10 -before_build: - - cmd: ren "C:\Program Files (x86)\Windows Kits\10\include\00wdf" "wdf" -build: - project: etc/visual-studio/openthread.sln - verbosity: minimal -after_build: - - ps: $env:Platform2 = $env:Platform - - ps: If ($env:Platform2 -eq "x86") { $env:Platform2 = "Win32" } - # Set up the release directories - - cmd: .appveyor\make_release.cmd - # Install driver (only runs on x64) - - cmd: .appveyor\install_driver.cmd -test_script: - # Run the unit tests - - cmd: .appveyor\run_unit_tests.cmd - # Run the tests for the driver (only runs on x64) - #- cmd: .appveyor\test_driver.cmd -artifacts: -- path: release - name: release -- path: build\bin\AppPackages - name: app diff --git a/.appveyor/install_driver.cmd b/.appveyor/install_driver.cmd deleted file mode 100644 index 73e0742a8..000000000 --- a/.appveyor/install_driver.cmd +++ /dev/null @@ -1,43 +0,0 @@ -REM -REM Copyright (c) 2016, The OpenThread Authors. -REM All rights reserved. -REM -REM Redistribution and use in source and binary forms, with or without -REM modification, are permitted provided that the following conditions are met: -REM 1. Redistributions of source code must retain the above copyright -REM notice, this list of conditions and the following disclaimer. -REM 2. Redistributions in binary form must reproduce the above copyright -REM notice, this list of conditions and the following disclaimer in the -REM documentation and/or other materials provided with the distribution. -REM 3. Neither the name of the copyright holder nor the -REM names of its contributors may be used to endorse or promote products -REM derived from this software without specific prior written permission. -REM -REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -REM ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -REM LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -REM CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -REM SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -REM INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -REM CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -REM ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -REM POSSIBILITY OF SUCH DAMAGE. -REM - -IF NOT "%Platform%"=="x64" GOTO :EOF - -pushd %APPVEYOR_BUILD_FOLDER%\build\bin\%Platform2%\%Configuration%\sys - -REM Install the certifications to the cert stores -certutil -addstore root otLwf.cer -certutil -addstore TrustedPublisher otLwf.cer - -cd otLwf - -REM Install the NDIS LWF driver, otLwf.sys - -netcfg.exe -v -l otlwf.inf -c s -i otLwf - -popd \ No newline at end of file diff --git a/.appveyor/make_release.cmd b/.appveyor/make_release.cmd deleted file mode 100644 index 8ecf68c33..000000000 --- a/.appveyor/make_release.cmd +++ /dev/null @@ -1,87 +0,0 @@ -REM -REM Copyright (c) 2016, The OpenThread Authors. -REM All rights reserved. -REM -REM Redistribution and use in source and binary forms, with or without -REM modification, are permitted provided that the following conditions are met: -REM 1. Redistributions of source code must retain the above copyright -REM notice, this list of conditions and the following disclaimer. -REM 2. Redistributions in binary form must reproduce the above copyright -REM notice, this list of conditions and the following disclaimer in the -REM documentation and/or other materials provided with the distribution. -REM 3. Neither the name of the copyright holder nor the -REM names of its contributors may be used to endorse or promote products -REM derived from this software without specific prior written permission. -REM -REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -REM ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -REM LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -REM CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -REM SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -REM INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -REM CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -REM ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -REM POSSIBILITY OF SUCH DAMAGE. -REM - -pushd %APPVEYOR_BUILD_FOLDER% - -REM Make the release directories -mkdir release -mkdir release\include -mkdir release\include\openthread\ -mkdir release\include\openthread\missing -mkdir release\include\openthread\platform -mkdir release\libs -mkdir release\symbols -mkdir release\symbols\TraceFormat - -REM Copy the relavant include headers - -copy include\openthread\commissioner.h release\include\openthread -copy include\openthread\dataset.h release\include\openthread -copy include\openthread\error.h release\include\openthread -copy include\openthread\instance.h release\include\openthread -copy include\openthread\ip6.h release\include\openthread -copy include\openthread\joiner.h release\include\openthread -copy include\openthread\link.h release\include\openthread -copy include\openthread\message.h release\include\openthread -copy include\openthread\netdata.h release\include\openthread -copy include\openthread\thread.h release\include\openthread -copy include\openthread\types.h release\include\openthread -copy include\openthread\platform\toolchain.h release\include\openthread\platform -copy src\missing\stdbool\stdbool.h release\include\openthread\missing -copy src\missing\stdint\stdint.h release\include\openthread\missing - -REM Copy the relavant binaries - -copy build\bin\%Platform2%\%Configuration%\sys\otlwf\* release -copy build\bin\%Platform2%\%Configuration%\sys\otlwf.cer release -copy build\bin\%Platform2%\%Configuration%\sys\otlwf.pdb release\symbols -copy build\bin\%Platform2%\%Configuration%\sys\ottmp\* release -copy build\bin\%Platform2%\%Configuration%\sys\ottmp.cer release -copy build\bin\%Platform2%\%Configuration%\sys\ottmp.pdb release\symbols -copy build\bin\%Platform2%\%Configuration%\dll\otApi.dll release -copy build\bin\%Platform2%\%Configuration%\dll\otApi.lib release\libs -copy build\bin\%Platform2%\%Configuration%\dll\otApi.pdb release\symbols -copy build\bin\%Platform2%\%Configuration%\dll\otNodeApi.dll release -copy build\bin\%Platform2%\%Configuration%\dll\otNodeApi.lib release\libs -copy build\bin\%Platform2%\%Configuration%\dll\otNodeApi.pdb release\symbols -copy build\bin\%Platform2%\%Configuration%\exe\otCli.exe release -copy build\bin\%Platform2%\%Configuration%\exe\otCli.pdb release\symbols -copy build\bin\%Platform2%\%Configuration%\exe\otTestRunner.exe release -copy build\bin\%Platform2%\%Configuration%\exe\otTestRunner.pdb release\symbols - -REM Copy the tools - -copy tools\windows\* release -copy tools\windows\%Platform%\otInstall.exe release -copy "C:\Program Files (x86)\Windows Kits\10\Tools\%Platform%\devcon.exe" release - -REM Generate the trace format files to decode the WPP logs - -"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\x64\TracePdb.exe" -f release\symbols\*.pdb -p release\symbols\TraceFormat - -popd \ No newline at end of file diff --git a/.appveyor/run_unit_tests.cmd b/.appveyor/run_unit_tests.cmd deleted file mode 100644 index c4f496c06..000000000 --- a/.appveyor/run_unit_tests.cmd +++ /dev/null @@ -1,31 +0,0 @@ -REM -REM Copyright (c) 2016, The OpenThread Authors. -REM All rights reserved. -REM -REM Redistribution and use in source and binary forms, with or without -REM modification, are permitted provided that the following conditions are met: -REM 1. Redistributions of source code must retain the above copyright -REM notice, this list of conditions and the following disclaimer. -REM 2. Redistributions in binary form must reproduce the above copyright -REM notice, this list of conditions and the following disclaimer in the -REM documentation and/or other materials provided with the distribution. -REM 3. Neither the name of the copyright holder nor the -REM names of its contributors may be used to endorse or promote products -REM derived from this software without specific prior written permission. -REM -REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -REM ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -REM LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -REM CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -REM SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -REM INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -REM CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -REM ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -REM POSSIBILITY OF SUCH DAMAGE. -REM - -IF "%Platform%"=="arm" GOTO :EOF - -vstest.console /logger:Appveyor /inIsolation /platform:%Platform% build\bin\%Platform2%\%Configuration%\dll\UnitTests.dll \ No newline at end of file diff --git a/.appveyor/test_driver.cmd b/.appveyor/test_driver.cmd deleted file mode 100644 index 74254195a..000000000 --- a/.appveyor/test_driver.cmd +++ /dev/null @@ -1,47 +0,0 @@ -REM -REM Copyright (c) 2016, The OpenThread Authors. -REM All rights reserved. -REM -REM Redistribution and use in source and binary forms, with or without -REM modification, are permitted provided that the following conditions are met: -REM 1. Redistributions of source code must retain the above copyright -REM notice, this list of conditions and the following disclaimer. -REM 2. Redistributions in binary form must reproduce the above copyright -REM notice, this list of conditions and the following disclaimer in the -REM documentation and/or other materials provided with the distribution. -REM 3. Neither the name of the copyright holder nor the -REM names of its contributors may be used to endorse or promote products -REM derived from this software without specific prior written permission. -REM -REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -REM ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -REM LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -REM CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -REM SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -REM INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -REM CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -REM ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -REM POSSIBILITY OF SUCH DAMAGE. -REM - -IF NOT "%Platform%"=="x64" GOTO :EOF - -pushd %APPVEYOR_BUILD_FOLDER%\release - -REM Query the driver state - -sc query otlwf - -REM Run the basic driver test - -otTestRunner.exe ..\tests\scripts\thread-cert Test_otLwf* appveyor - -REM Grab the logs - -mkdir logs -logman stop Thread -ets -copy %SystemRoot%\System32\LogFiles\WMI\Thread.* logs - -popd \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index eaad68cbe..a8c7a5efc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -36,10 +36,3 @@ configure.ac eol=lf Makefile.am eol=lf Makefile.in eol=lf Makefile eol=lf - -# Files normalized to always keep Windows line endings -*.vcxproj eol=crlf -*.vcxproj.filters eol=crlf -*.sln eol=crlf -*.rc text eol=crlf -*.inf text eol=crlf diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dcb76ee4c..71b7c2c0b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ The OpenThread Project follows the "Fork-and-Pull" model for accepting contribut Setup your GitHub fork and continuous-integration services: 1. Fork the [OpenThread repository](https://github.com/openthread/openthread) by clicking "Fork" on the web UI. -2. Enable [Travis CI](https://travis-ci.org/) and [AppVeyor](https://ci.appveyor.com/) by logging in the respective services with your GitHub account and enabling your newly created fork. We use Travis CI for Linux-based continuous integration checks and AppVeyor for Windows-based continuous integration checks. All contributions must pass these checks to be accepted. +2. Enable [Travis CI](https://travis-ci.org/) by logging in the respective service with your GitHub account and enabling your newly created fork. We use Travis CI for Linux-based continuous integration checks. All contributions must pass these checks to be accepted. Setup your local development environment: diff --git a/README.md b/README.md index feb262ad1..4366ebf83 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![OpenThread][ot-logo]][ot-repo] [![Build Status][ot-travis-svg]][ot-travis] -[![Build Status][ot-appveyor-svg]][ot-appveyor] [![Coverage Status][ot-codecov-svg]][ot-codecov] [![Build Status][ot-docker-dev-svg]][ot-docker-dev] @@ -26,8 +25,6 @@ More information about Thread can be found at [threadgroup.org](http://threadgro [ot-logo]: doc/images/openthread_logo.png [ot-travis]: https://travis-ci.org/openthread/openthread [ot-travis-svg]: https://travis-ci.org/openthread/openthread.svg?branch=master -[ot-appveyor]: https://ci.appveyor.com/project/jwhui/openthread -[ot-appveyor-svg]: https://ci.appveyor.com/api/projects/status/r5qwyhn9p26nmfk3?svg=true [ot-codecov]: https://codecov.io/gh/openthread/openthread [ot-codecov-svg]: https://codecov.io/gh/openthread/openthread/branch/master/graph/badge.svg [ot-docker-dev]: https://hub.docker.com/r/openthread/environment @@ -35,7 +32,7 @@ More information about Thread can be found at [threadgroup.org](http://threadgro # Who supports OpenThread? -ARMCascodaGoogleMicrosoftNordicNXPParticleQorvoQualcommSTMicroelectronicsSynopsysTexas InstrumentsZephyr Project +ARMCascodaGoogleNordicNXPParticleQorvoQualcommSTMicroelectronicsSynopsysTexas InstrumentsZephyr Project # Getting started diff --git a/doc/images/windows-app-details.png b/doc/images/windows-app-details.png deleted file mode 100644 index a2977c1c1..000000000 Binary files a/doc/images/windows-app-details.png and /dev/null differ diff --git a/doc/images/windows-app-interface-list.png b/doc/images/windows-app-interface-list.png deleted file mode 100644 index 922b5f289..000000000 Binary files a/doc/images/windows-app-interface-list.png and /dev/null differ diff --git a/doc/images/windows-app-talk-client.png b/doc/images/windows-app-talk-client.png deleted file mode 100644 index b40c9a4ee..000000000 Binary files a/doc/images/windows-app-talk-client.png and /dev/null differ diff --git a/doc/images/windows-app-talk-server.png b/doc/images/windows-app-talk-server.png deleted file mode 100644 index 165689bc7..000000000 Binary files a/doc/images/windows-app-talk-server.png and /dev/null differ diff --git a/doc/images/windows_design.png b/doc/images/windows_design.png deleted file mode 100644 index c5fa3438e..000000000 Binary files a/doc/images/windows_design.png and /dev/null differ diff --git a/etc/visual-studio/Assets/LockScreenLogo.scale-200.png b/etc/visual-studio/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 2dedc71cf..000000000 Binary files a/etc/visual-studio/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/etc/visual-studio/Assets/SplashScreen.scale-200.png b/etc/visual-studio/Assets/SplashScreen.scale-200.png deleted file mode 100644 index af038b0b0..000000000 Binary files a/etc/visual-studio/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/etc/visual-studio/Assets/Square150x150Logo.scale-200.png b/etc/visual-studio/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index 5ae239d1b..000000000 Binary files a/etc/visual-studio/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/etc/visual-studio/Assets/Square44x44Logo.scale-200.png b/etc/visual-studio/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index 4e020dfbf..000000000 Binary files a/etc/visual-studio/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/etc/visual-studio/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/etc/visual-studio/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index 8b6f2df98..000000000 Binary files a/etc/visual-studio/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/etc/visual-studio/Assets/StoreLogo.png b/etc/visual-studio/Assets/StoreLogo.png deleted file mode 100644 index 7fa37c289..000000000 Binary files a/etc/visual-studio/Assets/StoreLogo.png and /dev/null differ diff --git a/etc/visual-studio/Assets/Wide310x150Logo.scale-200.png b/etc/visual-studio/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 25b80bbe4..000000000 Binary files a/etc/visual-studio/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/etc/visual-studio/OpenThread.vcxproj b/etc/visual-studio/OpenThread.vcxproj deleted file mode 100644 index ebdced03b..000000000 --- a/etc/visual-studio/OpenThread.vcxproj +++ /dev/null @@ -1,159 +0,0 @@ - - - - - {f8c22844-9b93-4978-80df-8af2b37a7abb} - ot - en-US - 14.0 - true - Windows Store - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - Application - true - v140 - - - Application - false - true - v140 - true - - - - - - - - - ..\..\examples\apps\windows\OpenThread_TemporaryKey.pfx - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\app\ - True - ..\..\build\bin\AppPackages\ - Never - - - - - %(PreprocessorDefinitions); - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - - /bigobj %(AdditionalOptions) - 4453;28204 - - %(AdditionalIncludeDirectories); - ..\..\examples\apps\windows; - ..\..\include; - - - - - %(AdditionalDependencies); - ..\..\build\bin\$(Platform)\$(Configuration)\dll\otApi.lib; - - - - - - - ..\..\examples\apps\windows\ClientControl.xaml - - - - - - - - - - - - - - - ..\..\examples\apps\windows\App.xaml - - - ..\..\examples\apps\windows\MainPage.xaml - - - ..\..\examples\apps\windows\ServerControl.xaml - - - - - - ..\..\examples\apps\windows\TalkGrid.xaml - - - - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - - - Designer - - - - - - - - - - - - - - - ..\..\examples\apps\windows\App.xaml - - - ..\..\examples\apps\windows\ClientControl.xaml - - - - - - ..\..\examples\apps\windows\MainPage.xaml - - - Create - - - ..\..\examples\apps\windows\ServerControl.xaml - - - - - ..\..\examples\apps\windows\TalkGrid.xaml - - - - - - diff --git a/etc/visual-studio/OpenThread.vcxproj.filters b/etc/visual-studio/OpenThread.vcxproj.filters deleted file mode 100644 index 5fb431551..000000000 --- a/etc/visual-studio/OpenThread.vcxproj.filters +++ /dev/null @@ -1,87 +0,0 @@ - - - - - f8c22844-9b93-4978-80df-8af2b37a7abb - - - cf539bf1-44af-4a06-be13-5941f6ac2623 - bmp;fbx;gif;jpg;jpeg;tga;tiff;tif;png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Assets - - - Assets - - - Assets - - - Assets - - - Assets - - - Assets - - - Assets - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/UnitTests.vcxproj b/etc/visual-studio/UnitTests.vcxproj deleted file mode 100644 index dd13dd6c7..000000000 --- a/etc/visual-studio/UnitTests.vcxproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - - {FD64BF17-8D36-4578-8D13-77B123BE30D3} - Win32Proj - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - DynamicLibrary - true - v140 - - - DynamicLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\dll\ - - - - - %(AdditionalIncludeDirectories); - $(VCInstallDir)UnitTest\include; - ..\..\include; - ..\..\src; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - - %(PreprocessorDefinitions) - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - - Level3 - true - - - Windows - - %(AdditionalLibraryDirectories); - $(VCInstallDir)UnitTest\lib; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {d94867d2-6dae-47e2-962a-5e8e658134d1} - - - {dd5018be-54c6-4fd4-9f8d-08d52fc0cd40} - - - {4111c8bb-d354-4348-ad3c-eb6832e84831} - - - - - - diff --git a/etc/visual-studio/UnitTests.vcxproj.filters b/etc/visual-studio/UnitTests.vcxproj.filters deleted file mode 100644 index 1c728f6fd..000000000 --- a/etc/visual-studio/UnitTests.vcxproj.filters +++ /dev/null @@ -1,75 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - diff --git a/etc/visual-studio/libopenthread-cli-windows.vcxproj b/etc/visual-studio/libopenthread-cli-windows.vcxproj deleted file mode 100644 index e62e29f13..000000000 --- a/etc/visual-studio/libopenthread-cli-windows.vcxproj +++ /dev/null @@ -1,73 +0,0 @@ - - - - - {28834498-3837-44A5-8F67-249ABAB7B97D} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OTDLL; - OTBUILD; - OPENTHREAD_FTD=1; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - Level3 - true - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/libopenthread-cli-windows.vcxproj.filters b/etc/visual-studio/libopenthread-cli-windows.vcxproj.filters deleted file mode 100644 index 7832b5237..000000000 --- a/etc/visual-studio/libopenthread-cli-windows.vcxproj.filters +++ /dev/null @@ -1,32 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/libopenthread-cli.vcxproj b/etc/visual-studio/libopenthread-cli.vcxproj deleted file mode 100644 index 4fd882d4d..000000000 --- a/etc/visual-studio/libopenthread-cli.vcxproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - {41B32069-632E-4578-855B-A36EBFA80B56} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - Level3 - true - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/libopenthread-cli.vcxproj.filters b/etc/visual-studio/libopenthread-cli.vcxproj.filters deleted file mode 100644 index 687e25b6f..000000000 --- a/etc/visual-studio/libopenthread-cli.vcxproj.filters +++ /dev/null @@ -1,32 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/libopenthread-ncp-spi.vcxproj b/etc/visual-studio/libopenthread-ncp-spi.vcxproj deleted file mode 100644 index 3770cd51a..000000000 --- a/etc/visual-studio/libopenthread-ncp-spi.vcxproj +++ /dev/null @@ -1,85 +0,0 @@ - - - - - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OPENTHREAD_ENABLE_NCP_SPI=1; - OPENTHREAD_ENABLE_NCP_UART=0; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - Level3 - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/libopenthread-ncp-spi.vcxproj.filters b/etc/visual-studio/libopenthread-ncp-spi.vcxproj.filters deleted file mode 100644 index 7082eee17..000000000 --- a/etc/visual-studio/libopenthread-ncp-spi.vcxproj.filters +++ /dev/null @@ -1,75 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - diff --git a/etc/visual-studio/libopenthread-ncp-uart.vcxproj b/etc/visual-studio/libopenthread-ncp-uart.vcxproj deleted file mode 100644 index 61d63a766..000000000 --- a/etc/visual-studio/libopenthread-ncp-uart.vcxproj +++ /dev/null @@ -1,87 +0,0 @@ - - - - - {D94867D2-6DAE-47E2-962A-5E8E658134D1} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OPENTHREAD_ENABLE_NCP_SPI=0; - OPENTHREAD_ENABLE_NCP_UART=1; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - Level3 - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/libopenthread-ncp-uart.vcxproj.filters b/etc/visual-studio/libopenthread-ncp-uart.vcxproj.filters deleted file mode 100644 index ab01236f6..000000000 --- a/etc/visual-studio/libopenthread-ncp-uart.vcxproj.filters +++ /dev/null @@ -1,81 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - diff --git a/etc/visual-studio/libopenthread-windows.vcxproj b/etc/visual-studio/libopenthread-windows.vcxproj deleted file mode 100644 index 58001381d..000000000 --- a/etc/visual-studio/libopenthread-windows.vcxproj +++ /dev/null @@ -1,76 +0,0 @@ - - - - - {30723C38-BA3B-44C9-8D64-C5861A26934F} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - Level3 - - %(PreprocessorDefinitions); - _CRT_SECURE_NO_WARNINGS; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OPENTHREAD_ENABLE_NCP_SPI=1; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\examples\platforms; - ..\..\src\core; - - true - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/libopenthread-windows.vcxproj.filters b/etc/visual-studio/libopenthread-windows.vcxproj.filters deleted file mode 100644 index 99d35fcee..000000000 --- a/etc/visual-studio/libopenthread-windows.vcxproj.filters +++ /dev/null @@ -1,52 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {af2a0e04-134d-40b3-84d4-82c8c622f9ae} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - diff --git a/etc/visual-studio/libopenthread.vcxproj b/etc/visual-studio/libopenthread.vcxproj deleted file mode 100644 index cf9067a0f..000000000 --- a/etc/visual-studio/libopenthread.vcxproj +++ /dev/null @@ -1,268 +0,0 @@ - - - - - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40} - StaticLibrary - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - - Level3 - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/libopenthread.vcxproj.filters b/etc/visual-studio/libopenthread.vcxproj.filters deleted file mode 100644 index 69b3ab7fd..000000000 --- a/etc/visual-studio/libopenthread.vcxproj.filters +++ /dev/null @@ -1,654 +0,0 @@ - - - - - {c09c2d1c-85fb-4081-8235-925b45ed3c4b} - - - {CE77AA98-FC98-4FC6-BB52-8A886378AB5E} - - - {a59636b8-d046-46b7-992b-76572ca72bd1} - - - {7c989f53-480b-42d4-a2dc-454adafda818} - - - {444ab8c6-6b83-4a5b-9059-67f469da1331} - - - {a49a9cc3-6a37-48a6-8049-b10c9cecd193} - - - {0e7f4f58-a115-4ce8-8e3b-1094fb79af52} - - - {9a61353a-8613-4496-9ee8-c3d2800c5ac6} - - - {c14a7a3f-089f-47ee-80db-1caf1b47ab6b} - - - {A0D2E990-DC5E-4B56-A552-888F97214A17} - - - {F0DDA90-D13F-4B56-A552-328F97124A81} - - - {b4905c15-9702-4ff0-8d57-e7926337d50f} - - - {c2f72132-0df1-4dba-b24f-0ab683874538} - - - {92f20ce7-8f87-4a1c-bc0b-d7fa3dfd3b60} - - - {c618ddc9-5c66-485f-a0ff-ebabb3508568} - - - {90294598-e94b-4c07-a531-93335a8955d9} - - - {0c76d116-0b4d-4fec-a0d8-5ca127913124} - - - {702145f9-0e66-4e45-b3d4-d43f2cf17e10} - - - {635aaabf-80f0-40e2-9218-22ff75bc0e32} - - - {5ac96cb9-6257-4387-9238-27649915463a} - - - {25a5662d-0709-4698-8fd9-3abfde8f0fc6} - - - {971969f2-f6ec-50b4-806a-97965c934cef} - - - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\coap - - - Source Files\coap - - - Source Files\coap - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\crypto - - - Source Files\mac - - - Source Files\api - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\phy - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\net - - - Source Files\meshcop - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\meshcop - - - Source Files\thread - - - Source Files\thread - - - Source Files\common - - - Source Files\thread - - - - - Header Files\coap - - - Header Files\coap - - - Header Files\coap - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\crypto - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\phy - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\thread - - - Header Files\thread - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\common - - - Header Files\api - - - Header Files\thread - - - Header Files\thread - - - diff --git a/etc/visual-studio/libopenthread_k.vcxproj b/etc/visual-studio/libopenthread_k.vcxproj deleted file mode 100644 index 720101778..000000000 --- a/etc/visual-studio/libopenthread_k.vcxproj +++ /dev/null @@ -1,299 +0,0 @@ - - - - - {9B33C190-5D07-40BF-9536-68843DC5D7AF} - {8c0e3d8b-df43-455b-815a-4a0e72973bc6} - v4.5 - 12.0 - Debug - Win32 - ot - KMDF - Universal - - - WindowsKernelModeDriver10.0 - StaticLibrary - - - - Windows10 - true - - - Windows10 - false - - - - - - - - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - - - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_PROJECT_CORE_CONFIG_FILE="openthread-core-windows-config.h"; - WINDOWS_LOGGING; - OPENTHREAD_FTD=1; - HAVE_STDBOOL_H=1; - HAVE_STDINT_H=1; - OT_STRING_WINDOWS_WORKAROUND=1; - OTBUILD; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\examples\drivers\windows\include; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - ..\..\examples\drivers\windows\include_c99; - - 4100;4706;4748;%(DisableSpecificWarnings) - true - true - ..\..\include\openthread\platform\logging-windows.h - -km %(WppAdditionalOptions) - otCore - WPP_INIT_TRACING - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/libopenthread_k.vcxproj.filters b/etc/visual-studio/libopenthread_k.vcxproj.filters deleted file mode 100644 index 8a8a9bad8..000000000 --- a/etc/visual-studio/libopenthread_k.vcxproj.filters +++ /dev/null @@ -1,714 +0,0 @@ - - - - - {c09c2d1c-85fb-4081-8235-925b45ed3c4b} - - - {B78747A9-11C2-4784-B825-D48FD388FE2F} - - - {a59636b8-d046-46b7-992b-76572ca72bd1} - - - {7c989f53-480b-42d4-a2dc-454adafda818} - - - {444ab8c6-6b83-4a5b-9059-67f469da1331} - - - {a49a9cc3-6a37-48a6-8049-b10c9cecd193} - - - {50a39acc-fab6-4e2a-85b7-d764be5299f5} - - - {9a61353a-8613-4496-9ee8-c3d2800c5ac6} - - - {c14a7a3f-089f-47ee-80db-1caf1b47ab6b} - - - {A0D2E990-DC5E-4B56-A552-888F97214A17} - - - {F0DDA90-D13F-4B56-A552-328F97124A81} - - - {b4905c15-9702-4ff0-8d57-e7926337d50f} - - - {c2f72132-0df1-4dba-b24f-0ab683874538} - - - {92f20ce7-8f87-4a1c-bc0b-d7fa3dfd3b60} - - - {c618ddc9-5c66-485f-a0ff-ebabb3508568} - - - {90294598-e94b-4c07-a531-93335a8955d9} - - - {8f54e8b3-d8fb-4fed-88ce-42b39f171d0b} - - - {0c76d116-0b4d-4fec-a0d8-5ca127913124} - - - {702145f9-0e66-4e45-b3d4-d43f2cf17e10} - - - {5ac96cb9-6257-4387-9238-27649915463a} - - - {63a27d20-b039-46b4-aff9-63ace2010b9b} - - - {2b66635d-fb09-421b-9942-8c43df5c8c77} - - - {971969f2-f6ec-50b4-806a-97965c934cef} - - - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\api - - - Source Files\coap - - - Source Files\coap - - - Source Files\coap - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\common - - - Source Files\crypto - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\mac - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\net - - - Source Files\phy - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\net - - - Source Files\meshcop - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\thread - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\meshcop - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\crypto - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\utils - - - Source Files\thread - - - Source Files\thread - - - Source Files\meshcop - - - Source Files\common - - - Source Files\missing - - - Source Files\missing - - - Source Files\missing - - - - - Header Files - - - Header Files\coap - - - Header Files\coap - - - Header Files\coap - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\common - - - Header Files\crypto - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\mac - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\net - - - Header Files\phy - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\meshcop - - - Header Files\thread - - - Header Files\thread - - - Header Files\thread - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\meshcop - - - Header Files\thread - - - Header Files\thread - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\crypto - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\utils - - - Header Files\thread - - - Header Files\thread - - - Header Files\meshcop - - - Header Files\common - - - Header Files - - - Header Files - - - Header Files - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\openthread - - - Header Files\api - - - Header Files\missing - - - Header Files\missing - - - Header Files\missing - - - diff --git a/etc/visual-studio/mbedtls.vcxproj b/etc/visual-studio/mbedtls.vcxproj deleted file mode 100644 index 8b077cfd2..000000000 --- a/etc/visual-studio/mbedtls.vcxproj +++ /dev/null @@ -1,86 +0,0 @@ - - - - - {4111C8BB-D354-4348-AD3C-EB6832E84831} - Win32Proj - mbedtls - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - StaticLibrary - true - v140 - - - StaticLibrary - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - - - - - ;%(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - - - ..\..\include; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - ..\..\third_party\mbedtls\repo\include\mbedtls - - Level3 - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/mbedtls.vcxproj.filters b/etc/visual-studio/mbedtls.vcxproj.filters deleted file mode 100644 index c03e1ab5d..000000000 --- a/etc/visual-studio/mbedtls.vcxproj.filters +++ /dev/null @@ -1,92 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {0a2ce77e-dccf-408c-aea0-7a781284a936} - - - {859819dc-e84e-4854-ad32-2819d60da38b} - - - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - diff --git a/etc/visual-studio/mbedtls_k.vcxproj b/etc/visual-studio/mbedtls_k.vcxproj deleted file mode 100644 index a0cc2801e..000000000 --- a/etc/visual-studio/mbedtls_k.vcxproj +++ /dev/null @@ -1,88 +0,0 @@ - - - - - {69BE8E8C-CF1E-46D6-932B-DB435F47059B} - {8c0e3d8b-df43-455b-815a-4a0e72973bc6} - v4.5 - 12.0 - Debug - Win32 - ot - KMDF - Universal - - - WindowsKernelModeDriver10.0 - StaticLibrary - - - - Windows10 - true - - - Windows10 - false - - - - - - - - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - - - - - ..\..\include; - ..\..\src\core; - ..\..\third_party\mbedtls; - ..\..\third_party\mbedtls\repo\include; - ..\..\third_party\mbedtls\repo\include\mbedtls; - ..\..\examples\drivers\windows\include_c99; - - - %(PreprocessorDefinitions); - MBEDTLS_CONFIG_FILE="mbedtls-config.h"; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - HAVE_STDBOOL_H=1; - HAVE_STDINT_H=1; - - 4132;4242;4245;4603;4627;4986;4987;4996;%(DisableSpecificWarnings) - Level3 - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/etc/visual-studio/mbedtls_k.vcxproj.filters b/etc/visual-studio/mbedtls_k.vcxproj.filters deleted file mode 100644 index 2ca617131..000000000 --- a/etc/visual-studio/mbedtls_k.vcxproj.filters +++ /dev/null @@ -1,92 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {0a2ce77e-dccf-408c-aea0-7a781284a936} - - - {87ec68b3-5bec-4c60-b764-c2daf3ffcfb2} - - - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - Source Files\repo\library - - - diff --git a/etc/visual-studio/openthread.configuration.props b/etc/visual-studio/openthread.configuration.props deleted file mode 100644 index 12a29dc1e..000000000 --- a/etc/visual-studio/openthread.configuration.props +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Debug - ARM - - - Release - ARM - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - \ No newline at end of file diff --git a/etc/visual-studio/openthread.sln b/etc/visual-studio/openthread.sln deleted file mode 100644 index 7b75be6c8..000000000 --- a/etc/visual-studio/openthread.sln +++ /dev/null @@ -1,383 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "config files", "config files", "{53F4EEF6-B96D-4887-B9CF-CD21E8BECD15}" - ProjectSection(SolutionItems) = preProject - ..\..\.appveyor.yml = ..\..\.appveyor.yml - ..\..\.codecov.yml = ..\..\.codecov.yml - ..\..\.travis.yml = ..\..\.travis.yml - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{76EA541E-CAB1-4DB5-A39F-E3DB2A78CDDD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{95BD0669-04C8-4EEB-B3CC-0535B03F4468}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{35F6AB71-5BD2-4D53-8A51-D75CCD4CCC3D}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "third_party", "third_party", "{873E9D16-2A08-41FC-B301-79C95B3A8F98}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread", "libopenthread.vcxproj", "{DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread_k", "libopenthread_k.vcxproj", "{9B33C190-5D07-40BF-9536-68843DC5D7AF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mbedtls", "mbedtls.vcxproj", "{4111C8BB-D354-4348-AD3C-EB6832E84831}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mbedtls_k", "mbedtls_k.vcxproj", "{69BE8E8C-CF1E-46D6-932B-DB435F47059B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests", "UnitTests.vcxproj", "{FD64BF17-8D36-4578-8D13-77B123BE30D3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread-windows", "libopenthread-windows.vcxproj", "{30723C38-BA3B-44C9-8D64-C5861A26934F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread-cli", "libopenthread-cli.vcxproj", "{41B32069-632E-4578-855B-A36EBFA80B56}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ot-cli", "ot-cli.vcxproj", "{91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread-ncp-spi", "libopenthread-ncp-spi.vcxproj", "{B92F449E-0FD9-44FC-ACFA-6521A3240CA2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread-ncp-uart", "libopenthread-ncp-uart.vcxproj", "{D94867D2-6DAE-47E2-962A-5E8E658134D1}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ot-ncp-spi", "ot-ncp-spi.vcxproj", "{B4C744EC-B662-46C6-A076-FB58FA8FDF1B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ot-ncp-uart", "ot-ncp-uart.vcxproj", "{9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "drivers", "drivers", "{61E8A4A0-8138-49DB-97B4-3BEC87C8E133}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "otLwf", "otLwf.vcxproj", "{3F1F7F6C-2A33-4635-9880-08FC5BC4E435}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "otApi", "otApi.vcxproj", "{ED0EA262-C222-42C7-98D3-E70C72978ED2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libopenthread-cli-windows", "libopenthread-cli-windows.vcxproj", "{28834498-3837-44A5-8F67-249ABAB7B97D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "otCli", "otCli.vcxproj", "{CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "otNodeApi", "otNodeApi.vcxproj", "{B7C6F344-7287-4930-AF38-223622BD8CBB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "otTestRunner", "otTestRunner.csproj", "{D5577E51-FA31-4802-8669-1DB32805935E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spinel_k", "spinel_k.vcxproj", "{A55766B5-58B6-4519-835E-5A4B7C164B5A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ottmp", "ottmp.vcxproj", "{1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM = Debug|ARM - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|ARM = Release|ARM - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|ARM.ActiveCfg = Debug|ARM - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|ARM.Build.0 = Debug|ARM - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|x64.ActiveCfg = Debug|x64 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|x64.Build.0 = Debug|x64 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|x86.ActiveCfg = Debug|Win32 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Debug|x86.Build.0 = Debug|Win32 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|ARM.ActiveCfg = Release|ARM - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|ARM.Build.0 = Release|ARM - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|x64.ActiveCfg = Release|x64 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|x64.Build.0 = Release|x64 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|x86.ActiveCfg = Release|Win32 - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40}.Release|x86.Build.0 = Release|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|ARM.ActiveCfg = Debug|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|ARM.Build.0 = Debug|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|ARM.Deploy.0 = Debug|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|x64.ActiveCfg = Debug|x64 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|x64.Build.0 = Debug|x64 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|x86.ActiveCfg = Debug|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|x86.Build.0 = Debug|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Debug|x86.Deploy.0 = Debug|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|ARM.ActiveCfg = Release|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|ARM.Build.0 = Release|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|ARM.Deploy.0 = Release|ARM - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|x64.ActiveCfg = Release|x64 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|x64.Build.0 = Release|x64 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|x86.ActiveCfg = Release|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|x86.Build.0 = Release|Win32 - {9B33C190-5D07-40BF-9536-68843DC5D7AF}.Release|x86.Deploy.0 = Release|Win32 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|ARM.ActiveCfg = Debug|ARM - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|ARM.Build.0 = Debug|ARM - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|x64.ActiveCfg = Debug|x64 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|x64.Build.0 = Debug|x64 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|x86.ActiveCfg = Debug|Win32 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Debug|x86.Build.0 = Debug|Win32 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|ARM.ActiveCfg = Release|ARM - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|ARM.Build.0 = Release|ARM - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|x64.ActiveCfg = Release|x64 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|x64.Build.0 = Release|x64 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|x86.ActiveCfg = Release|Win32 - {4111C8BB-D354-4348-AD3C-EB6832E84831}.Release|x86.Build.0 = Release|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|ARM.ActiveCfg = Debug|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|ARM.Build.0 = Debug|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|ARM.Deploy.0 = Debug|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|x64.ActiveCfg = Debug|x64 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|x64.Build.0 = Debug|x64 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|x86.ActiveCfg = Debug|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|x86.Build.0 = Debug|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Debug|x86.Deploy.0 = Debug|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|ARM.ActiveCfg = Release|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|ARM.Build.0 = Release|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|ARM.Deploy.0 = Release|ARM - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|x64.ActiveCfg = Release|x64 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|x64.Build.0 = Release|x64 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|x86.ActiveCfg = Release|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|x86.Build.0 = Release|Win32 - {69BE8E8C-CF1E-46D6-932B-DB435F47059B}.Release|x86.Deploy.0 = Release|Win32 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|ARM.ActiveCfg = Debug|ARM - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|ARM.Build.0 = Debug|ARM - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|x64.ActiveCfg = Debug|x64 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|x64.Build.0 = Debug|x64 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|x86.ActiveCfg = Debug|Win32 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Debug|x86.Build.0 = Debug|Win32 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|ARM.ActiveCfg = Release|ARM - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|ARM.Build.0 = Release|ARM - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|x64.ActiveCfg = Release|x64 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|x64.Build.0 = Release|x64 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|x86.ActiveCfg = Release|Win32 - {FD64BF17-8D36-4578-8D13-77B123BE30D3}.Release|x86.Build.0 = Release|Win32 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|ARM.ActiveCfg = Debug|ARM - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|ARM.Build.0 = Debug|ARM - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|x64.ActiveCfg = Debug|x64 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|x64.Build.0 = Debug|x64 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|x86.ActiveCfg = Debug|Win32 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Debug|x86.Build.0 = Debug|Win32 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|ARM.ActiveCfg = Release|ARM - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|ARM.Build.0 = Release|ARM - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|x64.ActiveCfg = Release|x64 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|x64.Build.0 = Release|x64 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|x86.ActiveCfg = Release|Win32 - {30723C38-BA3B-44C9-8D64-C5861A26934F}.Release|x86.Build.0 = Release|Win32 - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|ARM.ActiveCfg = Debug|ARM - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|ARM.Build.0 = Debug|ARM - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|x64.ActiveCfg = Debug|x64 - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|x64.Build.0 = Debug|x64 - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|x86.ActiveCfg = Debug|Win32 - {41B32069-632E-4578-855B-A36EBFA80B56}.Debug|x86.Build.0 = Debug|Win32 - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|ARM.ActiveCfg = Release|ARM - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|ARM.Build.0 = Release|ARM - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|x64.ActiveCfg = Release|x64 - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|x64.Build.0 = Release|x64 - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|x86.ActiveCfg = Release|Win32 - {41B32069-632E-4578-855B-A36EBFA80B56}.Release|x86.Build.0 = Release|Win32 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|ARM.ActiveCfg = Debug|ARM - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|ARM.Build.0 = Debug|ARM - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|x64.ActiveCfg = Debug|x64 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|x64.Build.0 = Debug|x64 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|x86.ActiveCfg = Debug|Win32 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Debug|x86.Build.0 = Debug|Win32 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|ARM.ActiveCfg = Release|ARM - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|ARM.Build.0 = Release|ARM - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|x64.ActiveCfg = Release|x64 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|x64.Build.0 = Release|x64 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|x86.ActiveCfg = Release|Win32 - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF}.Release|x86.Build.0 = Release|Win32 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|ARM.ActiveCfg = Debug|ARM - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|ARM.Build.0 = Debug|ARM - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|x64.ActiveCfg = Debug|x64 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|x64.Build.0 = Debug|x64 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|x86.ActiveCfg = Debug|Win32 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Debug|x86.Build.0 = Debug|Win32 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|ARM.ActiveCfg = Release|ARM - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|ARM.Build.0 = Release|ARM - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|x64.ActiveCfg = Release|x64 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|x64.Build.0 = Release|x64 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|x86.ActiveCfg = Release|Win32 - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2}.Release|x86.Build.0 = Release|Win32 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|ARM.ActiveCfg = Debug|ARM - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|ARM.Build.0 = Debug|ARM - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|x64.ActiveCfg = Debug|x64 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|x64.Build.0 = Debug|x64 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|x86.ActiveCfg = Debug|Win32 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Debug|x86.Build.0 = Debug|Win32 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|ARM.ActiveCfg = Release|ARM - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|ARM.Build.0 = Release|ARM - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|x64.ActiveCfg = Release|x64 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|x64.Build.0 = Release|x64 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|x86.ActiveCfg = Release|Win32 - {D94867D2-6DAE-47E2-962A-5E8E658134D1}.Release|x86.Build.0 = Release|Win32 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|ARM.ActiveCfg = Debug|ARM - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|ARM.Build.0 = Debug|ARM - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|x64.ActiveCfg = Debug|x64 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|x64.Build.0 = Debug|x64 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|x86.ActiveCfg = Debug|Win32 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Debug|x86.Build.0 = Debug|Win32 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|ARM.ActiveCfg = Release|ARM - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|ARM.Build.0 = Release|ARM - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|x64.ActiveCfg = Release|x64 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|x64.Build.0 = Release|x64 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|x86.ActiveCfg = Release|Win32 - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B}.Release|x86.Build.0 = Release|Win32 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|ARM.ActiveCfg = Debug|ARM - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|ARM.Build.0 = Debug|ARM - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|x64.ActiveCfg = Debug|x64 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|x64.Build.0 = Debug|x64 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|x86.ActiveCfg = Debug|Win32 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Debug|x86.Build.0 = Debug|Win32 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|ARM.ActiveCfg = Release|ARM - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|ARM.Build.0 = Release|ARM - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|x64.ActiveCfg = Release|x64 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|x64.Build.0 = Release|x64 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|x86.ActiveCfg = Release|Win32 - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324}.Release|x86.Build.0 = Release|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|ARM.ActiveCfg = Debug|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|ARM.Build.0 = Debug|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|ARM.Deploy.0 = Debug|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x64.ActiveCfg = Debug|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x64.Build.0 = Debug|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x64.Deploy.0 = Debug|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x86.ActiveCfg = Debug|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x86.Build.0 = Debug|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Debug|x86.Deploy.0 = Debug|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|ARM.ActiveCfg = Release|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|ARM.Build.0 = Release|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|ARM.Deploy.0 = Release|ARM - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x64.ActiveCfg = Release|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x64.Build.0 = Release|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x64.Deploy.0 = Release|x64 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x86.ActiveCfg = Release|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x86.Build.0 = Release|Win32 - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435}.Release|x86.Deploy.0 = Release|Win32 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|ARM.ActiveCfg = Debug|ARM - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|ARM.Build.0 = Debug|ARM - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|x64.ActiveCfg = Debug|x64 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|x64.Build.0 = Debug|x64 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|x86.ActiveCfg = Debug|Win32 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Debug|x86.Build.0 = Debug|Win32 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|ARM.ActiveCfg = Release|ARM - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|ARM.Build.0 = Release|ARM - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|x64.ActiveCfg = Release|x64 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|x64.Build.0 = Release|x64 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|x86.ActiveCfg = Release|Win32 - {ED0EA262-C222-42C7-98D3-E70C72978ED2}.Release|x86.Build.0 = Release|Win32 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|ARM.ActiveCfg = Debug|ARM - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|ARM.Build.0 = Debug|ARM - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|x64.ActiveCfg = Debug|x64 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|x64.Build.0 = Debug|x64 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|x86.ActiveCfg = Debug|Win32 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Debug|x86.Build.0 = Debug|Win32 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|ARM.ActiveCfg = Release|ARM - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|ARM.Build.0 = Release|ARM - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|x64.ActiveCfg = Release|x64 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|x64.Build.0 = Release|x64 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|x86.ActiveCfg = Release|Win32 - {28834498-3837-44A5-8F67-249ABAB7B97D}.Release|x86.Build.0 = Release|Win32 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|ARM.ActiveCfg = Debug|ARM - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|ARM.Build.0 = Debug|ARM - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|x64.ActiveCfg = Debug|x64 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|x64.Build.0 = Debug|x64 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|x86.ActiveCfg = Debug|Win32 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Debug|x86.Build.0 = Debug|Win32 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|ARM.ActiveCfg = Release|ARM - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|ARM.Build.0 = Release|ARM - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|x64.ActiveCfg = Release|x64 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|x64.Build.0 = Release|x64 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|x86.ActiveCfg = Release|Win32 - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB}.Release|x86.Build.0 = Release|Win32 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|ARM.ActiveCfg = Debug|ARM - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|ARM.Build.0 = Debug|ARM - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|x64.ActiveCfg = Debug|x64 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|x64.Build.0 = Debug|x64 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|x86.ActiveCfg = Debug|Win32 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Debug|x86.Build.0 = Debug|Win32 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|ARM.ActiveCfg = Release|ARM - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|ARM.Build.0 = Release|ARM - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|x64.ActiveCfg = Release|x64 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|x64.Build.0 = Release|x64 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|x86.ActiveCfg = Release|Win32 - {B7C6F344-7287-4930-AF38-223622BD8CBB}.Release|x86.Build.0 = Release|Win32 - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|ARM.Build.0 = Debug|Any CPU - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|x64.ActiveCfg = Debug|x64 - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|x64.Build.0 = Debug|x64 - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|x86.ActiveCfg = Debug|Win32 - {D5577E51-FA31-4802-8669-1DB32805935E}.Debug|x86.Build.0 = Debug|Win32 - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|ARM.ActiveCfg = Release|Any CPU - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|ARM.Build.0 = Release|Any CPU - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|x64.ActiveCfg = Release|x64 - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|x64.Build.0 = Release|x64 - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|x86.ActiveCfg = Release|Win32 - {D5577E51-FA31-4802-8669-1DB32805935E}.Release|x86.Build.0 = Release|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|ARM.ActiveCfg = Debug|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|ARM.Build.0 = Debug|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|ARM.Deploy.0 = Debug|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x64.ActiveCfg = Debug|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x64.Build.0 = Debug|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x64.Deploy.0 = Debug|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x86.ActiveCfg = Debug|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x86.Build.0 = Debug|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Debug|x86.Deploy.0 = Debug|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|ARM.ActiveCfg = Release|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|ARM.Build.0 = Release|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|ARM.Deploy.0 = Release|ARM - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x64.ActiveCfg = Release|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x64.Build.0 = Release|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x64.Deploy.0 = Release|x64 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x86.ActiveCfg = Release|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x86.Build.0 = Release|Win32 - {F8C22844-9B93-4978-80DF-8AF2B37A7ABB}.Release|x86.Deploy.0 = Release|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|ARM.ActiveCfg = Debug|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|ARM.Build.0 = Debug|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|ARM.Deploy.0 = Debug|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x64.ActiveCfg = Debug|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x64.Build.0 = Debug|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x64.Deploy.0 = Debug|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x86.ActiveCfg = Debug|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x86.Build.0 = Debug|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Debug|x86.Deploy.0 = Debug|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|ARM.ActiveCfg = Release|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|ARM.Build.0 = Release|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|ARM.Deploy.0 = Release|ARM - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x64.ActiveCfg = Release|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x64.Build.0 = Release|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x64.Deploy.0 = Release|x64 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x86.ActiveCfg = Release|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x86.Build.0 = Release|Win32 - {A55766B5-58B6-4519-835E-5A4B7C164B5A}.Release|x86.Deploy.0 = Release|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|ARM.ActiveCfg = Debug|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|ARM.Build.0 = Debug|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|ARM.Deploy.0 = Debug|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x64.ActiveCfg = Debug|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x64.Build.0 = Debug|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x64.Deploy.0 = Debug|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x86.ActiveCfg = Debug|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x86.Build.0 = Debug|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Debug|x86.Deploy.0 = Debug|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|ARM.ActiveCfg = Release|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|ARM.Build.0 = Release|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|ARM.Deploy.0 = Release|ARM - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x64.ActiveCfg = Release|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x64.Build.0 = Release|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x64.Deploy.0 = Release|x64 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x86.ActiveCfg = Release|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x86.Build.0 = Release|Win32 - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D}.Release|x86.Deploy.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {DD5018BE-54C6-4FD4-9F8D-08D52FC0CD40} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {9B33C190-5D07-40BF-9536-68843DC5D7AF} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {4111C8BB-D354-4348-AD3C-EB6832E84831} = {873E9D16-2A08-41FC-B301-79C95B3A8F98} - {69BE8E8C-CF1E-46D6-932B-DB435F47059B} = {873E9D16-2A08-41FC-B301-79C95B3A8F98} - {FD64BF17-8D36-4578-8D13-77B123BE30D3} = {35F6AB71-5BD2-4D53-8A51-D75CCD4CCC3D} - {30723C38-BA3B-44C9-8D64-C5861A26934F} = {76EA541E-CAB1-4DB5-A39F-E3DB2A78CDDD} - {41B32069-632E-4578-855B-A36EBFA80B56} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF} = {76EA541E-CAB1-4DB5-A39F-E3DB2A78CDDD} - {B92F449E-0FD9-44FC-ACFA-6521A3240CA2} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {D94867D2-6DAE-47E2-962A-5E8E658134D1} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B} = {76EA541E-CAB1-4DB5-A39F-E3DB2A78CDDD} - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324} = {76EA541E-CAB1-4DB5-A39F-E3DB2A78CDDD} - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435} = {61E8A4A0-8138-49DB-97B4-3BEC87C8E133} - {ED0EA262-C222-42C7-98D3-E70C72978ED2} = {61E8A4A0-8138-49DB-97B4-3BEC87C8E133} - {28834498-3837-44A5-8F67-249ABAB7B97D} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB} = {61E8A4A0-8138-49DB-97B4-3BEC87C8E133} - {B7C6F344-7287-4930-AF38-223622BD8CBB} = {61E8A4A0-8138-49DB-97B4-3BEC87C8E133} - {D5577E51-FA31-4802-8669-1DB32805935E} = {35F6AB71-5BD2-4D53-8A51-D75CCD4CCC3D} - {A55766B5-58B6-4519-835E-5A4B7C164B5A} = {95BD0669-04C8-4EEB-B3CC-0535B03F4468} - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D} = {61E8A4A0-8138-49DB-97B4-3BEC87C8E133} - EndGlobalSection -EndGlobal diff --git a/etc/visual-studio/ot-cli.vcxproj b/etc/visual-studio/ot-cli.vcxproj deleted file mode 100644 index 6d669f422..000000000 --- a/etc/visual-studio/ot-cli.vcxproj +++ /dev/null @@ -1,80 +0,0 @@ - - - - - {91D3ADEA-F1FE-4433-95B6-F8F6A7CF7BAF} - Win32Proj - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - Application - true - v140 - - - Application - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - - - - - %(PreprocessorDefinitions); - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - - - %(AdditionalIncludeDirectories); - ..\..\examples\platforms; - ..\..\include; - ..\..\src\core; - - Level3 - true - - - Console - - mincore.lib; - - - - - - {41b32069-632e-4578-855b-a36ebfa80b56} - - - {dd5018be-54c6-4fd4-9f8d-08d52fc0cd40} - - - {4111c8bb-d354-4348-ad3c-eb6832e84831} - - - {30723c38-ba3b-44c9-8d64-c5861a26934f} - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/ot-cli.vcxproj.filters b/etc/visual-studio/ot-cli.vcxproj.filters deleted file mode 100644 index 5d735b3db..000000000 --- a/etc/visual-studio/ot-cli.vcxproj.filters +++ /dev/null @@ -1,14 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/ot-ncp-spi.vcxproj b/etc/visual-studio/ot-ncp-spi.vcxproj deleted file mode 100644 index af117a4bb..000000000 --- a/etc/visual-studio/ot-ncp-spi.vcxproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - - {B4C744EC-B662-46C6-A076-FB58FA8FDF1B} - Win32Proj - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - Application - true - v140 - - - Application - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - - - - - %(PreprocessorDefinitions); - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OPENTHREAD_ENABLE_NCP_SPI=1; - OPENTHREAD_ENABLE_NCP_UART=0; - - - %(AdditionalIncludeDirectories); - ..\..\examples\platforms; - ..\..\include; - ..\..\src\core; - - true - Level3 - - - Console - - mincore.lib; - - - - - - - - - {dd5018be-54c6-4fd4-9f8d-08d52fc0cd40} - - - {b92f449e-0fd9-44fc-acfa-6521a3240ca2} - - - {4111c8bb-d354-4348-ad3c-eb6832e84831} - - - {30723c38-ba3b-44c9-8d64-c5861a26934f} - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/ot-ncp-spi.vcxproj.filters b/etc/visual-studio/ot-ncp-spi.vcxproj.filters deleted file mode 100644 index 3cfd287ac..000000000 --- a/etc/visual-studio/ot-ncp-spi.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/ot-ncp-uart.vcxproj b/etc/visual-studio/ot-ncp-uart.vcxproj deleted file mode 100644 index e000631c9..000000000 --- a/etc/visual-studio/ot-ncp-uart.vcxproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - - {9EEF9DCD-EA8F-4154-BD02-AB2B31CEC324} - Win32Proj - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - Application - true - v140 - - - Application - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - - - - - %(PreprocessorDefinitions); - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OPENTHREAD_ENABLE_NCP_SPI=0; - OPENTHREAD_ENABLE_NCP_UART=1; - - - %(AdditionalIncludeDirectories); - ..\..\examples\platforms; - ..\..\include; - ..\..\src\core; - - true - Level3 - - - Console - - mincore.lib; - - - - - - - - - {dd5018be-54c6-4fd4-9f8d-08d52fc0cd40} - - - {d94867d2-6dae-47e2-962a-5e8e658134d1} - - - {4111c8bb-d354-4348-ad3c-eb6832e84831} - - - {30723c38-ba3b-44c9-8d64-c5861a26934f} - - - - - - diff --git a/etc/visual-studio/ot-ncp-uart.vcxproj.filters b/etc/visual-studio/ot-ncp-uart.vcxproj.filters deleted file mode 100644 index 3cfd287ac..000000000 --- a/etc/visual-studio/ot-ncp-uart.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/otApi.vcxproj b/etc/visual-studio/otApi.vcxproj deleted file mode 100644 index 4430c57d1..000000000 --- a/etc/visual-studio/otApi.vcxproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - {ED0EA262-C222-42C7-98D3-E70C72978ED2} - Win32Proj - ot - 12.0 - Universal - - - - DynamicLibrary - true - WindowsApplicationForDrivers10.0 - - - DynamicLibrary - false - WindowsApplicationForDrivers10.0 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\dll\ - C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\Rule Sets\NativeRecommendedRules.ruleset - true - false - - - - Level3 - - %(PreprocessorDefinitions); - OPENTHREAD_FTD=1; - OTAPI_EXPORTS; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - - true - - %(AdditionalIncludeDirectories); - ..\..\examples\drivers\windows\include; - ..\..\examples\drivers\windows\otApi; - ..\..\include; - - true - ..\..\include\openthread\platform\logging-windows.h - otApi - true - Sync - - - - - - - - - - - - - diff --git a/etc/visual-studio/otApi.vcxproj.filters b/etc/visual-studio/otApi.vcxproj.filters deleted file mode 100644 index ce2de0616..000000000 --- a/etc/visual-studio/otApi.vcxproj.filters +++ /dev/null @@ -1,30 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - - - Header Files - - - \ No newline at end of file diff --git a/etc/visual-studio/otCli.vcxproj b/etc/visual-studio/otCli.vcxproj deleted file mode 100644 index 327e779c2..000000000 --- a/etc/visual-studio/otCli.vcxproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - {CAC8A00E-C6C8-4CF0-BA5A-C9A9A601C6DB} - Win32Proj - ot - Windows Store - 14.0 - 10.0.10586.0 - 10.0.10240.0 - 10.0 - - - - Application - true - v140 - - - Application - false - v140 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - - - - - %(PreprocessorDefinitions); - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_FTD=1; - OTDLL; - - - %(AdditionalIncludeDirectories); - ..\..\include; - - Level3 - true - - - Console - - - - - - - - {28834498-3837-44a5-8f67-249abab7b97d} - - - {ed0ea262-c222-42c7-98d3-e70c72978ed2} - - - - - - diff --git a/etc/visual-studio/otCli.vcxproj.filters b/etc/visual-studio/otCli.vcxproj.filters deleted file mode 100644 index 203d16a0d..000000000 --- a/etc/visual-studio/otCli.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/etc/visual-studio/otLwf.vcxproj b/etc/visual-studio/otLwf.vcxproj deleted file mode 100644 index 46af170f8..000000000 --- a/etc/visual-studio/otLwf.vcxproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - {3F1F7F6C-2A33-4635-9880-08FC5BC4E435} - {8b1800b9-d017-4029-9785-13ef5e5b328e} - v4.5 - 12.0 - ot - KMDF - Universal - - - WindowsKernelModeDriver10.0 - Driver - - - - Windows10 - true - - - Windows10 - false - - - - - - - - ..\..\build\bin\$(Platform)\$(Configuration)\sys\ - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - AllRules.ruleset - true - - - - - %(PreProcessorDefinitions); - NDIS_WDM=1; - NDIS630=1; - OPENTHREAD_FTD=1; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_PROJECT_CORE_CONFIG_FILE="openthread-core-windows-config.h"; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\examples\drivers\windows\include; - ..\..\examples\drivers\windows\include_c99; - ..\..\examples\drivers\windows\otLwf; - ..\..\src; - ..\..\src\core; - - Level4 - true - %(DisableSpecificWarnings);4201;4214 - precomp.h - Use - true - ..\..\include\openthread\platform\logging-windows.h - -km %(WppAdditionalOptions) - otLwf - WPP_INIT_TRACING - true - - - %(AdditionalIncludeDirectories);..;.; - - - - %(AdditionalDependencies); - ndis.lib; - wdmsec.lib; - netio.lib; - uuid.lib; - cng.lib; - - - - inf2cat /driver:$(TargetDir) /os:8_ARM - - - - - - - - - - - - - - - ..;.;%(AdditionalIncludeDirectories) - %(PreProcessorDefinitions);NDIS_WDM=1 - precomp.h - Create - - - - - - - - - - - - - - - - - - - - - - - {9b33c190-5d07-40bf-9536-68843dc5d7af} - - - {69be8e8c-cf1e-46d6-932b-db435f47059b} - - - {a55766b5-58b6-4519-835e-5a4b7c164b5a} - - - - - \ No newline at end of file diff --git a/etc/visual-studio/otLwf.vcxproj.filters b/etc/visual-studio/otLwf.vcxproj.filters deleted file mode 100644 index 8b540e324..000000000 --- a/etc/visual-studio/otLwf.vcxproj.filters +++ /dev/null @@ -1,107 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {8E41214B-6785-4CFE-B992-037D68949A14} - inf;inv;inx;mof;mc; - - - - - Driver Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/etc/visual-studio/otNodeApi.vcxproj b/etc/visual-studio/otNodeApi.vcxproj deleted file mode 100644 index dc06757e7..000000000 --- a/etc/visual-studio/otNodeApi.vcxproj +++ /dev/null @@ -1,79 +0,0 @@ - - - - - {B7C6F344-7287-4930-AF38-223622BD8CBB} - Win32Proj - ot - 12.0 - Universal - - - - DynamicLibrary - true - WindowsApplicationForDrivers10.0 - - - DynamicLibrary - false - WindowsApplicationForDrivers10.0 - true - - - - - - - - - - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - ..\..\build\bin\$(Platform)\$(Configuration)\dll\ - true - false - - - - - %(PreprocessorDefinitions); - OPENTHREAD_FTD=1; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OTAPI_EXPORTS; - - - %(AdditionalIncludeDirectories); - ..\..\examples\drivers\windows\include; - ..\..\examples\drivers\windows\otApi; - ..\..\include; - - Level3 - true - true - ..\..\include\openthread\platform\logging-windows.h - otNodeApi - true - Sync - - - - ntdll.lib; - - - - - - - - - - - - - {ed0ea262-c222-42c7-98d3-e70c72978ed2} - - - - - - diff --git a/etc/visual-studio/otNodeApi.vcxproj.filters b/etc/visual-studio/otNodeApi.vcxproj.filters deleted file mode 100644 index 8e527aeea..000000000 --- a/etc/visual-studio/otNodeApi.vcxproj.filters +++ /dev/null @@ -1,30 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - - - Header Files - - - \ No newline at end of file diff --git a/etc/visual-studio/otTestRunner.csproj b/etc/visual-studio/otTestRunner.csproj deleted file mode 100644 index 958403786..000000000 --- a/etc/visual-studio/otTestRunner.csproj +++ /dev/null @@ -1,112 +0,0 @@ - - - - - Debug - AnyCPU - {D5577E51-FA31-4802-8669-1DB32805935E} - Exe - Properties - otTestRunner - otTestRunner - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - TRACE - prompt - 4 - - - true - DEBUG;TRACE - full - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - TRACE - true - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - pdbonly - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - true - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - DEBUG;TRACE - full - x86 - prompt - MinimumRecommendedRules.ruleset - true - - - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\obj\$(Platform)\$(Configuration)\otTestRunner\ - ..\..\build\bin\$(Platform)\$(Configuration)\exe\ - TRACE - true - pdbonly - x86 - prompt - MinimumRecommendedRules.ruleset - true - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/ottmp.vcxproj b/etc/visual-studio/ottmp.vcxproj deleted file mode 100644 index 96a5e5596..000000000 --- a/etc/visual-studio/ottmp.vcxproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - - {1EAFF7C8-8215-4EDA-83B2-EEB56CECE84D} - {497e31cb-056b-4f31-abb8-447fd55ee5a5} - v4.5 - 12.0 - ot - Windows10 - WindowsKernelModeDriver10.0 - Driver - KMDF - Universal - - - - true - - - false - - - - - - - - ..\..\build\bin\$(Platform)\$(Configuration)\sys\ - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - AllRules.ruleset - true - - - - - %(PreProcessorDefinitions); - NDIS_MINIPORT_DRIVER=1; - NDIS_WDM=1; - NDIS650_MINIPORT=1; - OTTMP_LEGACY=1; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\examples\drivers\windows\include; - ..\..\examples\drivers\windows\ottmp; - - Level4 - true - %(DisableSpecificWarnings);4200;4201;4214 - true - ..\..\include\openthread\platform\logging-windows.h - -km %(WppAdditionalOptions) - ottmp - WPP_INIT_TRACING - true - - - - %(PreProcessorDefinitions); - NDIS_MINIPORT_DRIVER=1; - NDIS_WDM=1; - NDIS650_MINIPORT=1; - OTTMP_LEGACY=1; - - %(AdditionalIncludeDirectories);..;.; - - - - %(AdditionalDependencies); - ndis.lib; - - - - inf2cat /driver:$(TargetDir) /os:8_ARM - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/ottmp.vcxproj.filters b/etc/visual-studio/ottmp.vcxproj.filters deleted file mode 100644 index 64ba1d03c..000000000 --- a/etc/visual-studio/ottmp.vcxproj.filters +++ /dev/null @@ -1,21 +0,0 @@ - - - - - {BED10704-BFDA-427C-BB01-B08F20AB1718} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {A6C61B28-961C-4B63-892B-A7E5EB2A4B3E} - h;hpp;hxx;hm;inl;inc;xsd - - - {0CBFC63C-11CB-4E5F-95F1-187BE3F6DA44} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {6C2BAFD4-E244-4FF2-A002-FBCCF14AFA9D} - inf;inv;inx;mof;mc; - - - \ No newline at end of file diff --git a/etc/visual-studio/spinel_k.vcxproj b/etc/visual-studio/spinel_k.vcxproj deleted file mode 100644 index ed09929a4..000000000 --- a/etc/visual-studio/spinel_k.vcxproj +++ /dev/null @@ -1,72 +0,0 @@ - - - - - {A55766B5-58B6-4519-835E-5A4B7C164B5A} - {8c0e3d8b-df43-455b-815a-4a0e72973bc6} - v4.5 - 12.0 - Debug - Win32 - ot - KMDF - Universal - - - WindowsKernelModeDriver10.0 - StaticLibrary - - - - Windows10 - true - - - Windows10 - false - - - - - - - - ..\..\build\bin\$(Platform)\$(Configuration)\lib\ - ..\..\build\obj\$(Platform)\$(Configuration)\$(ProjectName)\ - - - - - %(PreprocessorDefinitions); - HAVE_STRNLEN=1; - OPENTHREAD_FTD=1; - HAVE_STDBOOL_H=1; - HAVE_STDINT_H=1; - SPINEL_PLATFORM_DOESNT_IMPLEMENT_ERRNO_VAR=1; - OPENTHREAD_CONFIG_FILE="openthread-windows-config.h"; - OPENTHREAD_PROJECT_CORE_CONFIG_FILE="openthread-core-windows-config.h"; - - - %(AdditionalIncludeDirectories); - ..\..\include; - ..\..\src\core; - ..\..\examples\drivers\windows\include_c99; - - 4100;4706;4748;%(DisableSpecificWarnings) - true - true - ..\..\include\openthread\platform\logging-windows.h - -km %(WppAdditionalOptions) - otCore - WPP_INIT_TRACING - - - - - - - - - - - \ No newline at end of file diff --git a/etc/visual-studio/spinel_k.vcxproj.filters b/etc/visual-studio/spinel_k.vcxproj.filters deleted file mode 100644 index 24312b902..000000000 --- a/etc/visual-studio/spinel_k.vcxproj.filters +++ /dev/null @@ -1,27 +0,0 @@ - - - - - {C034F7F4-3CBD-4B9A-A033-0D76A195B581} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {7A95885E-AD23-439A-B283-9BDE0E39D84E} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {1E1DF93E-9746-4688-A1F0-7B59378CF28F} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - - - Header Files - - - \ No newline at end of file diff --git a/examples/Makefile.am b/examples/Makefile.am index cee5b62c1..d25b86c07 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -35,10 +35,6 @@ DIST_SUBDIRS = \ apps \ $(NULL) -EXTRA_DIST = \ - drivers \ - $(NULL) - # Always build (e.g. for 'make all') these subdirectories. SUBDIRS = \ diff --git a/examples/apps/windows/App.xaml b/examples/apps/windows/App.xaml deleted file mode 100644 index 10b02c406..000000000 --- a/examples/apps/windows/App.xaml +++ /dev/null @@ -1,35 +0,0 @@ - - - - diff --git a/examples/apps/windows/App.xaml.cpp b/examples/apps/windows/App.xaml.cpp deleted file mode 100644 index cf33b5432..000000000 --- a/examples/apps/windows/App.xaml.cpp +++ /dev/null @@ -1,146 +0,0 @@ -/* - * Copyright (c) 2016, The OpenThread Authors. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holder nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#include "pch.h" -#include "MainPage.xaml.h" - -using namespace ot; - -using namespace Platform; -using namespace Windows::ApplicationModel; -using namespace Windows::ApplicationModel::Activation; -using namespace Windows::Foundation; -using namespace Windows::Foundation::Collections; -using namespace Windows::UI::Xaml; -using namespace Windows::UI::Xaml::Controls; -using namespace Windows::UI::Xaml::Controls::Primitives; -using namespace Windows::UI::Xaml::Data; -using namespace Windows::UI::Xaml::Input; -using namespace Windows::UI::Xaml::Interop; -using namespace Windows::UI::Xaml::Media; -using namespace Windows::UI::Xaml::Navigation; - -/// -/// Initializes the singleton application object. This is the first line of authored code -/// executed, and as such is the logical equivalent of main() or WinMain(). -/// -App::App() -{ - InitializeComponent(); - Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending); -} - -/// -/// Invoked when the application is launched normally by the end user. Other entry points -/// will be used such as when the application is launched to open a specific file. -/// -/// Details about the launch request and process. -void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) -{ -#if _DEBUG - // Show graphics profiling information while debugging. - if (IsDebuggerPresent()) - { - // Display the current frame rate counters - DebugSettings->EnableFrameRateCounter = true; - } -#endif - auto rootFrame = dynamic_cast(Window::Current->Content); - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == nullptr) - { - // Create a Frame to act as the navigation context and associate it with - // a SuspensionManager key - rootFrame = ref new Frame(); - - rootFrame->NavigationFailed += ref new Windows::UI::Xaml::Navigation::NavigationFailedEventHandler(this, &App::OnNavigationFailed); - - if (e->PreviousExecutionState == ApplicationExecutionState::Terminated) - { - // TODO: Restore the saved session state only when appropriate, scheduling the - // final launch steps after the restore is complete - } - - if (e->PrelaunchActivated == false) - { - if (rootFrame->Content == nullptr) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments); - } - // Place the frame in the current Window - Window::Current->Content = rootFrame; - // Ensure the current window is active - Window::Current->Activate(); - } - } - else - { - if (e->PrelaunchActivated == false) - { - if (rootFrame->Content == nullptr) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments); - } - // Ensure the current window is active - Window::Current->Activate(); - } - } -} - -/// -/// Invoked when application execution is being suspended. Application state is saved -/// without knowing whether the application will be terminated or resumed with the contents -/// of memory still intact. -/// -/// The source of the suspend request. -/// Details about the suspend request. -void App::OnSuspending(Object^ sender, SuspendingEventArgs^ e) -{ - (void) sender; // Unused parameter - (void) e; // Unused parameter - - //TODO: Save application state and stop any background activity -} - -/// -/// Invoked when Navigation to a certain page fails -/// -/// The Frame which failed navigation -/// Details about the navigation failure -void App::OnNavigationFailed(Platform::Object ^sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^e) -{ - throw ref new FailureException("Failed to load Page " + e->SourcePageType.Name); -} diff --git a/examples/apps/windows/App.xaml.h b/examples/apps/windows/App.xaml.h deleted file mode 100644 index 0449c8953..000000000 --- a/examples/apps/windows/App.xaml.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2016, The OpenThread Authors. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holder nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#pragma once - -#include "App.g.h" - -namespace ot -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - ref class App sealed - { - protected: - virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) override; - - internal: - App(); - - private: - void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e); - void OnNavigationFailed(Platform::Object ^sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^e); - }; -} diff --git a/examples/apps/windows/ClientArgs.h b/examples/apps/windows/ClientArgs.h deleted file mode 100644 index 3943a11b2..000000000 --- a/examples/apps/windows/ClientArgs.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) 2016, The OpenThread Authors. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holder nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#pragma once - -namespace ot -{ - -public ref class ClientArgs sealed -{ -public: - property Windows::Networking::HostName^ ServerHostName; - property Platform::String^ ServerPort; - property Windows::Networking::HostName^ ClientHostName; - property Platform::String^ ClientPort; -}; - -} // namespace ot diff --git a/examples/apps/windows/ClientControl.xaml b/examples/apps/windows/ClientControl.xaml deleted file mode 100644 index 4f00fbbb2..000000000 --- a/examples/apps/windows/ClientControl.xaml +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -