Skip to content

Commit 61794ed

Browse files
committed
Initial commit
0 parents  commit 61794ed

Some content is hidden

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

55 files changed

+2826
-0
lines changed

.github_changelog_generator

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
user=nanoframework
2+
project=nanoFramework.Logging
3+
issues=true
4+
add_issues_wo_labels=false
5+
add_pr_wo_labels=false
6+
add_issues_wo_labels=false
7+
filter_issues_by_milestone=false
8+
exclude_labels=Area: Config-and-Build,Area: Infrastructure-and-Organization,reverted
9+
enhancement_labels=Type: enhancement
10+
bug_labels=Type: bug
11+
merge_prefix=**Documentation and other chores:**
12+
unreleased_label=**Changes available only in 'Preview' NuGet packages:**
13+
author=false

.gitignore

Lines changed: 257 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,257 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
13+
# Build results
14+
[Dd]ebug/
15+
[Dd]ebugPublic/
16+
[Rr]elease/
17+
[Rr]eleases/
18+
x64/
19+
x86/
20+
bld/
21+
[Bb]in/
22+
[Oo]bj/
23+
[Ll]og/
24+
25+
# Visual Studio 2015 cache/options directory
26+
.vs/
27+
# Uncomment if you have tasks that create the project's static files in wwwroot
28+
#wwwroot/
29+
30+
# MSTest test Results
31+
[Tt]est[Rr]esult*/
32+
[Bb]uild[Ll]og.*
33+
34+
# NUNIT
35+
*.VisualState.xml
36+
TestResult.xml
37+
38+
# Build Results of an ATL Project
39+
[Dd]ebugPS/
40+
[Rr]eleasePS/
41+
dlldata.c
42+
43+
# DNX
44+
project.lock.json
45+
artifacts/
46+
47+
*_i.c
48+
*_p.c
49+
*_i.h
50+
*.ilk
51+
*.meta
52+
*.obj
53+
*.pch
54+
*.pdb
55+
*.pgc
56+
*.pgd
57+
*.sbr
58+
*.tlb
59+
*.tli
60+
*.tlh
61+
*.tmp
62+
*.tmp_proj
63+
*.log
64+
*.vspscc
65+
*.vssscc
66+
.builds
67+
*.pidb
68+
*.svclog
69+
*.scc
70+
71+
# Chutzpah Test files
72+
_Chutzpah*
73+
74+
# Visual C++ cache files
75+
ipch/
76+
*.aps
77+
*.ncb
78+
*.opendb
79+
*.opensdf
80+
*.sdf
81+
*.cachefile
82+
*.VC.db
83+
*.VC.VC.opendb
84+
85+
# Visual Studio profiler
86+
*.psess
87+
*.vsp
88+
*.vspx
89+
*.sap
90+
91+
# TFS 2012 Local Workspace
92+
$tf/
93+
94+
# Guidance Automation Toolkit
95+
*.gpState
96+
97+
# ReSharper is a .NET coding add-in
98+
_ReSharper*/
99+
*.[Rr]e[Ss]harper
100+
*.DotSettings.user
101+
102+
# JustCode is a .NET coding add-in
103+
.JustCode
104+
105+
# TeamCity is a build add-in
106+
_TeamCity*
107+
108+
# DotCover is a Code Coverage Tool
109+
*.dotCover
110+
111+
# NCrunch
112+
_NCrunch_*
113+
.*crunch*.local.xml
114+
nCrunchTemp_*
115+
116+
# MightyMoose
117+
*.mm.*
118+
AutoTest.Net/
119+
120+
# Web workbench (sass)
121+
.sass-cache/
122+
123+
# Installshield output folder
124+
[Ee]xpress/
125+
126+
# DocProject is a documentation generator add-in
127+
DocProject/buildhelp/
128+
DocProject/Help/*.HxT
129+
DocProject/Help/*.HxC
130+
DocProject/Help/*.hhc
131+
DocProject/Help/*.hhk
132+
DocProject/Help/*.hhp
133+
DocProject/Help/Html2
134+
DocProject/Help/html
135+
136+
# Click-Once directory
137+
publish/
138+
139+
# Publish Web Output
140+
*.[Pp]ublish.xml
141+
*.azurePubxml
142+
# TODO: Comment the next line if you want to checkin your web deploy settings
143+
# but database connection strings (with potential passwords) will be unencrypted
144+
*.pubxml
145+
*.publishproj
146+
147+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
148+
# checkin your Azure Web App publish settings, but sensitive information contained
149+
# in these scripts will be unencrypted
150+
PublishScripts/
151+
152+
# NuGet Packages
153+
*.nupkg
154+
# The packages folder can be ignored because of Package Restore
155+
**/packages/*
156+
# except build/, which is used as an MSBuild target.
157+
!**/packages/build/
158+
# Uncomment if necessary however generally it will be regenerated when needed
159+
#!**/packages/repositories.config
160+
# NuGet v3's project.json files produces more ignoreable files
161+
*.nuget.props
162+
*.nuget.targets
163+
164+
# Microsoft Azure Build Output
165+
csx/
166+
*.build.csdef
167+
168+
# Microsoft Azure Emulator
169+
ecf/
170+
rcf/
171+
172+
# Windows Store app package directories and files
173+
AppPackages/
174+
BundleArtifacts/
175+
Package.StoreAssociation.xml
176+
_pkginfo.txt
177+
178+
# Visual Studio cache files
179+
# files ending in .cache can be ignored
180+
*.[Cc]ache
181+
# but keep track of directories ending in .cache
182+
!*.[Cc]ache/
183+
184+
# Others
185+
ClientBin/
186+
~$*
187+
*~
188+
*.dbmdl
189+
*.dbproj.schemaview
190+
*.pfx
191+
*.publishsettings
192+
node_modules/
193+
orleans.codegen.cs
194+
195+
# Since there are multiple workflows, uncomment next line to ignore bower_components
196+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
197+
#bower_components/
198+
199+
# RIA/Silverlight projects
200+
Generated_Code/
201+
202+
# Backup & report files from converting an old project file
203+
# to a newer Visual Studio version. Backup files are not needed,
204+
# because we have git ;-)
205+
_UpgradeReport_Files/
206+
Backup*/
207+
UpgradeLog*.XML
208+
UpgradeLog*.htm
209+
210+
# SQL Server files
211+
*.mdf
212+
*.ldf
213+
214+
# Business Intelligence projects
215+
*.rdl.data
216+
*.bim.layout
217+
*.bim_*.settings
218+
219+
# Microsoft Fakes
220+
FakesAssemblies/
221+
222+
# GhostDoc plugin setting file
223+
*.GhostDoc.xml
224+
225+
# Node.js Tools for Visual Studio
226+
.ntvs_analysis.dat
227+
228+
# Visual Studio 6 build log
229+
*.plg
230+
231+
# Visual Studio 6 workspace options file
232+
*.opt
233+
234+
# Visual Studio LightSwitch build output
235+
**/*.HTMLClient/GeneratedArtifacts
236+
**/*.DesktopClient/GeneratedArtifacts
237+
**/*.DesktopClient/ModelManifest.xml
238+
**/*.Server/GeneratedArtifacts
239+
**/*.Server/ModelManifest.xml
240+
_Pvt_Extensions
241+
242+
# Paket dependency manager
243+
.paket/paket.exe
244+
paket-files/
245+
246+
# FAKE - F# Make
247+
.fake/
248+
249+
# JetBrains Rider
250+
.idea/
251+
*.sln.iml
252+
253+
#sonarcloud
254+
.sonarqube
255+
256+
#SoundCloud
257+
*.sonarqube/

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributor Code of Conduct
2+
3+
Please refer to the contributor Code of Conduct at the Home repository [here](https://github.com/nanoframework/Home/blob/master/CODE_OF_CONDUCT.md.

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing to **nanoFramework**
2+
3+
Please refer to the contribution guidelines at the Home repository [here](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md).

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) .NET Foundation and Contributors
4+
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 all
13+
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 THE
21+
SOFTWARE.

Logging.sln

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31105.61
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "nanoFramework.Logging", ".\nanoFramework.Logging\nanoFramework.Logging.nfproj", "{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{D29DC1AA-A2C8-40BA-AAE9-32E9252E81AD}"
9+
EndProject
10+
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "UnitTestDebugLogging", ".\Tests\UnitTestDebugLogging\UnitTestDebugLogging.nfproj", "{E7EE659C-D98C-43EA-A71A-45758CBF22A4}"
11+
EndProject
12+
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "nanoFramework.Logging.Serial", ".\nanoFramework.Logging.Serial\nanoFramework.Logging.Serial.nfproj", "{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}"
13+
EndProject
14+
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "nanoFramework.Logging.Stream", ".\nanoFramework.Logging.Stream\nanoFramework.Logging.Stream.nfproj", "{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}"
15+
EndProject
16+
Global
17+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
18+
Debug|Any CPU = Debug|Any CPU
19+
Release|Any CPU = Release|Any CPU
20+
EndGlobalSection
21+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
22+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
25+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Release|Any CPU.Build.0 = Release|Any CPU
27+
{0A60F291-B35A-4BF1-BAB9-CD686AF2EED6}.Release|Any CPU.Deploy.0 = Release|Any CPU
28+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
31+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4}.Release|Any CPU.Deploy.0 = Release|Any CPU
34+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Debug|Any CPU.Build.0 = Debug|Any CPU
36+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
37+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{6FC962E1-FF13-406D-A8A6-64BB4DE64B67}.Release|Any CPU.Deploy.0 = Release|Any CPU
40+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
43+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
44+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Release|Any CPU.Build.0 = Release|Any CPU
45+
{38F918AD-5A39-4172-B4B4-ECC2A3FA5B4E}.Release|Any CPU.Deploy.0 = Release|Any CPU
46+
EndGlobalSection
47+
GlobalSection(SolutionProperties) = preSolution
48+
HideSolutionNode = FALSE
49+
EndGlobalSection
50+
GlobalSection(NestedProjects) = preSolution
51+
{E7EE659C-D98C-43EA-A71A-45758CBF22A4} = {D29DC1AA-A2C8-40BA-AAE9-32E9252E81AD}
52+
EndGlobalSection
53+
GlobalSection(ExtensibilityGlobals) = postSolution
54+
SolutionGuid = {B6B973C5-C279-4D31-B450-FC8F9F3E7DBA}
55+
EndGlobalSection
56+
EndGlobal

NuGet.Config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="NuGet" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5+
<add key="Azure Artifacts nanoFramework dev" value="https://pkgs.dev.azure.com/nanoframework/feed/_packaging/sandbox/nuget/v3/index.json" protocolVersion="3" />
6+
</packageSources>
7+
</configuration>

0 commit comments

Comments
 (0)