Explorar el Código

Initial commit

kaezin hace 8 años
commit
083a8b2371
Se han modificado 3 ficheros con 259 adiciones y 0 borrados
  1. 249 0
      .gitignore
  2. 8 0
      LICENSE
  3. 2 0
      README.md

+ 249 - 0
.gitignore

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

+ 8 - 0
LICENSE

@@ -0,0 +1,8 @@
1
+MIT License
2
+Copyright (c) <year> <copyright holders>
3
+
4
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
1
+# injector
2
+