forked from aanufriyev/CsharpLDAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
executable file
·32 lines (11 loc) · 728 Bytes
/
build.bat
File metadata and controls
executable file
·32 lines (11 loc) · 728 Bytes
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
@echo off
if not exist lib md lib
if not exist doc md doc
if exist lib\Novell.Directory.Ldap.dll del lib\Novell.Directory.Ldap.dll
echo "Building resources..."
resgen Novell.Directory.Ldap\Properties\ResultCodeMessages.resx lib\ResultCodeMessages.resources
resgen Novell.Directory.Ldap\Properties\ExceptionMessages.resx lib\ExceptionMessages.resources
echo "Generating lib\Novell.Directory.Ldap.dll.."
csc /noconfig /w:1 /r:System.dll /target:library /resource:lib\ResultCodeMessages.resources /resource:lib\ExceptionMessages.resources /doc:doc\comments.xml /out:lib\Novell.Directory.Ldap.dll /recurse:Novell.Directory.Ldap\*.cs
del lib\ResultCodeMessages.resources
del lib\ExceptionMessages.resources