Skip to content

Commit 373e68b

Browse files
authored
Merge pull request #1 from agileobjects/features/InitialCommit
Features/initial commit
2 parents c776e8f + e9fe5d2 commit 373e68b

File tree

162 files changed

+7012
-140
lines changed

Some content is hidden

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

162 files changed

+7012
-140
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
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

Lines changed: 39 additions & 139 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1+
_site
2+
.vs
3+
.DS_Store
4+
.jekyll
5+
.jekyll-metadata
6+
.jekyll-cache
7+
.bundle
8+
.sass-cache
9+
Gemfile
10+
Gemfile.lock
11+
node_modules
12+
package.json
13+
14+
/Properties/launchSettings.json
15+
116
## Ignore Visual Studio temporary files, build results, and
217
## files generated by popular Visual Studio add-ons.
3-
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
518

619
# User-specific files
7-
*.rsuser
820
*.suo
921
*.user
1022
*.userosscache
@@ -13,68 +25,48 @@
1325
# User-specific files (MonoDevelop/Xamarin Studio)
1426
*.userprefs
1527

16-
# Mono auto generated files
17-
mono_crash.*
18-
1928
# Build results
2029
[Dd]ebug/
2130
[Dd]ebugPublic/
2231
[Rr]elease/
2332
[Rr]eleases/
2433
x64/
2534
x86/
26-
[Aa][Rr][Mm]/
27-
[Aa][Rr][Mm]64/
35+
build/
2836
bld/
29-
[Bb]in/
30-
[Oo]bj/
31-
[Ll]og/
32-
[Ll]ogs/
37+
bin/
38+
Bin/
39+
obj/
40+
Obj/
3341

34-
# Visual Studio 2015/2017 cache/options directory
42+
# Visual Studio 2015 cache/options directory
3543
.vs/
36-
# Uncomment if you have tasks that create the project's static files in wwwroot
37-
#wwwroot/
44+
/wwwroot/dist/
45+
/ClientApp/dist/
3846

39-
# Visual Studio 2017 auto generated files
40-
Generated\ Files/
47+
/yarn.lock
4148

4249
# MSTest test Results
4350
[Tt]est[Rr]esult*/
4451
[Bb]uild[Ll]og.*
4552

46-
# NUnit
53+
# NUNIT
4754
*.VisualState.xml
4855
TestResult.xml
49-
nunit-*.xml
5056

5157
# Build Results of an ATL Project
5258
[Dd]ebugPS/
5359
[Rr]eleasePS/
5460
dlldata.c
5561

56-
# Benchmark Results
57-
BenchmarkDotNet.Artifacts/
58-
59-
# .NET Core
60-
project.lock.json
61-
project.fragment.lock.json
62-
artifacts/
63-
64-
# StyleCop
65-
StyleCopReport.xml
66-
67-
# Files built by Visual Studio
6862
*_i.c
6963
*_p.c
70-
*_h.h
64+
*_i.h
7165
*.ilk
7266
*.meta
7367
*.obj
74-
*.iobj
7568
*.pch
7669
*.pdb
77-
*.ipdb
7870
*.pgc
7971
*.pgd
8072
*.rsp
@@ -84,7 +76,6 @@ StyleCopReport.xml
8476
*.tlh
8577
*.tmp
8678
*.tmp_proj
87-
*_wpftmp.csproj
8879
*.log
8980
*.vspscc
9081
*.vssscc
@@ -104,18 +95,13 @@ ipch/
10495
*.opensdf
10596
*.sdf
10697
*.cachefile
107-
*.VC.db
108-
*.VC.VC.opendb
10998

11099
# Visual Studio profiler
111100
*.psess
112101
*.vsp
113102
*.vspx
114103
*.sap
115104

116-
# Visual Studio Trace Files
117-
*.e2e
118-
119105
# TFS 2012 Local Workspace
120106
$tf/
121107

@@ -127,20 +113,15 @@ _ReSharper*/
127113
*.[Rr]e[Ss]harper
128114
*.DotSettings.user
129115

116+
# JustCode is a .NET coding add-in
117+
.JustCode
118+
130119
# TeamCity is a build add-in
131120
_TeamCity*
132121

133122
# DotCover is a Code Coverage Tool
134123
*.dotCover
135124

136-
# AxoCover is a Code Coverage Tool
137-
.axoCover/*
138-
!.axoCover/settings.json
139-
140-
# Visual Studio code coverage results
141-
*.coverage
142-
*.coveragexml
143-
144125
# NCrunch
145126
_NCrunch_*
146127
.*crunch*.local.xml
@@ -172,29 +153,19 @@ publish/
172153
# Publish Web Output
173154
*.[Pp]ublish.xml
174155
*.azurePubxml
175-
# Note: Comment the next line if you want to checkin your web deploy settings,
156+
# TODO: Comment the next line if you want to checkin your web deploy settings
176157
# but database connection strings (with potential passwords) will be unencrypted
177158
*.pubxml
178159
*.publishproj
179160

180-
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181-
# checkin your Azure Web App publish settings, but sensitive information contained
182-
# in these scripts will be unencrypted
183-
PublishScripts/
184-
185161
# NuGet Packages
186162
*.nupkg
187-
# NuGet Symbol Packages
188-
*.snupkg
189163
# The packages folder can be ignored because of Package Restore
190-
**/[Pp]ackages/*
164+
**/packages/*
191165
# except build/, which is used as an MSBuild target.
192-
!**/[Pp]ackages/build/
166+
!**/packages/build/
193167
# Uncomment if necessary however generally it will be regenerated when needed
194-
#!**/[Pp]ackages/repositories.config
195-
# NuGet v3's project.json files produces more ignorable files
196-
*.nuget.props
197-
*.nuget.targets
168+
#!**/packages/repositories.config
198169

