Files
Mapo-IOB-WIN/IOB-OPC-UA/Stack/Opc.Ua.Core/Schema/BuildSchema.bat
T
2021-03-25 18:25:25 +01:00

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