Skip to content

Commit 9213a5d

Browse files
committed
Adding email Azure Func project
1 parent d3084a9 commit 9213a5d

File tree

153 files changed

+422
-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.

153 files changed

+422
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

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

0 commit comments

Comments
 (0)