17 lines
466 B
Batchfile
17 lines
466 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
echo Processing NodeSet Schema
|
|
xsd /classes /n:Opc.Ua.Export UANodeSet.xsd
|
|
|
|
echo #pragma warning disable 1591 > temp.txt
|
|
type UANodeSet.cs >> temp.txt
|
|
type temp.txt > UANodeSet.cs
|
|
|
|
echo Processing SecuredApplication Schema
|
|
svcutil /dconly /namespace:*,Opc.Ua.Security /out:SecuredApplication.cs SecuredApplication.xsd
|
|
|
|
echo #pragma warning disable 1591 > temp.txt
|
|
type SecuredApplication.cs >> temp.txt
|
|
type temp.txt > SecuredApplication.cs
|