Update 20241112

This commit is contained in:
Stefan Hutter
2024-11-12 14:22:55 +01:00
parent 23a308ad73
commit 09bcee5a2a
1162 changed files with 6775694 additions and 968 deletions

View File

@@ -17,7 +17,7 @@
<WebStackScaffolding_IsReferencingScriptLibrariesSelected>False</WebStackScaffolding_IsReferencingScriptLibrariesSelected> <WebStackScaffolding_IsReferencingScriptLibrariesSelected>False</WebStackScaffolding_IsReferencingScriptLibrariesSelected>
<WebStackScaffolding_LayoutPageFile>~/Views/Shared/_Layout.cshtml</WebStackScaffolding_LayoutPageFile> <WebStackScaffolding_LayoutPageFile>~/Views/Shared/_Layout.cshtml</WebStackScaffolding_LayoutPageFile>
<WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected> <WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected>
<NameOfLastUsedPublishProfile>X:\docdemo\EDOKA_2024\EDOKAAPI_NetFramework\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> <NameOfLastUsedPublishProfile>E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\Properties\PublishProfiles\FolderProfile1.pubxml</NameOfLastUsedPublishProfile>
<View_SelectedScaffolderID>MvcViewScaffolder</View_SelectedScaffolderID> <View_SelectedScaffolderID>MvcViewScaffolder</View_SelectedScaffolderID>
<View_SelectedScaffolderCategoryPath>root/Common/MVC/View</View_SelectedScaffolderCategoryPath> <View_SelectedScaffolderCategoryPath>root/Common/MVC/View</View_SelectedScaffolderCategoryPath>
<WebStackScaffolding_ViewDialogWidth>600</WebStackScaffolding_ViewDialogWidth> <WebStackScaffolding_ViewDialogWidth>600</WebStackScaffolding_ViewDialogWidth>

View File

