Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
Initial commit; Can create and lookup secrets.
Browse files Browse the repository at this point in the history
  • Loading branch information
soyfrien committed Mar 11, 2017
1 parent 367d380 commit 7213ccb
Show file tree
Hide file tree
Showing 614 changed files with 119,474 additions and 1 deletion.
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dlldata.c

# DNX
project.lock.json
project.fragment.lock.json
artifacts/

*_i.c
Expand Down Expand Up @@ -142,7 +143,7 @@ publish/
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
#*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
Expand Down Expand Up @@ -188,6 +189,7 @@ ClientBin/
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
node_modules/
Expand Down Expand Up @@ -250,3 +252,10 @@ paket-files/
# JetBrains Rider
.idea/
*.sln.iml

# CodeRush
.cr/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
34 changes: 34 additions & 0 deletions Kieru.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kieru", "Kieru\Kieru.csproj", "{14909D91-E27E-4F91-85A2-939494A9A23B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|x64.ActiveCfg = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|x64.Build.0 = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|x86.ActiveCfg = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Debug|x86.Build.0 = Debug|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|Any CPU.Build.0 = Release|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|x64.ActiveCfg = Release|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|x64.Build.0 = Release|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|x86.ActiveCfg = Release|Any CPU
{14909D91-E27E-4F91-85A2-939494A9A23B}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions Kieru/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "wwwroot/extern"
}
Loading

0 comments on commit 7213ccb

Please sign in to comment.