projects
/
platform
/
core
/
csapi
/
opentk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1ff0d9
)
Rewrite .mdb file name fix
author
neonsoup
<neonsoup@gmail.com>
Sun, 27 Dec 2015 20:40:51 +0000
(
00:40
+0400)
committer
neonsoup
<neonsoup@gmail.com>
Sun, 27 Dec 2015 20:40:51 +0000
(
00:40
+0400)
-Fixed Generator.Rewrite program mistake because of which it was looking for
"filename.mdb" file instead of "filename.dll.mdb"
Source/Generator.Rewrite/Program.cs
patch
|
blob
|
history
diff --git
a/Source/Generator.Rewrite/Program.cs
b/Source/Generator.Rewrite/Program.cs
index a204eab37f7bb25c85d101b164409ef92839a89b..0dfae66334f8a61a4bca031ff69c8bc564a64b1f 100644
(file)
--- a/
Source/Generator.Rewrite/Program.cs
+++ b/
Source/Generator.Rewrite/Program.cs
@@
-65,7
+65,7
@@
namespace OpenTK.Rewrite
var read_params = new ReaderParameters();
var write_params = new WriterParameters();
var pdb = Path.ChangeExtension(file, "pdb");
- var mdb =
Path.ChangeExtension(file, "mdb")
;
+ var mdb =
file + ".mdb"
;
ISymbolReaderProvider provider = null;
if (File.Exists(pdb))
{