@@ -13,6 +13,12 @@ using API_NetFramework.Models;
using System.Runtime.Remoting.Messaging; using System.Runtime.Remoting.Messaging;
using System.IO; using System.IO;
using System.Web; using System.Web;
using System.Net.Mime;
using System.Security.Policy;
using System.Text;
using Microsoft.AspNetCore.Http.Features;
using System.Security.Cryptography;
namespace API_NetFramework.Controllers namespace API_NetFramework.Controllers
{ {
@@ -20,11 +26,45 @@ namespace API_NetFramework.Controllers
/// ///
/// </summary> /// </summary>
/// <remarks></remarks> /// <remarks></remarks>
///
public class ILResponse
{
public int StatusCode;
public int senderror { get; set; } = 0;
public string response { get; set; } = "";
}
public enum uploadtype
{
fast = 1,
slow = 2,
docupload = 3
}
public class ArchivController : ApiController public class ArchivController : ApiController
{ {
// GET: OnBase // GET: OnBase
string tokenfunction = "Archiv"; string tokenfunction = "Archiv";
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString; string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
private void Update_IL_Log(ref ILResponse ilr, string dokumentid)
{
DB dB = new DB(ConfigurationManager.ConnectionStrings["JournalConnectionstring"].ConnectionString);
string sql = "Insert OnDoc_IL_Log (dokumentid, ilresponse,error, erstellt_am) values ('" + dokumentid + "',";
sql = sql + "'" + ilr.response.ToString() + "',";
if (ilr.senderror != 0) { sql = sql + "1,"; } else { sql = sql + "0,"; }
sql = sql + "'" + DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss") + "')";
dB.Exec_SQL(sql);
dB = null;
}
private void update_dokumentstatus(string dokumentid)
{
DB db = new DB(connectionstring);
db.dokument_abschliessen(dokumentid);
db = null;
}
/// <summary> /// <summary>
/// Archiviert das Dokument aus OnDoc in OnBase /// Archiviert das Dokument aus OnDoc in OnBase
/// </summary> /// </summary>
@@ -37,7 +77,7 @@ namespace API_NetFramework.Controllers
[HttpGet] [HttpGet]
[Route("API/ArchiveDocFromDatabase")] [Route("API/ArchiveDocFromDatabase")]
public IHttpActionResult ArchivDoc_From_Database(string DokumentID) public IHttpActionResult ArchivDocFromDatabase(string DokumentID)
{ {
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false) if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{ {
@@ -45,13 +85,84 @@ namespace API_NetFramework.Controllers
} }
try try
{ {
return Ok(); DB db = new DB(connectionstring);
db.clear_parameter();
db.add_parameter("@dokumentid", DokumentID);
db.Get_Tabledata("[sp_Get_OnDoc_Parameters]", true, false);
OnBaseDocUpload.OnBaseDokument onbasedoc = new OnBaseDocUpload.OnBaseDokument();
DocGet dg = new DocGet(connectionstring);
clsdok dok = new clsdok("", "", "");
dok = dg.GetDocAsPDF(DokumentID);
if (db.dsdaten.Tables[0].Rows[0]["BpNummer"].ToString() == "")
{
onbasedoc.personNummer = db.dsdaten.Tables[0].Rows[0]["PersonNummer"].ToString();
onbasedoc.bpNummer = "";
}
else
{
onbasedoc.bpNummer = db.dsdaten.Tables[0].Rows[0]["BpNummer"].ToString();
onbasedoc.personNummer = "";
}
onbasedoc.dokumentDatum = db.dsdaten.Tables[0].Rows[0]["DokumentDatum"].ToString();
onbasedoc.dokumentTyp = db.dsdaten.Tables[0].Rows[0]["dokumenttyp"].ToString();
onbasedoc.dateiTyp = db.dsdaten.Tables[0].Rows[0]["dateityp"].ToString();
var Attribute = new List<Model.OnBaseDocUpload.attribute>();
foreach (System.Data.DataRow rw in db.dsdaten.Tables[1].Rows)
{
var p = new OnBaseDocUpload.attribute()
{
fieldname = rw["fieldname"].ToString(),
fieldvalue = rw["fieldvalue"].ToString()
};
Attribute.Add(p);
}
onbasedoc.attributes = Attribute;
onbasedoc.dokumentDatei = dok.dokument;
db = null;
ILResponse ilr = new ILResponse();
string debugfilename = System.Configuration.ConfigurationManager.AppSettings["JSONDebugPath"];
string SendToOnBase = System.Configuration.ConfigurationManager.AppSettings["SendToOnBase"];
string SendToFile = System.Configuration.ConfigurationManager.AppSettings["SendToFile"];
string debugdir = System.Configuration.ConfigurationManager.AppSettings["DebugDir"];
string jsonstring = Newtonsoft.Json.JsonConvert.SerializeObject(onbasedoc);
IHttpActionResult transferResult = null;
if (SendToOnBase != "Yes")
{
transferResult = Transfer_OnBase(uploadtype.fast, ref jsonstring, ref ilr);
if (SendToFile == "Yes")
{
if (debugfilename != "")
{
debugfilename = debugfilename + DokumentID + ".json";
System.IO.File.WriteAllText(debugfilename, jsonstring);
}
}
}
//Log nachführen
Update_IL_Log(ref ilr,DokumentID);
if (ilr.senderror == 1)
{
return Content(HttpStatusCode.InternalServerError, ilr.response);
}
else
{
update_dokumentstatus(DokumentID);
return Content(HttpStatusCode.OK, DokumentID + " archiviert");
}
} }
catch (Exception e) catch (Exception e)
{ {
APILogging.Log((HttpRequestMessage)Request, e.Message, LogLevelType.Error); APILogging.Log((HttpRequestMessage)Request, e.Message, LogLevelType.Error);
return Content(HttpStatusCode.InternalServerError, e.Message); return Content(HttpStatusCode.InternalServerError, e.Message);
} }
finally
{
}
} }
@@ -68,7 +179,7 @@ namespace API_NetFramework.Controllers
/// </returns> /// </returns>
/// <remarks></remarks> /// <remarks></remarks>
// //
public IHttpActionResult ArchivDocBase64(string Dokument, string Dokumenttyp) public IHttpActionResult ArchivDocBase64(string DokumentID, string Dokumenttyp)
{ {
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false) if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{ {
@@ -76,6 +187,7 @@ namespace API_NetFramework.Controllers
} }
try try
{ {
return Ok(); return Ok();
} }
catch (Exception e) catch (Exception e)
@@ -136,7 +248,25 @@ namespace API_NetFramework.Controllers
} }
try try
{ {
return Ok(); if (dokumentid.Substring(0, 6).ToUpper() == "ONDOC00")
{
return (ArchivDocFromDatabase(dokumentid));
}
else
{
DB db = new DB(connectionstring);
db.clear_parameter();
db.add_parameter("@dokumentid", dokumentid);
db.Get_Tabledata("[OnDoc_IRIS_Archivierung]", true, false);
}
//return Content(HttpStatusCode.OK, "");
APILogging.Log((HttpRequestMessage)Request, dokumentid+" Archivierung ausgelöst", LogLevelType.Info);
return Ok(dokumentid);
} }
catch (Exception e) catch (Exception e)
{ {
@@ -149,6 +279,10 @@ namespace API_NetFramework.Controllers
public IHttpActionResult ArchivSBDoc(string sbnr, string intid, int partnernr ) public IHttpActionResult ArchivSBDoc(string sbnr, string intid, int partnernr )
{ {
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{
return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
}
string json = ""; string json = "";
if (HttpContext.Current.Request.InputStream.Length > 0) if (HttpContext.Current.Request.InputStream.Length > 0)
{ {
@@ -157,23 +291,86 @@ namespace API_NetFramework.Controllers
json = inputStream.ReadToEnd(); json = inputStream.ReadToEnd();
} }
} }
string debugfilename = System.Configuration.ConfigurationManager.AppSettings["JSONDebugPath"];
string debugfilename = @"X:\\jsontemp\" + sbnr.ToString() + "_" + intid.ToString() + "_"+partnernr.ToString()+".json";
string SendToOnBase = System.Configuration.ConfigurationManager.AppSettings["SendToOnBase"]; string SendToOnBase = System.Configuration.ConfigurationManager.AppSettings["SendToOnBase"];
string SendToFile = System.Configuration.ConfigurationManager.AppSettings["SendToFile"]; string SendToFile = System.Configuration.ConfigurationManager.AppSettings["SendToFile"];
string debugdir = System.Configuration.ConfigurationManager.AppSettings["DebugDir"]; string debugdir = System.Configuration.ConfigurationManager.AppSettings["DebugDir"];
string jsonstring = json; string jsonstring = json;
ILResponse ilr = new ILResponse();
//jsonstring = Newtonsoft.Json.JsonConvert.SerializeObject(od); //jsonstring = Newtonsoft.Json.JsonConvert.SerializeObject(od);
IHttpActionResult transferResult = null;
if (SendToOnBase != "Yes") if (SendToOnBase != "Yes")
{ {
transferResult = Transfer_OnBase(uploadtype.slow, ref jsonstring, ref ilr);
if (SendToFile == "Yes") if (SendToFile == "Yes")
{ {
System.IO.File.WriteAllText(debugfilename, jsonstring); if (debugfilename != "")
{
debugfilename=debugfilename+ sbnr.ToString() + "_" + intid.ToString() + "_" + partnernr.ToString() + ".json";
System.IO.File.WriteAllText(debugfilename, jsonstring);
}
} }
} }
return Content(HttpStatusCode.OK, "");
//Log nachführen
Update_IL_Log(ref ilr, "SB_" + sbnr.ToString() + "_" + intid.ToString());
return transferResult;
//return Content(HttpStatusCode.OK, "");
}
public IHttpActionResult Transfer_OnBase(uploadtype utype, ref string jsonstring, ref ILResponse ilr)
{
//ILResponse ilr = new ILResponse();
string response;
WebRequest request;
string url="";
switch (utype){
case uploadtype.fast:
url= System.Configuration.ConfigurationManager.AppSettings["ILFast"];
break;
case uploadtype.slow:
url = System.Configuration.ConfigurationManager.AppSettings["ILSlow"];
break;
case uploadtype.docupload:
url = System.Configuration.ConfigurationManager.AppSettings["ILDocupload"];
break;
}
var data = Encoding.UTF8.GetBytes(jsonstring);
request = WebRequest.Create(url);
request.ContentLength = data.Length;
request.ContentType = "application/json";
request.Method = "POST";
try
{
using (Stream requestStream = request.GetRequestStream())
{
requestStream.Write(data, 0, data.Length);
requestStream.Close();
using (Stream responseStream = request.GetResponse().GetResponseStream())
{
using (var reader = new StreamReader(responseStream))
{
response = reader.ReadToEnd();
}
}
}
ilr.StatusCode = 0;
ilr.senderror = 0;
ilr.response=response;
return Content(HttpStatusCode.OK, ilr);
}
catch (Exception ex)
{
ilr.StatusCode = 1;
ilr.senderror = 1;
ilr.response = ex.Message;
return Content(HttpStatusCode.InternalServerError, ilr);
}
} }
} }
} }

