~borgdylan/dnr/master

« back to all changes in this revision

Viewing changes to dnr.txt

  • Committer: Dylan Borg
  • Date: 2011-06-05 15:57:06 UTC
  • Revision ID: git-v1:46d6de8af078ac0ea8740ef0afa2011640053853
Commiting latest dnr code to GIT and BZR.Relicensing code under the LGPLv3. Arranged source tree. Bumped up version to match that of current dylan.NET ie. 11.2.7.1.

Signed-off-by: Dylan Borg <borgdylan@hotmail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//The dylan.NET Reflection Library
2
 
//A Component of the NEW dylan.NET Compiler
3
 
//compile with dylan.NET v.9.9 or later
4
 
 
5
 
//Copyright (C) 2011 Dylan Borg borgdylan@hotmail.com
6
 
//This code is FREE software under the GNU GPLv2 license. See the COPYING file. 
7
 
 
8
 
 
9
 
#refasm mscorlib.dll
10
 
#refasm System.dll
11
 
#refasm System.Core.dll
12
 
#refasm System.Data.dll
13
 
#refasm System.Data.DataSetExtensions.dll
14
 
#refasm System.Xml.dll 
15
 
#refasm System.Xml.Linq.dll
16
 
#refasm System.Configuration.dll
17
 
#refasm Microsoft.VisualBasic.dll
18
 
#refasm E:\Code\dylannet\dnr\dnu.dll
19
 
 
20
 
import Microsoft.VisualBasic
21
 
import System
22
 
import System.IO
23
 
import System.Collections
24
 
import System.Collections.Generic
25
 
import System.Data
26
 
import System.Diagnostics
27
 
import System.Linq
28
 
import System.Xml
29
 
import System.Xml.Linq
30
 
import System.Reflection
31
 
import System.Reflection.Emit
32
 
import dylan.NET
33
 
import dylan.NET.Utils
34
 
 
35
 
locimport dylan.NET.Reflection
36
 
 
37
 
assembly dnr dll
38
 
ver 11.2.5.0
39
 
 
40
 
namespace dylan.NET.Reflection
41
 
#include E:\Code\dylannet\dnr\instructionhelper.txt
42
 
#include E:\Code\dylannet\dnr\ilemitter.txt
43
 
#include E:\Code\dylannet\dnr\asmfactory.txt
44
 
#include E:\Code\dylannet\dnr\importer.txt
45
 
#include E:\Code\dylannet\dnr\loader.txt
46
 
#include E:\Code\dylannet\dnr\consoleprinter.txt
47
 
end namespace