Skip to content

Commit 64c8152

Browse files
authored
review github files (dotnet#4)
* review github files Reviewed the following files: Readme.md was fine Contributing.md was created and points to the docs repo. Code_of_conduct.md was created and follows the docs repo. .gitignore Created for samples and projects. .github folder: created pull request template and codeowners file based on docs repository. * update readme regarding snippets Snippets are smaller samples, but otherwise should be the same. * respond to feedback. * feedback II * 2nd round feedback * one quick final edit Readme.md files are only included in samples.
1 parent 3d83bbc commit 64c8152

File tree

5 files changed

+260
-185
lines changed

5 files changed

+260
-185
lines changed

.github/CODEOWNERS

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Lines starting with '#' are comments.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# More details are here: https://help.github.com/articles/about-codeowners/
5+
6+
# The '*' pattern is global owners.
7+
# Not adding in this PR, but I'd like to try adding a global owner set with the entire team.
8+
# One interpretation of their docs is that global owners are added only if not removed
9+
# by a more local rule.
10+
11+
# Order is important. The last matching pattern has the most precedence.
12+
# The folders are ordered as follows:
13+
14+
# In each subsection folders are ordered first by depth, then alphabetically.
15+
# This should make it easy to add new rules without breaking existing ones.
16+
17+
# C# samples:
18+
/csharp/** @BillWagner
19+
20+
#### Snippets (under samples)
21+
# C++ snippets
22+
/snippets/cpp/** @rpetrusha
23+
# C# Snippets:
24+
/snippets/csharp/** @BillWagner
25+
# Visual Basic snippets:
26+
/snippets/visualbasic/** @rpetrusha

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Summary
2+
3+
Describe your changes here.
4+
5+
Fixes dotnet/docs#Issue_Number (if available)

.gitignore

Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
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+
build/
21+
!/docs/core/build/
22+
bld/
23+
[Bb]in/
24+
[Oo]bj/
25+
26+
# Visual Studo 2015 cache/options directory
27+
.vs/
28+
29+
# MSTest test Results
30+
[Tt]est[Rr]esult*/
31+
[Bb]uild[Ll]og.*
32+
33+
# NUNIT
34+
*.VisualState.xml
35+
TestResult.xml
36+
37+
# Build Results of an ATL Project
38+
[Dd]ebugPS/
39+
[Rr]eleasePS/
40+
dlldata.c
41+
42+
*_i.c
43+
*_p.c
44+
*_i.h
45+
*.ilk
46+
*.meta
47+
*.obj
48+
*.pch
49+
*.pdb
50+
*.pgc
51+
*.pgd
52+
*.rsp
53+
*.sbr
54+
*.tlb
55+
*.tli
56+
*.tlh
57+
*.tmp
58+
*.tmp_proj
59+
*.log
60+
*.vspscc
61+
*.vssscc
62+
.builds
63+
*.pidb
64+
*.svclog
65+
*.scc
66+
67+
# Chutzpah Test files
68+
_Chutzpah*
69+
70+
# Visual C++ cache files
71+
ipch/
72+
*.aps
73+
*.ncb
74+
*.opensdf
75+
*.sdf
76+
*.cachefile
77+
78+
# Visual Studio profiler
79+
*.psess
80+
*.vsp
81+
*.vspx
82+
83+
# TFS 2012 Local Workspace
84+
$tf/
85+
86+
# Guidance Automation Toolkit
87+
*.gpState
88+
89+
# ReSharper is a .NET coding add-in
90+
_ReSharper*/
91+
*.[Rr]e[Ss]harper
92+
*.DotSettings.user
93+
94+
# JustCode is a .NET coding addin-in
95+
.JustCode
96+
97+
# TeamCity is a build add-in
98+
_TeamCity*
99+
100+
# DotCover is a Code Coverage Tool
101+
*.dotCover
102+
103+
# NCrunch
104+
_NCrunch_*
105+
.*crunch*.local.xml
106+
107+
# MightyMoose
108+
*.mm.*
109+
AutoTest.Net/
110+
111+
# Web workbench (sass)
112+
.sass-cache/
113+
114+
# Installshield output folder
115+
[Ee]xpress/
116+
117+
# DocProject is a documentation generator add-in
118+
DocProject/buildhelp/
119+
DocProject/Help/*.HxT
120+
DocProject/Help/*.HxC
121+
DocProject/Help/*.hhc
122+
DocProject/Help/*.hhk
123+
DocProject/Help/*.hhp
124+
DocProject/Help/Html2
125+
DocProject/Help/html
126+
127+
# Click-Once directory
128+
publish/
129+
130+
# Publish Web Output
131+
*.[Pp]ublish.xml
132+
*.azurePubxml
133+
# TODO: Comment the next line if you want to checkin your web deploy settings
134+
# but database connection strings (with potential passwords) will be unencrypted
135+
*.pubxml
136+
*.publishproj
137+
138+
# NuGet Packages
139+
*.nupkg
140+
# The packages folder can be ignored because of Package Restore
141+
**/packages/*
142+
# except build/, which is used as an MSBuild target.
143+
!**/packages/build/
144+
# Uncomment if necessary however generally it will be regenerated when needed
145+
#!**/packages/repositories.config
146+
147+
# Windows Azure Build Output
148+
csx/
149+
*.build.csdef
150+
151+
# Windows Store app package directory
152+
AppPackages/
153+
154+
# Others
155+
*.[Cc]ache
156+
ClientBin/
157+
[Ss]tyle[Cc]op.*
158+
~$*
159+
*~
160+
*.dbmdl
161+
*.dbproj.schemaview
162+
*.pfx
163+
*.publishsettings
164+
node_modules/
165+
bower_components/
166+
167+
# RIA/Silverlight projects
168+
Generated_Code/
169+
170+
# Backup & report files from converting an old project file
171+
# to a newer Visual Studio version. Backup files are not needed,
172+
# because we have git ;-)
173+
_UpgradeReport_Files/
174+
Backup*/
175+
UpgradeLog*.XML
176+
UpgradeLog*.htm
177+
178+
# SQL Server files
179+
*.mdf
180+
*.ldf
181+
182+
# Business Intelligence projects
183+
*.rdl.data
184+
*.bim.layout
185+
*.bim_*.settings
186+
187+
# Microsoft Fakes
188+
FakesAssemblies/
189+
190+
# Node.js Tools for Visual Studio
191+
.ntvs_analysis.dat
192+
193+
# Visual Studio 6 build log
194+
*.plg
195+
196+
# Visual Studio 6 workspace options file
197+
*.opt
198+
199+
# Spelling add-on file for Visual Studio Code.
200+
spell.json
201+
samples/framework/docker/MVCRandomAnswerGenerator/containerImage
202+
.DS_Store
203+
_dependentPackages/

0 commit comments

Comments
 (0)