View File

@@ -11,6 +11,7 @@ using Database;
using Newtonsoft.Json; using Newtonsoft.Json;
using API_NetFramework.Models; using API_NetFramework.Models;
using System.Security.Cryptography; using System.Security.Cryptography;
using edoka_dms;
namespace API_NetFramework.Controllers namespace API_NetFramework.Controllers
@@ -102,6 +103,11 @@ namespace API_NetFramework.Controllers
} }
else else
{ {
DocGet dg = new DocGet(connectionstring);
clsdok dok = new clsdok("", "", "");
dok = dg.GetDocAsPDF(dokid);
db.Exec_SQL("Update dokument set loeschgrund='Archiviert' where dokumentid='" + dokid + "'"); db.Exec_SQL("Update dokument set loeschgrund='Archiviert' where dokumentid='" + dokid + "'");
db = null; db = null;
return Ok("Archivierung ausgelöst"); return Ok("Archivierung ausgelöst");

View File

@@ -51,11 +51,13 @@ namespace API_NetFramework.Controllers
string filename = path + TGNummer + ".pdf"; string filename = path + TGNummer + ".pdf";
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
APILogging.Log((HttpRequestMessage)Request, "Unterschrift-Bezug - nicht vorhanden: " + TGNummer, LogLevelType.Info);
return Content(HttpStatusCode.NotFound, "Image " + filename + " not found"); return Content(HttpStatusCode.NotFound, "Image " + filename + " not found");
} }
try try
{ {
byte[] b = System.IO.File.ReadAllBytes(filename); byte[] b = System.IO.File.ReadAllBytes(filename);
APILogging.Log((HttpRequestMessage)Request, "Unterschrift-Bezug: "+ TGNummer, LogLevelType.Info);
return Ok(Convert.ToBase64String(b)); return Ok(Convert.ToBase64String(b));
} }
catch (Exception e) catch (Exception e)

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<DeleteExistingFiles>false</DeleteExistingFiles>
<ExcludeApp_Data>false</ExcludeApp_Data>
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<PublishProvider>FileSystem</PublishProvider>
<PublishUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</PublishUrl>
<WebPublishMethod>FileSystem</WebPublishMethod>
<_TargetId>Folder</_TargetId>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,622 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
<History>True|2024-11-11T12:42:23.6578245Z||;True|2024-11-09T12:11:00.0777236+01:00||;True|2024-11-09T11:54:51.8503924+01:00||;</History>
<LastFailureDetails />
</PropertyGroup>
<ItemGroup>
<File Include="Areas/HelpPage/HelpPage.css">
<publishTime>06/03/2024 09:20:46</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
<publishTime>06/03/2024 09:20:41</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Index.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/ResourceModel.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Web.config">
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.dll">
<publishTime>09/10/2013 17:29:20</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.pdb">
<publishTime>09/10/2013 17:29:20</publishTime>
</File>
<File Include="bin/arm64/libSkiaSharp.dll">
<publishTime>04/09/2024 19:25:14</publishTime>
</File>
<File Include="bin/BarcodeLib.dll">
<publishTime>11/11/2024 09:13:16</publishTime>
</File>
<File Include="bin/BarcodeLib.pdb">
<publishTime>11/11/2024 09:13:16</publishTime>
</File>
<File Include="bin/Database.dll">
<publishTime>11/11/2024 13:42:22</publishTime>
</File>
<File Include="bin/Database.pdb">
<publishTime>11/11/2024 13:42:22</publishTime>
</File>
<File Include="bin/de/System.Net.Http.Formatting.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Helpers.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Http.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Http.WebHost.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Mvc.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Optimization.resources.dll">
<publishTime>02/11/2014 16:28:40</publishTime>
</File>
<File Include="bin/de/System.Web.Razor.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.WebPages.Deployment.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.WebPages.Razor.resources.dll">
<publishTime>10/20/2023 22:35:04</publishTime>
</File>
<File Include="bin/de/System.Web.WebPages.resources.dll">
<publishTime>10/20/2023 22:35:04</publishTime>
</File>
<File Include="bin/DOCGEN.dll">
<publishTime>11/11/2024 13:42:22</publishTime>
</File>
<File Include="bin/DOCGEN.dll.config">
<publishTime>08/30/2024 10:27:25</publishTime>
</File>
<File Include="bin/DOCGEN.pdb">
<publishTime>11/11/2024 13:42:22</publishTime>
</File>
<File Include="bin/FastReport.Bars.dll">
<publishTime>11/27/2023 09:49:58</publishTime>
</File>
<File Include="bin/FastReport.Compat.dll">
<publishTime>09/07/2023 11:54:46</publishTime>
</File>
<File Include="bin/FastReport.DataVisualization.dll">
<publishTime>09/07/2023 12:19:34</publishTime>
</File>
<File Include="bin/FastReport.dll">
<publishTime>11/27/2023 09:50:34</publishTime>
</File>
<File Include="bin/FastReport.Editor.dll">
<publishTime>11/27/2023 09:50:04</publishTime>
</File>
<File Include="bin/Helper.dll">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/Helper.pdb">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/libSkiaSharp.dylib">
<publishTime>04/09/2024 18:58:02</publishTime>
</File>
<File Include="bin/Logging.dll">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/Logging.pdb">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Abstractions.dll">
<publishTime>11/12/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.dll">
<publishTime>01/25/2019 00:18:54</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Features.dll">
<publishTime>11/12/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.WebUtilities.dll">
<publishTime>11/12/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.Bcl.AsyncInterfaces.dll">
<publishTime>10/31/2023 16:00:18</publishTime>
</File>
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
<publishTime>03/05/2023 23:41:40</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Configuration.Abstractions.dll">
<publishTime>10/31/2023 16:04:06</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Configuration.dll">
<publishTime>10/31/2023 16:07:04</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll">
<publishTime>10/31/2023 16:00:34</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.DependencyInjection.dll">
<publishTime>01/01/0001 00:00:00</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.ObjectPool.dll">
<publishTime>11/11/2018 01:26:48</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Options.dll">
<publishTime>11/11/2018 01:26:38</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Primitives.dll">
<publishTime>10/31/2023 16:00:32</publishTime>
</File>
<File Include="bin/Microsoft.Net.Http.Headers.dll">
<publishTime>11/12/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.Web.Infrastructure.dll">
<publishTime>04/11/2022 19:09:46</publishTime>
</File>
<File Include="bin/Model.dll">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/Model.pdb">
<publishTime>11/09/2024 11:54:46</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.Bson.dll">
<publishTime>11/28/2018 00:10:18</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.Bson.pdb">
<publishTime>11/28/2018 00:07:54</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.dll">
<publishTime>03/08/2023 06:09:56</publishTime>
</File>
<File Include="bin/NLog.Database.dll">
<publishTime>04/30/2024 21:58:56</publishTime>
</File>
<File Include="bin/NLog.dll">
<publishTime>04/30/2024 21:58:24</publishTime>
</File>
<File Include="bin/OfficePrinter.dll">
<publishTime>10/10/2024 07:00:48</publishTime>
</File>
<File Include="bin/OfficePrinter.pdb">
<publishTime>10/10/2024 07:00:48</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.dll">
<publishTime>11/11/2024 13:42:23</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.pdb">
<publishTime>11/11/2024 13:42:23</publishTime>
</File>
<File Include="bin/Owin.dll">
<publishTime>11/13/2012 13:19:34</publishTime>
</File>
<File Include="bin/QRCoder.dll">
<publishTime>06/30/2024 12:50:06</publishTime>
</File>
<File Include="bin/roslyn/csc.exe">
<publishTime>02/15/2022 06:38:32</publishTime>
</File>
<File Include="bin/roslyn/csc.exe.config">
<publishTime>02/15/2022 06:38:32</publishTime>
</File>
<File Include="bin/roslyn/csc.rsp">
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/csi.exe">
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/roslyn/csi.exe.config">
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/roslyn/csi.rsp">
<publishTime>02/15/2022 06:21:14</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll">
<publishTime>02/15/2022 06:33:12</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll">
<publishTime>01/01/0001 00:00:00</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll">
<publishTime>02/15/2022 06:38:34</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.dll">
<publishTime>02/15/2022 06:33:04</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll">
<publishTime>02/15/2022 06:33:26</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll">
<publishTime>02/15/2022 06:34:50</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.CSharp.Core.targets">
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
<publishTime>10/05/2021 02:47:54</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
<publishTime>10/05/2021 02:49:46</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Managed.Core.CurrentVersions.targets">
<publishTime>02/15/2022 06:33:08</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Managed.Core.targets">
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.VisualBasic.Core.targets">
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/System.Buffers.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
</File>
<File Include="bin/roslyn/System.Collections.Immutable.dll">
<publishTime>10/19/2020 20:37:44</publishTime>
</File>
<File Include="bin/roslyn/System.Memory.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
</File>
<File Include="bin/roslyn/System.Numerics.Vectors.dll">
<publishTime>05/15/2018 15:29:44</publishTime>
</File>
<File Include="bin/roslyn/System.Reflection.Metadata.dll">
<publishTime>10/19/2020 20:45:32</publishTime>
</File>
<File Include="bin/roslyn/System.Runtime.CompilerServices.Unsafe.dll">
<publishTime>10/19/2020 20:46:30</publishTime>
</File>
<File Include="bin/roslyn/System.Text.Encoding.CodePages.dll">
<publishTime>11/29/2018 16:39:18</publishTime>
</File>
<File Include="bin/roslyn/System.Threading.Tasks.Extensions.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
</File>
<File Include="bin/roslyn/vbc.exe">
<publishTime>02/15/2022 06:34:58</publishTime>
</File>
<File Include="bin/roslyn/vbc.exe.config">
<publishTime>02/15/2022 06:34:56</publishTime>
</File>
<File Include="bin/roslyn/vbc.rsp">
<publishTime>02/15/2022 06:21:12</publishTime>
</File>
<File Include="bin/roslyn/VBCSCompiler.exe">
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/roslyn/VBCSCompiler.exe.config">
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/Swashbuckle.Core.dll">
<publishTime>07/08/2017 03:30:56</publishTime>
</File>
<File Include="bin/Syncfusion.Compression.Base.dll">
<publishTime>05/08/2024 11:45:36</publishTime>
</File>
<File Include="bin/Syncfusion.DocIO.Base.dll">
<publishTime>08/05/2024 10:43:08</publishTime>
</File>
<File Include="bin/Syncfusion.DocToPDFConverter.Base.dll">
<publishTime>08/05/2024 10:45:12</publishTime>
</File>
<File Include="bin/Syncfusion.Licensing.dll">
<publishTime>05/08/2024 10:05:38</publishTime>
</File>
<File Include="bin/Syncfusion.OfficeChart.Base.dll">
<publishTime>05/08/2024 11:46:10</publishTime>
</File>
<File Include="bin/Syncfusion.Pdf.Base.dll">
<publishTime>08/05/2024 10:44:26</publishTime>
</File>
<File Include="bin/Syncfusion.Presentation.Base.dll">
<publishTime>08/05/2024 10:48:54</publishTime>
</File>
<File Include="bin/Syncfusion.XlsIO.Base.dll">
<publishTime>08/05/2024 10:46:16</publishTime>
</File>
<File Include="bin/System.Buffers.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
</File>
<File Include="bin/System.ComponentModel.Annotations.dll">
<publishTime>05/15/2018 15:29:36</publishTime>
</File>
<File Include="bin/System.Memory.dll">
<publishTime>05/08/2022 05:31:02</publishTime>
</File>
<File Include="bin/System.Net.Http.Formatting.dll">
<publishTime>10/20/2023 22:33:52</publishTime>
</File>
<File Include="bin/System.Numerics.Vectors.dll">
<publishTime>05/15/2018 15:29:44</publishTime>
</File>
<File Include="bin/System.Runtime.CompilerServices.Unsafe.dll">
<publishTime>10/23/2021 01:40:18</publishTime>
</File>
<File Include="bin/System.Text.Encodings.Web.dll">
<publishTime>05/15/2018 15:29:52</publishTime>
</File>
<File Include="bin/System.Threading.Tasks.Extensions.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
</File>
<File Include="bin/System.ValueTuple.dll">
<publishTime>05/15/2018 15:29:52</publishTime>
</File>
<File Include="bin/System.Web.Cors.dll">
<publishTime>10/01/2013 22:54:22</publishTime>
</File>
<File Include="bin/System.Web.Helpers.dll">
<publishTime>10/20/2023 22:33:58</publishTime>
</File>
<File Include="bin/System.Web.Http.dll">
<publishTime>10/20/2023 22:34:06</publishTime>
</File>
<File Include="bin/System.Web.Http.WebHost.dll">
<publishTime>10/20/2023 22:34:08</publishTime>
</File>
<File Include="bin/System.Web.Mvc.dll">
<publishTime>01/01/0001 00:00:00</publishTime>
</File>
<File Include="bin/System.Web.Optimization.dll">
<publishTime>02/11/2014 15:26:04</publishTime>
</File>
<File Include="bin/System.Web.Razor.dll">
<publishTime>10/20/2023 22:33:48</publishTime>
</File>
<File Include="bin/System.Web.WebPages.Deployment.dll">
<publishTime>10/20/2023 22:33:48</publishTime>
</File>
<File Include="bin/System.Web.WebPages.dll">
<publishTime>10/20/2023 22:33:50</publishTime>
</File>
<File Include="bin/System.Web.WebPages.Razor.dll">
<publishTime>10/20/2023 22:33:58</publishTime>
</File>
<File Include="bin/WebActivatorEx.dll">
<publishTime>10/05/2016 15:11:52</publishTime>
</File>
<File Include="bin/WebGrease.dll">
<publishTime>01/23/2014 13:57:34</publishTime>
</File>
<File Include="bin/x64/libSkiaSharp.dll">
<publishTime>04/09/2024 19:24:38</publishTime>
</File>
<File Include="bin/x86/libSkiaSharp.dll">
<publishTime>04/09/2024 19:24:38</publishTime>
</File>
<File Include="Content/bootstrap-grid.css">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Content/bootstrap-grid.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Content/Site.css">
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="favicon.ico">
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Global.asax">
<publishTime>07/19/2024 12:25:43</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js.map">
<publishTime>06/03/2024 09:16:13</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.js">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.js">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.map">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.js">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.js">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.map">
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/modernizr-2.8.3.js">
<publishTime>06/03/2024 08:12:04</publishTime>
</File>
<File Include="Views/Home/APIGenerator.cshtml">
<publishTime>10/01/2024 20:21:44</publishTime>
</File>
<File Include="Views/Home/Index.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Views/Shared/Error.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Views/Shared/_Layout.cshtml">
<publishTime>06/03/2024 10:48:16</publishTime>
</File>
<File Include="Views/Web.config">
<publishTime>07/19/2024 12:25:43</publishTime>
</File>
<File Include="Views/_ViewStart.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Web.config">
<publishTime>11/11/2024 13:42:23</publishTime>
</File>
</ItemGroup>
</Project>

