Skip to content

Commit b58cc66

Browse files
anudeepsharmaHovsep
authored andcommitted
Updated sample (#2)
1 parent 7ae210f commit b58cc66

File tree

8 files changed

+920
-1
lines changed

8 files changed

+920
-1
lines changed

.gitignore

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# Auth files
5+
*.auth
6+
*.azureauth
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
.vs/
13+
*.lock.json
14+
developer/
15+
16+
# Build results
17+
binaries/
18+
[Dd]ebug*/
19+
[Rr]elease/
20+
build/
21+
src/NuGet.Config
22+
tools/7-zip/
23+
24+
[Tt]est[Rr]esult
25+
[Bb]uild[Ll]og.*
26+
27+
*_i.c
28+
*_p.c
29+
*.ilk
30+
*.meta
31+
*.obj
32+
*.pch
33+
*.pdb
34+
*.pgc
35+
*.pgd
36+
*.rsp
37+
*.sbr
38+
*.tlb
39+
*.tli
40+
*.tlh
41+
*.tmp
42+
*.vspscc
43+
*.vssscc
44+
.builds
45+
46+
*.pidb
47+
48+
*.log
49+
*.scc
50+
# Visual C++ cache files
51+
ipch/
52+
*.aps
53+
*.ncb
54+
*.opensdf
55+
*.sdf
56+
57+
# Visual Studio profiler
58+
*.psess
59+
*.vsp
60+
61+
# Code analysis
62+
*.CodeAnalysisLog.xml
63+
64+
# Guidance Automation Toolkit
65+
*.gpState
66+
67+
# ReSharper is a .NET coding add-in
68+
_ReSharper*/
69+
70+
*.[Rr]e[Ss]harper
71+
72+
# NCrunch
73+
*.ncrunch*
74+
.*crunch*.local.xml
75+
76+
# Installshield output folder
77+
[Ee]xpress
78+
79+
# DocProject is a documentation generator add-in
80+
DocProject/buildhelp/
81+
DocProject/Help/*.HxT
82+
DocProject/Help/*.HxC
83+
DocProject/Help/*.hhc
84+
DocProject/Help/*.hhk
85+
DocProject/Help/*.hhp
86+
DocProject/Help/Html2
87+
DocProject/Help/html
88+
89+
# Click-Once directory
90+
publish
91+
92+
# Publish Web Output
93+
*.Publish.xml
94+
95+
# Others
96+
[Bb]in
97+
[Oo]bj
98+
TestResults
99+
[Tt]est[Rr]esult*
100+
*.Cache
101+
ClientBin
102+
[Ss]tyle[Cc]op.*
103+
~$*
104+
*.dbmdl
105+
node_modules
106+
107+
*.[Pp]ublish.xml
108+
109+
Generated_Code #added for RIA/Silverlight projects
110+
111+
# Build tasks
112+
tools/*.dll
113+
114+
# Sensitive files
115+
*.keys
116+
*.pfx
117+
118+
# Backup & report files from converting an old project file to a newer
119+
# Visual Studio version. Backup files are not needed, because we have git ;-)
120+
_UpgradeReport_Files/
121+
Backup*/
122+
UpgradeLog*.XML
123+
124+
# NuGet
125+
packages
126+
packages/repositories.config
127+
128+
# Mac development
129+
.DS_Store
130+
131+
# Specification DLLs
132+
*.Specification.dll
133+
134+
# Generated readme.txt files #
135+
src/*/readme.txt
136+
137+
build.out
138+
.nuget/
139+
140+
# Azure Project
141+
csx/
142+
*.GhostDoc.xml
143+
pingme.txt

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributing to Azure samples
2+
3+
Thank you for your interest in contributing to Azure samples!
4+
5+
## Ways to contribute
6+
7+
You can contribute to [Azure samples](https://github.com/Azure-Samples/resources-dotnet-deploy-using-arm-template) in a few different ways:
8+
9+
- Submit feedback on [this sample page](https://azure.microsoft.com/documentation/samples/resources-dotnet-deploy-using-arm-template/) whether it was helpful or not.
10+
- Submit issues through [issue tracker](https://github.com/Azure-Samples/resources-dotnet-deploy-using-arm-template/issues) on GitHub. We are actively monitoring the issues and improving our samples.
11+
- If you wish to make code changes to samples, or contribute something new, please follow the [GitHub Forks / Pull requests model](https://help.github.com/articles/fork-a-repo/): Fork the sample repo, make the change and propose it back by submitting a pull request.

0 commit comments

Comments
 (0)