This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 40f16b4
Showing
34 changed files
with
3,999 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# Auth files | ||
*.auth | ||
*.azureauth | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
.vs/ | ||
*.lock.json | ||
developer/ | ||
|
||
# Build results | ||
binaries/ | ||
[Dd]ebug*/ | ||
[Rr]elease/ | ||
build/ | ||
src/NuGet.Config | ||
tools/7-zip/ | ||
|
||
[Tt]est[Rr]esult | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
|
||
*.pidb | ||
|
||
*.log | ||
*.scc | ||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
|
||
# Code analysis | ||
*.CodeAnalysisLog.xml | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
|
||
*.[Rr]e[Ss]harper | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
|
||
# Others | ||
[Bb]in | ||
[Oo]bj | ||
TestResults | ||
[Tt]est[Rr]esult* | ||
*.Cache | ||
ClientBin | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*.dbmdl | ||
node_modules | ||
|
||
*.[Pp]ublish.xml | ||
|
||
Generated_Code #added for RIA/Silverlight projects | ||
|
||
# Build tasks | ||
tools/*.dll | ||
|
||
# Sensitive files | ||
*.keys | ||
*.pfx | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
|
||
# NuGet | ||
packages | ||
packages/repositories.config | ||
|
||
# Mac development | ||
.DS_Store | ||
|
||
# Specification DLLs | ||
*.Specification.dll | ||
|
||
# Generated readme.txt files # | ||
src/*/readme.txt | ||
|
||
build.out | ||
.nuget/ | ||
|
||
# Azure Project | ||
csx/ | ||
*.GhostDoc.xml | ||
pingme.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"hostingPlanName": { | ||
"type": "string", | ||
"defaultValue": "" | ||
}, | ||
"skuName": { | ||
"type": "string", | ||
"defaultValue": "" | ||
}, | ||
"skuCapacity": { | ||
"type": "int", | ||
"defaultValue": 0 | ||
}, | ||
"webSiteName": { | ||
"type": "string", | ||
"defaultValue": "" | ||
} | ||
}, | ||
"resources": [ | ||
{ | ||
"apiVersion": "2015-08-01", | ||
"name": "[parameters('hostingPlanName')]", | ||
"type": "Microsoft.Web/serverfarms", | ||
"location": "[resourceGroup().location]", | ||
"tags": { | ||
"displayName": "HostingPlan" | ||
}, | ||
"sku": { | ||
"name": "[parameters('skuName')]", | ||
"capacity": "[parameters('skuCapacity')]" | ||
}, | ||
"properties": { | ||
"name": "[parameters('hostingPlanName')]" | ||
} | ||
}, | ||
{ | ||
"apiVersion": "2015-08-01", | ||
"name": "[parameters('webSiteName')]", | ||
"type": "Microsoft.Web/sites", | ||
"location": "[resourceGroup().location]", | ||
"tags": { | ||
"[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]": "Resource", | ||
"displayName": "Website" | ||
}, | ||
"dependsOn": [ | ||
"[concat('Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]" | ||
], | ||
"properties": { | ||
"name": "[parameters('webSiteName')]", | ||
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]" | ||
}, | ||
"resources": [ | ||
{ | ||
"apiVersion": "2015-08-01", | ||
"name": "web", | ||
"type": "config", | ||
"dependsOn": [ | ||
"[concat('Microsoft.Web/sites/', parameters('webSiteName'))]" | ||
], | ||
"properties": { | ||
"javaVersion": "1.8", | ||
"javaContainer": "TOMCAT", | ||
"javaContainerVersion": "8.0" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.