View File

@@ -4,122 +4,129 @@
https://go.microsoft.com/fwlink/?LinkId=301879 https://go.microsoft.com/fwlink/?LinkId=301879
--> -->
<configuration> <configuration>
<appSettings> <appSettings>
<add key="webpages:Version" value="3.0.0.0" /> <add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" /> <add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" /> <add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> <add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" /> <add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="Bearer" value ="abc"/> <add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6"/> <add key="Bearer" value="abc" />
<add key="AuthCheck" value="Yes"/> <add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="SendToOnBase" value="No"/> <add key="AuthCheck" value="Yes" />
<add key="SendToFile" value="Yes"/> <add key="SendToOnBase" value="No" />
<add key="DebugDir" value="x:\jsontemp"/> <add key="SendToFile" value="Yes" />
</appSettings> <add key="DebugDir" value="x:\jsontemp" />
<connectionStrings> <add key="ILFast" value="https://localhost:44303/API/Fast" />
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" /> <add key="ILSlow" value="https://localhost:44303/API/Slow" />
</connectionStrings> <add key="ILDocupload" value="" />
<system.web> </appSettings>
<compilation debug="true" targetFramework="4.8.1" /> <connectionStrings>
<httpRuntime targetFramework="4.8.1" /> <add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
</system.web> <add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<runtime> </connectionStrings>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <system.web>
<dependentAssembly> <compilation debug="true" targetFramework="4.8.1" />
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> <httpRuntime targetFramework="4.8.1" />
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> </system.web>
</dependentAssembly> <runtime>
<dependentAssembly> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" /> <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> <assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" /> <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" /> <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" /> <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.1462.42.0" newVersion="26.1462.42.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> <assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</assemblyBinding> </dependentAssembly>
</runtime> <dependentAssembly>
<system.codedom> <assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<compilers> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </dependentAssembly>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </assemblyBinding>
</compilers> </runtime>
</system.codedom> <system.codedom>
<system.webServer> <compilers>
<handlers> <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<remove name="OPTIONSVerbHandler" /> </compilers>
<remove name="TRACEVerbHandler" /> </system.codedom>
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> <system.webServer>
</handlers> <handlers>
</system.webServer></configuration> <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
</configuration>
<!--APIKeys <!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+ Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6 Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
--> -->

