Skip to content

Commit de16b24

Browse files
authored
Merge pull request #67 from nanoframework/release-v1.0.0
release-v1.0.0
2 parents e93c9c9 + 32ab42a commit de16b24

File tree

127 files changed

+20001
-2
lines changed

Some content is hidden

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

127 files changed

+20001
-2
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright (c) .NET Foundation and Contributors
2+
# See LICENSE file in the project root for full license information.
3+
4+
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running.
5+
6+
name: Daily update dependencies
7+
8+
on:
9+
schedule:
10+
# At 00:00 UTC every day.
11+
- cron: '00 00 * * *'
12+
repository_dispatch:
13+
types: update-dependencies
14+
15+
defaults:
16+
run:
17+
shell: pwsh
18+
19+
jobs:
20+
update-dotnet-preview:
21+
name: Update .NET nanoFramework dependencies
22+
timeout-minutes: 15
23+
runs-on: windows-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/[email protected]
27+
with:
28+
path: main
29+
- name: Checkout tools repo
30+
uses: actions/[email protected]
31+
with:
32+
repository: nanoframework/nf-tools
33+
path: tools
34+
- name: Update dependencies
35+
run: ./github-actions/update-nf-dependencies.ps1
36+
working-directory: tools
37+
- name: Create Pull Request
38+
uses: peter-evans/create-pull-request@v3
39+
if: env.CREATE_PR == 'true'
40+
with:
41+
title: '${{ env.PR_TITLE }}'
42+
body: |
43+
${{ env.PR_MESSAGE }}
44+
45+
[version update]
46+
47+
### :warning: This is an automated update. :warning:
48+
committer: 'nfbot <[email protected]>'
49+
branch: ${{ env.BRANCH_NAME }}
50+
path: main
51+
labels: |
52+
Type: dependencies

.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=lib-nanoFramework.Graphics
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/

0 commit comments

Comments
 (0)