Skip to content

Commit ba84816

Browse files
committed
Add all files
0 parents  commit ba84816

File tree

2,103 files changed

+288120
-0
lines changed

Some content is hidden

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

2,103 files changed

+288120
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
*.cs text diff=csharp
3+
*.sln text eol=crlf
4+
*.csproj text eol=crlf

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.vs/
2+
bin/
3+
obj/
4+
*.suo
5+
*.user
6+
_ReSharper*/
7+
*.ReSharper
8+
*.patch
9+
/packages
10+
*.ide/
11+
*.tmp_proj
12+
project.lock.json

.gitmodules

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[submodule "Libraries/dnlib"]
2+
path = Libraries/dnlib
3+
url = https://github.com/0xd4d/dnlib.git
4+
[submodule "Plugins/ILSpy.Decompiler/NRefactory"]
5+
path = Plugins/ILSpy.Decompiler/NRefactory
6+
url = https://github.com/0xd4d/nrefactory.git
7+
[submodule "Libraries/ICSharpCode.AvalonEdit"]
8+
path = Libraries/ICSharpCode.AvalonEdit
9+
url = https://github.com/0xd4d/avalonedit.git
10+
[submodule "Libraries/ICSharpCode.TreeView"]
11+
path = Libraries/ICSharpCode.TreeView
12+
url = [email protected]:0xd4d/icsharpcode.treeview.git
13+
[submodule "Plugins/ILSpy.Decompiler/ICSharpCode.Decompiler"]
14+
path = Plugins/ILSpy.Decompiler/ICSharpCode.Decompiler
15+
url = [email protected]:0xd4d/icsharpcode.decompiler.git

Libraries/ICSharpCode.AvalonEdit

Submodule ICSharpCode.AvalonEdit added at f5647dd

Libraries/ICSharpCode.TreeView

Submodule ICSharpCode.TreeView added at d1e06e0

Libraries/dnlib

Submodule dnlib added at f77429d

Licenses/CREDITS.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
dnSpy credits:
2+
3+
0xd4d
4+
Ki
5+
6+
7+
ILSpy decompiler and analyzer credits:
8+
9+
Daniel Grunwald
10+
David Srbecky
11+
Ed Harvey
12+
Siegfried Pammer
13+
Artur Zgodzinski
14+
Eusebiu Marcu
15+
Pent Ploompuu
16+
Ki
17+
0xd4d
18+
19+
20+
Translators:
21+
22+
Chinese Simplified
23+
Ulysses Wu
24+
YanJun Sun
25+
iFish
26+
SquallATF
27+
linkinshi
28+
29+
Russian
30+
Igor
31+
Konctantin

Licenses/GPLv3.txt

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

Licenses/LICENSE.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
dnSpy is released under the GPLv3 license, see GPLv3.txt for more information.
2+
3+
Copyright (C) 2014-2016 [email protected]
4+
5+
This file is part of dnSpy
6+
7+
dnSpy is free software: you can redistribute it and/or modify
8+
it under the terms of the GNU General Public License as published by
9+
the Free Software Foundation, either version 3 of the License, or
10+
(at your option) any later version.
11+
12+
dnSpy is distributed in the hope that it will be useful,
13+
but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
GNU General Public License for more details.
16+
17+
You should have received a copy of the GNU General Public License
18+
along with dnSpy. If not, see <http://www.gnu.org/licenses/>.

Licenses/OtherLicenses.txt

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
Original licenses of code or other libraries used by dnSpy. Some or all of them have been modified and are now released under the GPLv3 license, like dnSpy. The following license info is the original licenses.
2+
3+
***********************************************************************************
4+
dnlib:
5+
6+
Copyright (C) 2012-2016 [email protected]
7+
8+
Permission is hereby granted, free of charge, to any person obtaining
9+
a copy of this software and associated documentation files (the
10+
"Software"), to deal in the Software without restriction, including
11+
without limitation the rights to use, copy, modify, merge, publish,
12+
distribute, sublicense, and/or sell copies of the Software, and to
13+
permit persons to whom the Software is furnished to do so, subject to
14+
the following conditions:
15+
16+
The above copyright notice and this permission notice shall be
17+
included in all copies or substantial portions of the Software.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
23+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26+
27+
***********************************************************************************
28+
BAML Decompiler:
29+
30+
Copyright (c) 2015 Ki
31+
32+
Permission is hereby granted, free of charge, to any person obtaining a copy
33+
of this software and associated documentation files (the "Software"), to deal
34+
in the Software without restriction, including without limitation the rights
35+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36+
copies of the Software, and to permit persons to whom the Software is
37+
furnished to do so, subject to the following conditions:
38+
39+
The above copyright notice and this permission notice shall be included in
40+
all copies or substantial portions of the Software.
41+
42+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48+
THE SOFTWARE.
49+
50+
***********************************************************************************
51+
Analyzer:
52+
AvalonEdit:
53+
ICSharpCode.Decompiler:
54+
ICSharpCode.NRefactory:
55+
ICSharpCode.TreeView:
56+
57+
Copyright (c) 2011-2014 AlphaSierraPapa for the SharpDevelop team
58+
59+
Permission is hereby granted, free of charge, to any person obtaining a copy of this
60+
software and associated documentation files (the "Software"), to deal in the Software
61+
without restriction, including without limitation the rights to use, copy, modify, merge,
62+
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
63+
to whom the Software is furnished to do so, subject to the following conditions:
64+
65+
The above copyright notice and this permission notice shall be included in all copies or
66+
substantial portions of the Software.
67+
68+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
69+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
70+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
71+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
72+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
73+
DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)