Binary file not shown.

Binary file not shown.

View File

@@ -4,122 +4,129 @@
https://go.microsoft.com/fwlink/?LinkId=301879 https://go.microsoft.com/fwlink/?LinkId=301879
--> -->
<configuration> <configuration>
<appSettings> <appSettings>
<add key="webpages:Version" value="3.0.0.0" /> <add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" /> <add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" /> <add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> <add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" /> <add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="Bearer" value ="abc"/> <add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6"/> <add key="Bearer" value="abc" />
<add key="AuthCheck" value="Yes"/> <add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="SendToOnBase" value="No"/> <add key="AuthCheck" value="Yes" />
<add key="SendToFile" value="Yes"/> <add key="SendToOnBase" value="No" />
<add key="DebugDir" value="x:\jsontemp"/> <add key="SendToFile" value="Yes" />
</appSettings> <add key="DebugDir" value="x:\jsontemp" />
<connectionStrings> <add key="ILFast" value="https://localhost:44303/API/Fast" />
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" /> <add key="ILSlow" value="https://localhost:44303/API/Slow" />
</connectionStrings> <add key="ILDocupload" value="" />
<system.web> </appSettings>
<compilation debug="true" targetFramework="4.8.1" /> <connectionStrings>
<httpRuntime targetFramework="4.8.1" /> <add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
</system.web> <add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<runtime> </connectionStrings>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <system.web>
<dependentAssembly> <compilation debug="true" targetFramework="4.8.1" />
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> <httpRuntime targetFramework="4.8.1" />
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> </system.web>
</dependentAssembly> <runtime>
<dependentAssembly> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" /> <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> <assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" /> <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" /> <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> <dependentAssembly>
<bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" /> <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
</dependentAssembly> <bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.1462.42.0" newVersion="26.1462.42.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" /> <assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> <assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
<dependentAssembly> </dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" /> <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> <assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
</dependentAssembly> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</assemblyBinding> </dependentAssembly>
</runtime> <dependentAssembly>
<system.codedom> <assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<compilers> <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </dependentAssembly>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </assemblyBinding>
</compilers> </runtime>
</system.codedom> <system.codedom>
<system.webServer> <compilers>
<handlers> <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<remove name="OPTIONSVerbHandler" /> </compilers>
<remove name="TRACEVerbHandler" /> </system.codedom>
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> <system.webServer>
</handlers> <handlers>
</system.webServer></configuration> <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
</configuration>
<!--APIKeys <!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+ Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6 Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
--> -->

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -19,3 +19,47 @@
2024-10-02 10:48:45.9055|ERROR|EDOKA|Unberechtigter Zugriff 2024-10-02 10:48:45.9055|ERROR|EDOKA|Unberechtigter Zugriff
2024-10-02 11:01:33.4541|ERROR|EDOKA|Unberechtigter Zugriff 2024-10-02 11:01:33.4541|ERROR|EDOKA|Unberechtigter Zugriff
2024-10-02 11:07:36.9066|ERROR|EDOKA|Unberechtigter Zugriff 2024-10-02 11:07:36.9066|ERROR|EDOKA|Unberechtigter Zugriff
2024-11-10 10:31:12.6582|INFO|OnDoc|OFFEDK0002008001966851 Archivierung ausgelöst
2024-11-10 11:39:34.6962|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: test
2024-11-10 17:23:14.0935|DEBUG|OnDoc|
2024-11-10 17:23:22.4810|DEBUG|OnDoc|
2024-11-10 17:25:26.5616|DEBUG|OnDoc|
2024-11-10 17:25:29.6189|DEBUG|OnDoc|
2024-11-11 07:28:08.4128|DEBUG|OnDoc|
2024-11-11 07:28:24.3073|DEBUG|OnDoc|
2024-11-11 07:29:20.3210|DEBUG|OnDoc|
2024-11-11 07:29:45.2395|DEBUG|OnDoc|
2024-11-11 07:29:46.7549|DEBUG|OnDoc|
2024-11-11 07:32:47.6143|DEBUG|OnDoc|
2024-11-11 07:32:47.6577|DEBUG|OnDoc|
2024-11-11 08:04:31.5075|DEBUG|OnDoc|
2024-11-11 08:04:32.6992|DEBUG|OnDoc|
2024-11-11 08:05:45.6104|DEBUG|OnDoc|
2024-11-11 08:05:46.4621|DEBUG|OnDoc|
2024-11-11 08:07:07.8260|DEBUG|OnDoc|
2024-11-11 08:07:07.8760|DEBUG|OnDoc|
2024-11-11 08:09:11.0943|DEBUG|OnDoc|
2024-11-11 08:09:11.1608|DEBUG|OnDoc|
2024-11-11 08:10:28.4625|DEBUG|OnDoc|
2024-11-11 08:11:03.6358|DEBUG|OnDoc|
2024-11-11 08:11:03.6638|DEBUG|OnDoc|
2024-11-11 08:13:24.2896|DEBUG|OnDoc|
2024-11-11 08:13:24.3297|DEBUG|OnDoc|
2024-11-11 08:18:00.6642|DEBUG|OnDoc|
2024-11-11 08:18:00.7067|DEBUG|OnDoc|
2024-11-11 08:30:13.1038|DEBUG|OnDoc|
2024-11-11 08:30:13.9515|DEBUG|OnDoc|
2024-11-11 08:31:59.3447|DEBUG|OnDoc|
2024-11-11 08:31:59.3862|DEBUG|OnDoc|
2024-11-11 08:37:47.2966|DEBUG|OnDoc|
2024-11-11 08:37:47.3382|DEBUG|OnDoc|
2024-11-11 09:13:34.6940|DEBUG|OnDoc|
2024-11-11 09:13:34.7655|DEBUG|OnDoc|
2024-11-11 09:13:42.7769|DEBUG|OnDoc|
2024-11-11 09:13:48.3325|DEBUG|OnDoc|
2024-11-11 09:31:12.3756|DEBUG|OnDoc|
2024-11-11 09:31:32.4519|DEBUG|OnDoc|
2024-11-11 09:31:56.0364|DEBUG|OnDoc|
2024-11-11 09:31:56.0854|DEBUG|OnDoc|
2024-11-11 09:32:01.0609|DEBUG|OnDoc|
2024-11-11 09:32:01.2475|DEBUG|OnDoc|

