update nach Bedingt Retournierbar
This commit is contained in:
30
ILTest/App.config
Normal file
30
ILTest/App.config
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||
<section name="ILTest.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ILTest.My.MySettings>
|
||||
<setting name="TempDir" serializeAs="String">
|
||||
<value>K:\EDOKA\__OnBase\TempDir</value>
|
||||
</setting>
|
||||
<setting name="Filename" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235.pdf</value>
|
||||
</setting>
|
||||
<setting name="Dokumentid" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235</value>
|
||||
</setting>
|
||||
<setting name="url" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
<setting name="Einstellung" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
</ILTest.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
115
ILTest/ILTest.vbproj
Normal file
115
ILTest/ILTest.vbproj
Normal file
@@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{FB94A9CB-7938-44EC-8886-B705D7686C41}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<StartupObject>ILTest.Module1</StartupObject>
|
||||
<RootNamespace>ILTest</RootNamespace>
|
||||
<AssemblyName>ILTest</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>Console</MyType>
|
||||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>ILTest.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>ILTest.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\bin\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="clsOnBaseDokument.vb" />
|
||||
<Compile Include="Module1.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
</Project>
|
||||
6
ILTest/ILTest.vbproj.user
Normal file
6
ILTest/ILTest.vbproj.user
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<StartArguments>A</StartArguments>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
124
ILTest/Module1.vb
Normal file
124
ILTest/Module1.vb
Normal file
@@ -0,0 +1,124 @@
|
||||
Imports System.Threading
|
||||
Imports System.IO
|
||||
|
||||
Imports System.Collections.Generic
|
||||
Imports System.Drawing
|
||||
Imports Newtonsoft
|
||||
|
||||
Imports System.Text
|
||||
Imports System.Web
|
||||
Imports System.Net.Http
|
||||
Imports System.Net
|
||||
|
||||
Module Module1
|
||||
Dim Base64_File As String
|
||||
Dim JsonString As String
|
||||
Dim mimetype As String
|
||||
Dim OutputFile As String
|
||||
|
||||
Sub Main()
|
||||
Console.WriteLine(Now.ToString, "yyyy-mm-dd hh:MM:ss" + ": Start")
|
||||
Dim args As String() = Environment.GetCommandLineArgs()
|
||||
|
||||
If IsNothing(args(1)) Then
|
||||
|
||||
End If
|
||||
|
||||
Console.WriteLine(Now.ToString, "yyyy-mm-dd hh:MM:ss" + ": Fileconvert")
|
||||
|
||||
OutputFile = My.Settings.TempDir + "\" + My.Settings.Filename
|
||||
Base64_File = ConvertFileToBase64(OutputFile)
|
||||
JsonString = ""
|
||||
Console.WriteLine(Now.ToString, "yyyy-mm-dd hh:MM:ss" + ": Create DataStream")
|
||||
Create_OnBase_Datastream(My.Settings.Dokumentid)
|
||||
|
||||
|
||||
Console.WriteLine(Now.ToString, "yyyy-mm-dd hh:MM:ss" + ": Start UpLoad")
|
||||
If args(1) = "A" Then
|
||||
Dim data = Encoding.UTF8.GetBytes(JsonString)
|
||||
Dim myUri As New Uri(My.Settings.url)
|
||||
|
||||
Dim result_post = SendRequest_A(myUri, data, "application/json", "POST")
|
||||
End If
|
||||
Console.WriteLine(Now.ToString, "yyyy-mm-dd hh:MM:ss" + ": Stop Upload")
|
||||
|
||||
End Sub
|
||||
|
||||
Public Function ConvertFileToBase64(ByVal fileName As String) As String
|
||||
|
||||
Dim ReturnValue As String = ""
|
||||
|
||||
If My.Computer.FileSystem.FileExists(fileName) Then
|
||||
Using BinaryFile As FileStream = New FileStream(fileName, FileMode.Open)
|
||||
Dim BinRead As BinaryReader = New BinaryReader(BinaryFile)
|
||||
Dim BinBytes As Byte() = BinRead.ReadBytes(CInt(BinaryFile.Length))
|
||||
ReturnValue = Convert.ToBase64String(BinBytes)
|
||||
BinaryFile.Close()
|
||||
End Using
|
||||
End If
|
||||
Return ReturnValue
|
||||
End Function
|
||||
|
||||
Public Function Transfer_Onbase(ByVal dokumentid As String) As Boolean
|
||||
Dim file As System.IO.StreamWriter
|
||||
file = My.Computer.FileSystem.OpenTextFileWriter(My.Settings.TempDir + "\" + dokumentid + ".json", True)
|
||||
file.Write(JsonString)
|
||||
file.Close()
|
||||
Return True
|
||||
End Function
|
||||
Private Sub Create_OnBase_Datastream(ByVal dokumentid As String)
|
||||
Dim ds As New DataSet
|
||||
Dim od As New OnBaseDokument
|
||||
od.dokumentTyp = "Brief"
|
||||
od.bpNummer = "1032777"
|
||||
od.personNummer = ""
|
||||
od.dokumentDatei = Base64_File
|
||||
|
||||
od.dokumentDatum = Now.ToString("dd.mm.yyyy")
|
||||
od.dateiTyp = "PDF"
|
||||
|
||||
Dim Attribute As New List(Of attribute)
|
||||
Dim p As New attribute With
|
||||
{
|
||||
.fieldname = "EDOKA Dokument-ID",
|
||||
.fieldvalue = dokumentid
|
||||
}
|
||||
Attribute.Add(p)
|
||||
od.attributes = Attribute
|
||||
JsonString = ""
|
||||
JsonString = Newtonsoft.Json.JsonConvert.SerializeObject(od, Newtonsoft.Json.Formatting.Indented)
|
||||
|
||||
|
||||
|
||||
End Sub
|
||||
Private Function SendRequest_A(uri As Uri, jsonDataBytes As Byte(), contentType As String, method As String) As String
|
||||
Dim response As String
|
||||
Dim request As WebRequest
|
||||
|
||||
request = WebRequest.Create(uri)
|
||||
request.ContentLength = jsonDataBytes.Length
|
||||
request.ContentType = contentType
|
||||
request.Method = method
|
||||
Try
|
||||
Using requestStream = request.GetRequestStream
|
||||
requestStream.Write(jsonDataBytes, 0, jsonDataBytes.Length)
|
||||
requestStream.Close()
|
||||
|
||||
Using responseStream = request.GetResponse.GetResponseStream
|
||||
Using reader As New StreamReader(responseStream)
|
||||
response = reader.ReadToEnd()
|
||||
End Using
|
||||
End Using
|
||||
End Using
|
||||
|
||||
|
||||
Return response
|
||||
Catch ex As Exception
|
||||
Return ""
|
||||
End Try
|
||||
|
||||
End Function
|
||||
|
||||
|
||||
|
||||
End Module
|
||||
13
ILTest/My Project/Application.Designer.vb
generated
Normal file
13
ILTest/My Project/Application.Designer.vb
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
10
ILTest/My Project/Application.myapp
Normal file
10
ILTest/My Project/Application.myapp
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>false</MySubMain>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<ApplicationType>2</ApplicationType>
|
||||
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
||||
35
ILTest/My Project/AssemblyInfo.vb
Normal file
35
ILTest/My Project/AssemblyInfo.vb
Normal file
@@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' Allgemeine Informationen über eine Assembly werden über die folgenden
|
||||
' Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||
' die einer Assembly zugeordnet sind.
|
||||
|
||||
' Werte der Assemblyattribute überprüfen
|
||||
|
||||
<Assembly: AssemblyTitle("ILTest")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("ILTest")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2023")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'Die folgende GUID wird für die typelib-ID verwendet, wenn dieses Projekt für COM verfügbar gemacht wird.
|
||||
<Assembly: Guid("8811aec6-ecf4-4ba2-93a6-05fcb0e6c357")>
|
||||
|
||||
' Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
||||
'
|
||||
' Hauptversion
|
||||
' Nebenversion
|
||||
' Buildnummer
|
||||
' Revision
|
||||
'
|
||||
' Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
||||
' indem Sie "*" wie unten gezeigt eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
62
ILTest/My Project/Resources.Designer.vb
generated
Normal file
62
ILTest/My Project/Resources.Designer.vb
generated
Normal file
@@ -0,0 +1,62 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
'class via a tool like ResGen or Visual Studio.
|
||||
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
'with the /str option, or rebuild your VS project.
|
||||
'''<summary>
|
||||
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Returns the cached ResourceManager instance used by this class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("ILTest.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Overrides the current thread's CurrentUICulture property for all
|
||||
''' resource lookups using this strongly typed resource class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set(ByVal value As Global.System.Globalization.CultureInfo)
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
117
ILTest/My Project/Resources.resx
Normal file
117
ILTest/My Project/Resources.resx
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
133
ILTest/My Project/Settings.Designer.vb
generated
Normal file
133
ILTest/My Project/Settings.Designer.vb
generated
Normal file
@@ -0,0 +1,133 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||
|
||||
#Region "Automatische My.Settings-Speicherfunktion"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("K:\EDOKA\__OnBase\TempDir")> _
|
||||
Public Property TempDir() As String
|
||||
Get
|
||||
Return CType(Me("TempDir"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("TempDir") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("OFFEDK0002004000646235.pdf")> _
|
||||
Public Property Filename() As String
|
||||
Get
|
||||
Return CType(Me("Filename"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Filename") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("OFFEDK0002004000646235")> _
|
||||
Public Property Dokumentid() As String
|
||||
Get
|
||||
Return CType(Me("Dokumentid"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Dokumentid") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("http://sxs.dd.dd/sss/")> _
|
||||
Public Property url() As String
|
||||
Get
|
||||
Return CType(Me("url"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("url") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("http://sxs.dd.dd/sss/")> _
|
||||
Public Property Einstellung() As String
|
||||
Get
|
||||
Return CType(Me("Einstellung"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Einstellung") = value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.ILTest.My.MySettings
|
||||
Get
|
||||
Return Global.ILTest.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
21
ILTest/My Project/Settings.settings
Normal file
21
ILTest/My Project/Settings.settings
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="My" GeneratedClassName="MySettings" UseMySettingsClassName="true">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="TempDir" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">K:\EDOKA\__OnBase\TempDir</Value>
|
||||
</Setting>
|
||||
<Setting Name="Filename" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">OFFEDK0002004000646235.pdf</Value>
|
||||
</Setting>
|
||||
<Setting Name="Dokumentid" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">OFFEDK0002004000646235</Value>
|
||||
</Setting>
|
||||
<Setting Name="url" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">http://sxs.dd.dd/sss/</Value>
|
||||
</Setting>
|
||||
<Setting Name="Einstellung" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">http://sxs.dd.dd/sss/</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
BIN
ILTest/bin/Debug/ILTest.exe
Normal file
BIN
ILTest/bin/Debug/ILTest.exe
Normal file
Binary file not shown.
30
ILTest/bin/Debug/ILTest.exe.config
Normal file
30
ILTest/bin/Debug/ILTest.exe.config
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||
<section name="ILTest.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ILTest.My.MySettings>
|
||||
<setting name="TempDir" serializeAs="String">
|
||||
<value>K:\EDOKA\__OnBase\TempDir</value>
|
||||
</setting>
|
||||
<setting name="Filename" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235.pdf</value>
|
||||
</setting>
|
||||
<setting name="Dokumentid" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235</value>
|
||||
</setting>
|
||||
<setting name="url" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
<setting name="Einstellung" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
</ILTest.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
BIN
ILTest/bin/Debug/ILTest.pdb
Normal file
BIN
ILTest/bin/Debug/ILTest.pdb
Normal file
Binary file not shown.
26
ILTest/bin/Debug/ILTest.xml
Normal file
26
ILTest/bin/Debug/ILTest.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ILTest
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ILTest.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
ILTest/bin/Debug/Newtonsoft.Json.dll
Normal file
BIN
ILTest/bin/Debug/Newtonsoft.Json.dll
Normal file
Binary file not shown.
10393
ILTest/bin/Debug/Newtonsoft.Json.xml
Normal file
10393
ILTest/bin/Debug/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
ILTest/bin/Debug/edoka_il.zip
Normal file
BIN
ILTest/bin/Debug/edoka_il.zip
Normal file
Binary file not shown.
BIN
ILTest/bin/Release/ILTest.exe
Normal file
BIN
ILTest/bin/Release/ILTest.exe
Normal file
Binary file not shown.
30
ILTest/bin/Release/ILTest.exe.config
Normal file
30
ILTest/bin/Release/ILTest.exe.config
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||
<section name="ILTest.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ILTest.My.MySettings>
|
||||
<setting name="TempDir" serializeAs="String">
|
||||
<value>K:\EDOKA\__OnBase\TempDir</value>
|
||||
</setting>
|
||||
<setting name="Filename" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235.pdf</value>
|
||||
</setting>
|
||||
<setting name="Dokumentid" serializeAs="String">
|
||||
<value>OFFEDK0002004000646235</value>
|
||||
</setting>
|
||||
<setting name="url" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
<setting name="Einstellung" serializeAs="String">
|
||||
<value>http://sxs.dd.dd/sss/</value>
|
||||
</setting>
|
||||
</ILTest.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
BIN
ILTest/bin/Release/ILTest.pdb
Normal file
BIN
ILTest/bin/Release/ILTest.pdb
Normal file
Binary file not shown.
26
ILTest/bin/Release/ILTest.xml
Normal file
26
ILTest/bin/Release/ILTest.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ILTest
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ILTest.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
ILTest/bin/Release/Newtonsoft.Json.dll
Normal file
BIN
ILTest/bin/Release/Newtonsoft.Json.dll
Normal file
Binary file not shown.
10393
ILTest/bin/Release/Newtonsoft.Json.xml
Normal file
10393
ILTest/bin/Release/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
16
ILTest/clsOnBaseDokument.vb
Normal file
16
ILTest/clsOnBaseDokument.vb
Normal file
@@ -0,0 +1,16 @@
|
||||
Imports System.Collections.Generic
|
||||
|
||||
Public Class OnBaseDokument
|
||||
Public Property dokumentTyp As String
|
||||
Public Property dokumentDatum As String
|
||||
Public Property dateiTyp As String
|
||||
Public Property bpNummer As String
|
||||
Public Property personNummer As String
|
||||
Public Property dokumentDatei As String
|
||||
Public Property attributes As List(Of attribute)
|
||||
End Class
|
||||
|
||||
Public Class attribute
|
||||
Public Property fieldname As String
|
||||
Public Property fieldvalue As String
|
||||
End Class
|
||||
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName:=".NET Framework 4.6")>
|
||||
BIN
ILTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache
Normal file
BIN
ILTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache
Normal file
Binary file not shown.
BIN
ILTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
ILTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
BIN
ILTest/obj/Debug/ILTest.Resources.resources
Normal file
BIN
ILTest/obj/Debug/ILTest.Resources.resources
Normal file
Binary file not shown.
BIN
ILTest/obj/Debug/ILTest.exe
Normal file
BIN
ILTest/obj/Debug/ILTest.exe
Normal file
Binary file not shown.
BIN
ILTest/obj/Debug/ILTest.pdb
Normal file
BIN
ILTest/obj/Debug/ILTest.pdb
Normal file
Binary file not shown.
BIN
ILTest/obj/Debug/ILTest.vbproj.AssemblyReference.cache
Normal file
BIN
ILTest/obj/Debug/ILTest.vbproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
ILTest/obj/Debug/ILTest.vbproj.CopyComplete
Normal file
0
ILTest/obj/Debug/ILTest.vbproj.CopyComplete
Normal file
1
ILTest/obj/Debug/ILTest.vbproj.CoreCompileInputs.cache
Normal file
1
ILTest/obj/Debug/ILTest.vbproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
||||
084b8e0d21e5b10c05c8bf53f7e4242a5c73057e
|
||||
14
ILTest/obj/Debug/ILTest.vbproj.FileListAbsolute.txt
Normal file
14
ILTest/obj/Debug/ILTest.vbproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\ILTest.exe.config
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\ILTest.exe
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\ILTest.pdb
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\ILTest.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\Newtonsoft.Json.dll
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Debug\Newtonsoft.Json.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbproj.AssemblyReference.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.Resources.resources
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbproj.GenerateResource.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbproj.CopyComplete
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.exe
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.pdb
|
||||
BIN
ILTest/obj/Debug/ILTest.vbproj.GenerateResource.cache
Normal file
BIN
ILTest/obj/Debug/ILTest.vbproj.GenerateResource.cache
Normal file
Binary file not shown.
26
ILTest/obj/Debug/ILTest.xml
Normal file
26
ILTest/obj/Debug/ILTest.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ILTest
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ILTest.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
ILTest/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
Normal file
BIN
ILTest/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
Normal file
Binary file not shown.
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName:=".NET Framework 4.6")>
|
||||
Binary file not shown.
BIN
ILTest/obj/Release/ILTest.Resources.resources
Normal file
BIN
ILTest/obj/Release/ILTest.Resources.resources
Normal file
Binary file not shown.
BIN
ILTest/obj/Release/ILTest.exe
Normal file
BIN
ILTest/obj/Release/ILTest.exe
Normal file
Binary file not shown.
BIN
ILTest/obj/Release/ILTest.pdb
Normal file
BIN
ILTest/obj/Release/ILTest.pdb
Normal file
Binary file not shown.
BIN
ILTest/obj/Release/ILTest.vbproj.AssemblyReference.cache
Normal file
BIN
ILTest/obj/Release/ILTest.vbproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
ILTest/obj/Release/ILTest.vbproj.CopyComplete
Normal file
0
ILTest/obj/Release/ILTest.vbproj.CopyComplete
Normal file
1
ILTest/obj/Release/ILTest.vbproj.CoreCompileInputs.cache
Normal file
1
ILTest/obj/Release/ILTest.vbproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
||||
c05f13eef715361d7d4141df682f4f540df13e56
|
||||
14
ILTest/obj/Release/ILTest.vbproj.FileListAbsolute.txt
Normal file
14
ILTest/obj/Release/ILTest.vbproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\ILTest.exe.config
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\ILTest.exe
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\ILTest.pdb
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\ILTest.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\Newtonsoft.Json.dll
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\bin\Release\Newtonsoft.Json.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.vbproj.AssemblyReference.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.Resources.resources
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.vbproj.GenerateResource.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.vbproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.vbproj.CopyComplete
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.exe
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.xml
|
||||
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Release\ILTest.pdb
|
||||
BIN
ILTest/obj/Release/ILTest.vbproj.GenerateResource.cache
Normal file
BIN
ILTest/obj/Release/ILTest.vbproj.GenerateResource.cache
Normal file
Binary file not shown.
26
ILTest/obj/Release/ILTest.xml
Normal file
26
ILTest/obj/Release/ILTest.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ILTest
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ILTest.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ILTest.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
ILTest/obj/Release/TempPE/My Project.Resources.Designer.vb.dll
Normal file
BIN
ILTest/obj/Release/TempPE/My Project.Resources.Designer.vb.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user