-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathutils.proxygen.xml
More file actions
58 lines (49 loc) · 2.78 KB
/
utils.proxygen.xml
File metadata and controls
58 lines (49 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright (C) 2009 by Pavel Savara
This file is part of tools for jni4net - bridge between Java and .NET
http://jni4net.sourceforge.net/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<jni4net-proxygen xmlns="http://jni4net.sf.net/0.8.8.0/toolConfig.xsd">
<!-- Location where .java files will be generated into. It's relative or absolute path. -->
<TargetDirJvm>src\main\java</TargetDirJvm>
<!-- Location where .cs files will be generated into. It's relative or absolute path. -->
<TargetDirClr>src\main\csharp</TargetDirClr>
<!-- List of assemblies, which define known types for generator -->
<AssemblyReference Assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<AssemblyReference Assembly="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<!--<AssemblyReference Assembly="tools/jsr223utils.dll"/>-->
<!-- ClassPath entries -->
<ClassPath Path="build/classes/main"/>
<!-- List of CLR types which should have proxy generated -->
<ClrType TypeName="System.EventHandler"/>
<ClrType TypeName="System.EventArgs"/>
<!--<ClrType TypeName="System.Boolean"/>-->
<!--<ClrType TypeName="System.Byte"/>-->
<!--<ClrType TypeName="System.Double"/>-->
<!--<ClrType TypeName="System.Single"/>-->
<!--<ClrType TypeName="System.Int32"/>-->
<!--<ClrType TypeName="System.Int64"/>-->
<!--<ClrType TypeName="System.Int16"/>-->
<!--<ClrType TypeName="System.Char"/>-->
<!--<ClrType TypeName="System.UInt32"/>-->
<!--<ClrType TypeName="System.UInt64"/>-->
<!--<ClrType TypeName="System.UInt16"/>-->
<!--<ClrType TypeName="System.SByte"/>-->
<ClrType TypeName="System.Collections.ArrayList"/>
<!-- WARNING: Proxy generation from Hashtable does not work very well, it makes Hashtable implements system.collections.IEnumerable and not system.collections.IDictionary,
please re-fetch the repository version of the generated Hashtable class when regenerating proxies -->
<ClrType TypeName="System.Collections.Hashtable"/>
<!--<ClrType TypeName="System.IO.StringWriter"/>-->
<!--<ClrType TypeName="utils.PSUtils"/>-->
<ClrType TypeName="System.Management.Automation.PSObject"/>
</jni4net-proxygen>