Files
2022-03-30 11:30:34 +02:00

19 lines
480 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
del /Q temp.txt