View File

@@ -292,3 +292,8 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Optimization
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetF.7D617477.Up2Date E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetF.7D617477.Up2Date
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.pdb E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Licensing.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml

View File

@@ -0,0 +1 @@
f5ed676130b0172cf198bb31d2c96a41e8f73cd235f8bfccfa7a4479f9bb4a7c

View File

@@ -0,0 +1,170 @@
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\libSkiaSharp.dylib
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\x86\libSkiaSharp.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\x64\libSkiaSharp.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\arm64\libSkiaSharp.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.exe
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.exe.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.rsp
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csi.exe
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csi.exe.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csi.rsp
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CodeAnalysis.CSharp.Scripting.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CodeAnalysis.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CodeAnalysis.Scripting.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.CSharp.Core.targets
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.DiaSymReader.Native.amd64.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.DiaSymReader.Native.x86.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.Managed.Core.CurrentVersions.targets
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.Managed.Core.targets
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\Microsoft.VisualBasic.Core.targets
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Buffers.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Collections.Immutable.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Memory.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Numerics.Vectors.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Reflection.Metadata.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Runtime.CompilerServices.Unsafe.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Text.Encoding.CodePages.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\System.Threading.Tasks.Extensions.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\vbc.exe
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\vbc.exe.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\vbc.rsp
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\VBCSCompiler.exe
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\VBCSCompiler.exe.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Antlr3.Runtime.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Database.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Helper.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Logging.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.Abstractions.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.Features.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.WebUtilities.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Bcl.AsyncInterfaces.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Configuration.Abstractions.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Configuration.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.DependencyInjection.Abstractions.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.DependencyInjection.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.ObjectPool.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Options.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Primitives.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Net.Http.Headers.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Web.Infrastructure.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Model.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Newtonsoft.Json.Bson.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Newtonsoft.Json.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Owin.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Swashbuckle.Core.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Buffers.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.ComponentModel.Annotations.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Memory.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Net.Http.Formatting.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Numerics.Vectors.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Runtime.CompilerServices.Unsafe.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Text.Encodings.Web.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Threading.Tasks.Extensions.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.ValueTuple.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Cors.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Helpers.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Http.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Http.WebHost.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Mvc.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Optimization.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Razor.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.Deployment.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.Razor.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\WebActivatorEx.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\WebGrease.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocIO.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\BarcodeLib.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.Database.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\QRCoder.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Compat.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Bars.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.DataVisualization.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Editor.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Database.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Logging.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Helper.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Model.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.Abstractions.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.Http.Features.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.AspNetCore.WebUtilities.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Bcl.AsyncInterfaces.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Configuration.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Configuration.Abstractions.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.DependencyInjection.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.DependencyInjection.Abstractions.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.ObjectPool.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Options.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Extensions.Primitives.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Microsoft.Net.Http.Headers.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Newtonsoft.Json.Bson.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Newtonsoft.Json.Bson.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Buffers.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Memory.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Net.Http.Formatting.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Numerics.Vectors.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Runtime.CompilerServices.Unsafe.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Text.Encodings.Web.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Threading.Tasks.Extensions.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.ValueTuple.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Helpers.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Http.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Http.WebHost.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Mvc.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Razor.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.Deployment.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.WebPages.Razor.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Newtonsoft.Json.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Optimization.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Antlr3.Runtime.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocIO.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\BarcodeLib.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.Database.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Net.Http.Formatting.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Helpers.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Http.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Http.WebHost.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Mvc.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Razor.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.WebPages.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.WebPages.Deployment.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.WebPages.Razor.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Optimization.resources.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Release\API_NetFramework.csproj.AssemblyReference.cache
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Release\API_NetFramework.csproj.CoreCompileInputs.cache
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Release\API_NetF.7D617477.Up2Date
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Release\OnDoc_NetFramework.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Release\OnDoc_NetFramework.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Licensing.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml

