Skip to content

Commit f037c0a

Browse files
committed
Azure IoT SDKs
0 parents  commit f037c0a

File tree

1,798 files changed

+472065
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,798 files changed

+472065
-0
lines changed

.gitattributes

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Default behavior: if Git thinks a file is text (as opposed to binary), it
2+
# will normalize line endings to LF in the repository, but convert to your
3+
# platform's native line endings on checkout (e.g., CRLF for Windows).
4+
* text=auto
5+
6+
# Explicitly declare text files you want to always be normalized and converted
7+
# to native line endings on checkout. E.g.,
8+
#*.c text
9+
10+
# Declare files that will always have CRLF line endings on checkout. E.g.,
11+
#*.sln text eol=crlf
12+
13+
# Declare files that will always have LF line endings on checkout. E.g.,
14+
*.sh text eol=lf
15+
16+
# Denote all files that should not have line endings normalized, should not be
17+
# merged, and should not show in a textual diff.
18+
*.docm binary
19+
*.docx binary
20+
*.ico binary
21+
*.lib binary
22+
*.png binary
23+
*.pptx binary
24+
*.snk binary
25+
*.vsdx binary
26+
*.xps binary

.gitignore

+200
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
# Compiled object files
2+
*.o
3+
*.opp
4+
5+
# Compiled static libraries
6+
*.a
7+
8+
## Ignore Visual Studio temporary files, build results, and
9+
## files generated by popular Visual Studio add-ons.
10+
11+
# User-specific files
12+
*.suo
13+
*.user
14+
*.sln.docstates
15+
16+
# Build results
17+
18+
[Dd]ebug/
19+
[Rr]elease/
20+
x64/
21+
[Bb]in/
22+
[Oo]bj/
23+
24+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
25+
!packages/*/build/
26+
27+
# MSTest test Results
28+
[Tt]est[Rr]esult*/
29+
[Bb]uild[Ll]og.*
30+
31+
*_i.c
32+
*_p.c
33+
*.ilk
34+
*.meta
35+
*.obj
36+
*.pch
37+
*.pdb
38+
*.pgc
39+
*.pgd
40+
*.rsp
41+
*.sbr
42+
*.tlb
43+
*.tli
44+
*.tlh
45+
*.tmp
46+
*.tmp_proj
47+
*.log
48+
*.vspscc
49+
*.vssscc
50+
.builds
51+
*.pidb
52+
*.log
53+
*.scc
54+
55+
# Visual C++ cache files
56+
ipch/
57+
*.aps
58+
*.ncb
59+
*.opensdf
60+
*.sdf
61+
*.cachefile
62+
63+
# Visual Studio profiler
64+
*.psess
65+
*.vsp
66+
*.vspx
67+
68+
# Guidance Automation Toolkit
69+
*.gpState
70+
71+
# ReSharper is a .NET coding add-in
72+
_ReSharper*/
73+
*.[Rr]e[Ss]harper
74+
75+
# TeamCity is a build add-in
76+
_TeamCity*
77+
78+
# DotCover is a Code Coverage Tool
79+
*.dotCover
80+
81+
# NCrunch
82+
*.ncrunch*
83+
.*crunch*.local.xml
84+
85+
# Installshield output folder
86+
[Ee]xpress/
87+
88+
# DocProject is a documentation generator add-in
89+
DocProject/buildhelp/
90+
DocProject/Help/*.HxT
91+
DocProject/Help/*.HxC
92+
DocProject/Help/*.hhc
93+
DocProject/Help/*.hhk
94+
DocProject/Help/*.hhp
95+
DocProject/Help/Html2
96+
DocProject/Help/html
97+
98+
# Click-Once directory
99+
publish/
100+
101+
# Publish Web Output
102+
*.Publish.xml
103+
104+
# NuGet Packages Directory
105+
packages/
106+
107+
# Windows Azure Build Output
108+
csx
109+
*.build.csdef
110+
111+
# Windows Store app package directory
112+
AppPackages/
113+
114+
# Others
115+
sql/
116+
*.Cache
117+
ClientBin/
118+
[Ss]tyle[Cc]op.*
119+
~$*
120+
*~
121+
*.dbmdl
122+
*.[Pp]ublish.xml
123+
*.pfx
124+
*.publishsettings
125+
126+
# RIA/Silverlight projects
127+
Generated_Code/
128+
129+
# Backup & report files from converting an old project file to a newer
130+
# Visual Studio version. Backup files are not needed, because we have git ;-)
131+
_UpgradeReport_Files/
132+
Backup*/
133+
UpgradeLog*.XML
134+
UpgradeLog*.htm
135+
136+
# SQL Server files
137+
App_Data/*.mdf
138+
App_Data/*.ldf
139+
140+
141+
#LightSwitch generated files
142+
GeneratedArtifacts/
143+
_Pvt_Extensions/
144+
ModelManifest.xml
145+
146+
# =========================
147+
# Windows detritus
148+
# =========================
149+
150+
# Windows image file caches
151+
Thumbs.db
152+
ehthumbs.db
153+
154+
# Folder config file
155+
Desktop.ini
156+
157+
# Recycle Bin used on file shares
158+
$RECYCLE.BIN/
159+
160+
# Mac desktop service store files
161+
.DS_Store
162+
163+
# Visual studio build artifacts
164+
*.tlog
165+
*.lastbuildstate
166+
*.idb
167+
*.exp
168+
*.lib
169+
*.dll
170+
171+
# Windows CE build artifacts
172+
Build.err
173+
Build.wrn
174+
Buildx86retail.dat
175+
*.dat
176+
177+
# Tools EXE that doesn't end up in a typical build directory
178+
c/common/tools/macro_utils_h_generator/macro_utils_h_generator.exe
179+
180+
# hg directories should be ignored
181+
**/hg/
182+
183+
# Java
184+
java/**/.idea/
185+
java/**/out/
186+
java/**/target/
187+
java/**/*.iml
188+
java/**/*dependency-reduced-pom.xml
189+
190+
# Node.js
191+
node/**/.settings/
192+
node/**/node_modules/
193+
node/**/.idea/
194+
195+
csharp/NuGet/*.exe
196+
csharp/NuGet/*.nupkg
197+
csharp/.vs/*
198+
service/java/.idea
199+
service/java/target
200+
service/java/iot.service.sdk.java.iml

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Microsoft Azure IoT SDKs
2+
Copyright (c) Microsoft Corporation
3+
All rights reserved.
4+
MIT License
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the ""Software""), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)