199170
# Microsoft Azure Build Output
200171
csx/
@@ -204,39 +175,30 @@ csx/
204175
ecf/
205176
rcf/
206177

207-
# Windows Store app package directories and files
178+
# Microsoft Azure ApplicationInsights config file
179+
ApplicationInsights.config
180+
181+
# Windows Store app package directory
208182
AppPackages/
209183
BundleArtifacts/
210-
Package.StoreAssociation.xml
211-
_pkginfo.txt
212-
*.appx
213-
*.appxbundle
214-
*.appxupload
215184

216185
# Visual Studio cache files
217186
# files ending in .cache can be ignored
218187
*.[Cc]ache
219188
# but keep track of directories ending in .cache
220-
!?*.[Cc]ache/
189+
!*.[Cc]ache/
221190

222191
# Others
223192
ClientBin/
224193
~$*
225194
*~
226195
*.dbmdl
227196
*.dbproj.schemaview
228-
*.jfm
229197
*.pfx
230198
*.publishsettings
231199
orleans.codegen.cs
232200

233-
# Including strong name files can present a security risk
234-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
235-
#*.snk
236-
237-
# Since there are multiple workflows, uncomment next line to ignore bower_components
238-
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
239-
#bower_components/
201+
/node_modules
240202

241203
# RIA/Silverlight projects
242204
Generated_Code/
@@ -248,22 +210,15 @@ _UpgradeReport_Files/
248210
Backup*/
249211
UpgradeLog*.XML
250212
UpgradeLog*.htm
251-
ServiceFabricBackup/
252-
*.rptproj.bak
253213

254214
# SQL Server files
255215
*.mdf
256216
*.ldf
257-
*.ndf
258217

259218
# Business Intelligence projects
260219
*.rdl.data
261220
*.bim.layout
262221
*.bim_*.settings
263-
*.rptproj.rsuser
264-
*- [Bb]ackup.rdl
265-
*- [Bb]ackup ([0-9]).rdl
266-
*- [Bb]ackup ([0-9][0-9]).rdl
267222

268223
# Microsoft Fakes
269224
FakesAssemblies/
@@ -273,17 +228,13 @@ FakesAssemblies/
273228

274229
# Node.js Tools for Visual Studio
275230
.ntvs_analysis.dat
276-
node_modules/
277231

278232
# Visual Studio 6 build log
279233
*.plg
280234

281235
# Visual Studio 6 workspace options file
282236
*.opt
283237

284-
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
285-
*.vbw
286-
287238
# Visual Studio LightSwitch build output
288239
**/*.HTMLClient/GeneratedArtifacts
289240
**/*.DesktopClient/GeneratedArtifacts
@@ -294,57 +245,6 @@ _Pvt_Extensions
294245

295246
# Paket dependency manager
296247
.paket/paket.exe
297-
paket-files/
298248

299249
# FAKE - F# Make
300250
.fake/
301-
302-
# CodeRush personal settings
303-
.cr/personal
304-
305-
# Python Tools for Visual Studio (PTVS)
306-
__pycache__/
307-
*.pyc
308-
309-
# Cake - Uncomment if you are using it
310-
# tools/**
311-
# !tools/packages.config
312-
313-
# Tabs Studio
314-
*.tss
315-
316-
# Telerik's JustMock configuration file
317-
*.jmconfig
318-
319-
# BizTalk build output
320-
*.btp.cs
321-
*.btm.cs
322-
*.odx.cs
323-
*.xsd.cs
324-
325-
# OpenCover UI analysis results
326-
OpenCover/
327-
328-
# Azure Stream Analytics local run output
329-
ASALocalRun/
330-
331-
# MSBuild Binary and Structured Log
332-
*.binlog
333-
334-
# NVidia Nsight GPU debugger configuration file
335-
*.nvuser
336-
337-
# MFractors (Xamarin productivity tool) working folder
338-
.mfractor/
339-
340-
# Local History for Visual Studio
341-
.localhistory/
342-
343-
# BeatPulse healthcheck temp database
344-
healthchecksdb
345-
346-
# Backup folder for Package Reference Convert tool in Visual Studio 2017
347-
MigrationBackup/
348-
349-
# Ionide (cross platform F# VS Code tools) working folder
350-
.ionide/
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
5+
<UserSecretsId>262161b6-797e-41c8-9768-67b5559c64fd</UserSecretsId>
6+
</PropertyGroup>
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.0.0" />
9+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="3.0.0" />
10+
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.1" />
11+
</ItemGroup>
12+
<ItemGroup>
13+
<None Update="host.json">
14+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
15+
</None>
16+
<None Update="local.settings.json">
17+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18+
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
19+
</None>
20+
</ItemGroup>
21+
</Project>

0 commit comments

Comments
 (0)