Binary file not shown.

Binary file not shown.

View File

@@ -1,5 +1,5 @@
@using System.Web.Http @using System.Web.Http
@using EDOKAAPI_NetFramework.Areas.HelpPage.Models @using API_NetFramework.Areas.HelpPage.Models
@model HelpPageApiModel @model HelpPageApiModel
@{ @{

View File

@@ -1,8 +1,8 @@
@using System.Web.Http @using System.Web.Http
@using System.Web.Http.Controllers @using System.Web.Http.Controllers
@using System.Web.Http.Description @using System.Web.Http.Description
@using EDOKAAPI_NetFramework.Areas.HelpPage @using API_NetFramework.Areas.HelpPage
@using EDOKAAPI_NetFramework.Areas.HelpPage.Models @using API_NetFramework.Areas.HelpPage.Models
@model IGrouping<HttpControllerDescriptor, ApiDescription> @model IGrouping<HttpControllerDescriptor, ApiDescription>
@{ @{

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model CollectionModelDescription @model CollectionModelDescription
@if (Model.ElementDescription is ComplexTypeModelDescription) @if (Model.ElementDescription is ComplexTypeModelDescription)
{ {

View File

@@ -1,3 +1,3 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model ComplexTypeModelDescription @model ComplexTypeModelDescription
@Html.DisplayFor(m => m.Properties, "Parameters") @Html.DisplayFor(m => m.Properties, "Parameters")

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model DictionaryModelDescription @model DictionaryModelDescription
Dictionary of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] Dictionary of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key]
and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value]

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model EnumTypeModelDescription @model EnumTypeModelDescription
<p>Possible enumeration values:</p> <p>Possible enumeration values:</p>

View File

@@ -1,7 +1,7 @@
@using System.Web.Http @using System.Web.Http
@using System.Web.Http.Description @using System.Web.Http.Description
@using EDOKAAPI_NetFramework.Areas.HelpPage.Models @using API_NetFramework.Areas.HelpPage.Models
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model HelpPageApiModel @model HelpPageApiModel
@{ @{

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage @using API_NetFramework.Areas.HelpPage
@model ImageSample @model ImageSample
<img src="@Model.Src" /> <img src="@Model.Src" />

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage @using API_NetFramework.Areas.HelpPage
@model InvalidSample @model InvalidSample
@if (HttpContext.Current.IsDebuggingEnabled) @if (HttpContext.Current.IsDebuggingEnabled)

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model KeyValuePairModelDescription @model KeyValuePairModelDescription
Pair of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] Pair of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key]
and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value]

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model Type @model Type
@{ @{
ModelDescription modelDescription = ViewBag.modelDescription; ModelDescription modelDescription = ViewBag.modelDescription;

View File

@@ -2,7 +2,7 @@
@using System.Collections.ObjectModel @using System.Collections.ObjectModel
@using System.Web.Http.Description @using System.Web.Http.Description
@using System.Threading @using System.Threading
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model IList<ParameterDescription> @model IList<ParameterDescription>
@if (Model.Count > 0) @if (Model.Count > 0)

View File

@@ -1,3 +1,3 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model SimpleTypeModelDescription @model SimpleTypeModelDescription
@Model.Documentation @Model.Documentation

View File

@@ -1,4 +1,4 @@
@using EDOKAAPI_NetFramework.Areas.HelpPage @using API_NetFramework.Areas.HelpPage
@model TextSample @model TextSample
<pre class="wrapped"> <pre class="wrapped">

View File

@@ -2,7 +2,7 @@
@using System.Web.Http.Controllers @using System.Web.Http.Controllers
@using System.Web.Http.Description @using System.Web.Http.Description
@using System.Collections.ObjectModel @using System.Collections.ObjectModel
@using EDOKAAPI_NetFramework.Areas.HelpPage.Models @using API_NetFramework.Areas.HelpPage.Models
@model Collection<ApiDescription> @model Collection<ApiDescription>
@{ @{

View File

@@ -1,5 +1,5 @@
@using System.Web.Http @using System.Web.Http
@using EDOKAAPI_NetFramework.Areas.HelpPage.ModelDescriptions @using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model ModelDescription @model ModelDescription
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" /> <link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />

View File

@@ -1 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="EDOKAAPI_NetFramework.WebApiApplication" Language="C#" %> <%@ Application Codebehind="Global.asax.cs" Inherits="API_NetFramework.WebApiApplication" Language="C#" %>

View File

@@ -21,6 +21,7 @@
<ul class="navbar-nav flex-grow-1"> <ul class="navbar-nav flex-grow-1">
<li>@Html.ActionLink("Startseite", "Index", "Home", new { area = "" }, new { @class = "nav-link" })</li> <li>@Html.ActionLink("Startseite", "Index", "Home", new { area = "" }, new { @class = "nav-link" })</li>
<li>@Html.ActionLink("API", "Index", "Help", new { area = "" }, new { @class = "nav-link" })</li> <li>@Html.ActionLink("API", "Index", "Help", new { area = "" }, new { @class = "nav-link" })</li>
<li>@Html.ActionLink("Swagger", "Index", "Swagger", new { area = "" }, new { @class = "nav-link" })</li>
</ul> </ul>
</div> </div>
</div> </div>

View File

@@ -17,7 +17,7 @@
<add namespace="System.Web.Mvc.Html" /> <add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Optimization"/> <add namespace="System.Web.Optimization"/>
<add namespace="System.Web.Routing" /> <add namespace="System.Web.Routing" />
<add namespace="EDOKAAPI_NetFramework" /> <add namespace="API_NetFramework" />
</namespaces> </namespaces>
</pages> </pages>
</system.web.webPages.razor> </system.web.webPages.razor>

View File

@@ -9,9 +9,21 @@
<add key="webpages:Enabled" value="false" /> <add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" /> <add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> <add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="Bearer" value="abc" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="AuthCheck" value="Yes" />
<add key="SendToOnBase" value="No" />
<add key="SendToFile" value="Yes" />
<add key="DebugDir" value="x:\jsontemp" />
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" /> <add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
</connectionStrings> </connectionStrings>
<system.web> <system.web>
<compilation targetFramework="4.8.1" /> <compilation targetFramework="4.8.1" />
@@ -49,7 +61,7 @@
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
@@ -67,6 +79,34 @@
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" /> <bindingRedirect oldVersion="1.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
</dependentAssembly> </dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.1462.42.0" newVersion="26.1462.42.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>
<system.codedom> <system.codedom>
@@ -84,4 +124,9 @@
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>
<!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
-->
<!--ProjectGuid: D1F49CD8-7015-425E-A16F-738BC4222BDB--> <!--ProjectGuid: D1F49CD8-7015-425E-A16F-738BC4222BDB-->

View File

@@ -16,7 +16,7 @@
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" /> <assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-25.2462.6.0" newVersion="25.2462.6.0" /> <bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@@ -26,6 +26,10 @@
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" /> <bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
</dependentAssembly> </dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>
</configuration> </configuration>

Some files were not shown because too many files have changed in this diff Show More