Skip to content

Commit 81b160c

Browse files
committed
Initial Commits
0 parents  commit 81b160c

29 files changed

+1970
-0
lines changed

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Autosave files
2+
*~
3+
4+
# build
5+
[Oo]bj/
6+
[Bb]in/
7+
packages/
8+
TestResults/
9+
10+
# globs
11+
Makefile.in
12+
*.DS_Store
13+
*.sln.cache
14+
*.suo
15+
*.cache
16+
*.pidb
17+
*.userprefs
18+
*.usertasks
19+
config.log
20+
config.make
21+
config.status
22+
aclocal.m4
23+
install-sh
24+
autom4te.cache/
25+
*.user
26+
*.tar.gz
27+
tarballs/
28+
test-results/
29+
Thumbs.db
30+
31+
# Mac bundle stuff
32+
*.dmg
33+
*.app
34+
35+
# Extensions
36+
NUnit3TestAdapter-3.8.0.vsix
37+
38+
# resharper
39+
*_Resharper.*
40+
*.Resharper
41+
42+
# dotCover
43+
*.dotCover

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language : csharp
2+
solution : ApiSecuritySolution.sln

ApiSecuritySolution.sln

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ApiUtilLib", "ApiUtilLib\ApiUtilLib.csproj", "{B7805EAB-7C49-4C51-ABAD-864BB81F7B2A}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ApiUtilLibTest", "ApiUtilLibTest\ApiUtilLibTest.csproj", "{B6FD94F7-1689-4DAC-B823-0192E3CA3521}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{24811C8D-E13C-4872-88CA-DFCBBA9F3529}"
9+
ProjectSection(SolutionItems) = preProject
10+
LICENSE = LICENSE
11+
README.md = README.md
12+
CHANGELOG.md = CHANGELOG.md
13+
EndProjectSection
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Release|Any CPU = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{B7805EAB-7C49-4C51-ABAD-864BB81F7B2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{B7805EAB-7C49-4C51-ABAD-864BB81F7B2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{B7805EAB-7C49-4C51-ABAD-864BB81F7B2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{B7805EAB-7C49-4C51-ABAD-864BB81F7B2A}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{B6FD94F7-1689-4DAC-B823-0192E3CA3521}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{B6FD94F7-1689-4DAC-B823-0192E3CA3521}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{B6FD94F7-1689-4DAC-B823-0192E3CA3521}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{B6FD94F7-1689-4DAC-B823-0192E3CA3521}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(MonoDevelopProperties) = preSolution
31+
description = Internal Update
32+
version = 0.1.2
33+
Policies = $0
34+
$0.DotNetNamingPolicy = $1
35+
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
36+
$0.TextStylePolicy = $2
37+
$2.inheritsSet = null
38+
$2.scope = text/x-csharp
39+
$0.CSharpFormattingPolicy = $3
40+
$3.scope = text/x-csharp
41+
$0.TextStylePolicy = $4
42+
$4.FileWidth = 80
43+
$4.TabsToSpaces = True
44+
$4.scope = text/plain
45+
$0.TextStylePolicy = $5
46+
$5.inheritsSet = null
47+
$5.scope = application/config+xml
48+
$0.XmlFormattingPolicy = $6
49+
$6.inheritsSet = null
50+
$6.scope = application/config+xml
51+
$0.TextStylePolicy = $7
52+
$7.inheritsSet = null
53+
$7.scope = application/xml
54+
$0.XmlFormattingPolicy = $8
55+
$8.scope = application/xml
56+
$0.StandardHeader = $9
57+
$0.VersionControlPolicy = $10
58+
EndGlobalSection
59+
EndGlobal

0 commit comments

Comments
 (0)