Initial Comit
This commit is contained in:
35
EDOOKAAPI/Controllers/Dokumente.cs
Normal file
35
EDOOKAAPI/Controllers/Dokumente.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace EDOOKAAPI.Controllers
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
[ApiController]
|
||||
public class Dokumente : ControllerBase
|
||||
{
|
||||
[HttpGet("GetDoc/{DocID}")]
|
||||
public IActionResult GetDoc(string Docid)
|
||||
{
|
||||
{
|
||||
EDOKA_Database.EDOKA_DB db = new EDOKA_Database.EDOKA_DB();
|
||||
string sql = "Select dbo.BinaryToBase64(dokument) as Data from doks ";
|
||||
sql = sql + "WHERE dbo.doks.dokumentid = '" + Docid + "' ";
|
||||
db.Get_Tabledata(sql, false, true);
|
||||
if (db.dsdaten.Tables[0].Rows.Count > 0)
|
||||
{
|
||||
return Ok(db.dsdaten.Tables[0].Rows[0][0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
return BadRequest("Dokument nicht vorhanden.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public IActionResult GetDocAsPDF(string Docid)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
33
EDOOKAAPI/Controllers/WeatherForecastController.cs
Normal file
33
EDOOKAAPI/Controllers/WeatherForecastController.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace EDOOKAAPI.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("[controller]")]
|
||||
public class WeatherForecastController : ControllerBase
|
||||
{
|
||||
private static readonly string[] Summaries = new[]
|
||||
{
|
||||
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
||||
};
|
||||
|
||||
private readonly ILogger<WeatherForecastController> _logger;
|
||||
|
||||
public WeatherForecastController(ILogger<WeatherForecastController> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
[HttpGet(Name = "GetWeatherForecast")]
|
||||
public IEnumerable<WeatherForecast> Get()
|
||||
{
|
||||
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
||||
{
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||
TemperatureC = Random.Shared.Next(-20, 55),
|
||||
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
|
||||
})
|
||||
.ToArray();
|
||||
}
|
||||
}
|
||||
}
|
||||
22
EDOOKAAPI/EDOOKAAPI.csproj
Normal file
22
EDOOKAAPI/EDOOKAAPI.csproj
Normal file
@@ -0,0 +1,22 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Database\EDOKA_Database.csproj" />
|
||||
<ProjectReference Include="..\DOCGEN\DOCGEN.csproj" />
|
||||
<ProjectReference Include="..\EDOKA_Logging\EDOKA_Logging.csproj" />
|
||||
<ProjectReference Include="..\Helper\Helper.csproj" />
|
||||
<ProjectReference Include="..\Model\Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
8
EDOOKAAPI/EDOOKAAPI.csproj.user
Normal file
8
EDOOKAAPI/EDOOKAAPI.csproj.user
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ActiveDebugProfile>https</ActiveDebugProfile>
|
||||
<Controller_SelectedScaffolderID>ApiControllerEmptyScaffolder</Controller_SelectedScaffolderID>
|
||||
<Controller_SelectedScaffolderCategoryPath>root/Common/Api</Controller_SelectedScaffolderCategoryPath>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
EDOOKAAPI/EDOOKAAPI.http
Normal file
6
EDOOKAAPI/EDOOKAAPI.http
Normal file
@@ -0,0 +1,6 @@
|
||||
@EDOOKAAPI_HostAddress = http://localhost:5194
|
||||
|
||||
GET {{EDOOKAAPI_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
25
EDOOKAAPI/Program.cs
Normal file
25
EDOOKAAPI/Program.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
|
||||
builder.Services.AddControllers();
|
||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||
builder.Services.AddEndpointsApiExplorer();
|
||||
builder.Services.AddSwaggerGen();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseSwagger();
|
||||
app.UseSwaggerUI();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
||||
41
EDOOKAAPI/Properties/launchSettings.json
Normal file
41
EDOOKAAPI/Properties/launchSettings.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:37766",
|
||||
"sslPort": 44310
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:5194",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "https://localhost:7236;http://localhost:5194",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
13
EDOOKAAPI/WeatherForecast.cs
Normal file
13
EDOOKAAPI/WeatherForecast.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace EDOOKAAPI
|
||||
{
|
||||
public class WeatherForecast
|
||||
{
|
||||
public DateOnly Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
|
||||
public string? Summary { get; set; }
|
||||
}
|
||||
}
|
||||
8
EDOOKAAPI/appsettings.Development.json
Normal file
8
EDOOKAAPI/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
19
EDOOKAAPI/appsettings.json
Normal file
19
EDOOKAAPI/appsettings.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"EDOKAConnection": "data source=shu01\\shu00;initial catalog=edoka_dms;packet size=4096;persist security info=false;user id=sa;password=*shu29;MultipleActiveResultSets=true;TrustServerCertificate=true"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
|
||||
"runtimeOptions": {
|
||||
"configProperties": {
|
||||
"System.Globalization.Invariant": true
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
BIN
EDOOKAAPI/bin/Debug/net8.0/DOCGEN.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/DOCGEN.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/DOCGEN.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/DOCGEN.pdb
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Database.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Database.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Database.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Database.pdb
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOKA_Logging.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOKA_Logging.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOKA_Logging.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOKA_Logging.pdb
Normal file
Binary file not shown.
397
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.deps.json
Normal file
397
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.deps.json
Normal file
@@ -0,0 +1,397 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"EDOOKAAPI/1.0.0": {
|
||||
"dependencies": {
|
||||
"DOCGEN": "1.0.0",
|
||||
"EDOKA_Database": "1.0.0",
|
||||
"EDOKA_Logging": "1.0.0",
|
||||
"Helper": "1.0.0",
|
||||
"Model": "1.0.0",
|
||||
"Swashbuckle.AspNetCore": "6.4.0",
|
||||
"System.Data.SqlClient": "4.8.6"
|
||||
},
|
||||
"runtime": {
|
||||
"EDOOKAAPI.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
|
||||
"Microsoft.NETCore.Platforms/3.1.0": {},
|
||||
"Microsoft.OpenApi/1.2.3": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
|
||||
"assemblyVersion": "1.2.3.0",
|
||||
"fileVersion": "1.2.3.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||
"dependencies": {
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||
}
|
||||
},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/sni.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x64/native/sni.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x86/native/sni.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore/6.4.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.ApiDescription.Server": "6.0.5",
|
||||
"Swashbuckle.AspNetCore.Swagger": "6.4.0",
|
||||
"Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
|
||||
"Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore.Swagger/6.4.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.OpenApi": "1.2.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
|
||||
"assemblyVersion": "6.4.0.0",
|
||||
"fileVersion": "6.4.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
|
||||
"dependencies": {
|
||||
"Swashbuckle.AspNetCore.Swagger": "6.4.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
|
||||
"assemblyVersion": "6.4.0.0",
|
||||
"fileVersion": "6.4.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
|
||||
"assemblyVersion": "6.4.0.0",
|
||||
"fileVersion": "6.4.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.SqlClient/4.8.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.Registry": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0",
|
||||
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"assemblyVersion": "4.6.1.6",
|
||||
"fileVersion": "4.700.23.52603"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.6",
|
||||
"fileVersion": "4.700.23.52603"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.6",
|
||||
"fileVersion": "4.700.23.52603"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.AccessControl/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
},
|
||||
"System.Security.Principal.Windows/4.7.0": {},
|
||||
"DOCGEN/1.0.0": {
|
||||
"dependencies": {
|
||||
"EDOKA_Database": "1.0.0",
|
||||
"Helper": "1.0.0",
|
||||
"Model": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"DOCGEN.dll": {}
|
||||
}
|
||||
},
|
||||
"EDOKA_Database/1.0.0": {
|
||||
"dependencies": {
|
||||
"EDOKA_Logging": "1.0.0",
|
||||
"Helper": "1.0.0",
|
||||
"Model": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Database.dll": {}
|
||||
}
|
||||
},
|
||||
"EDOKA_Logging/1.0.0": {
|
||||
"runtime": {
|
||||
"EDOKA_Logging.dll": {}
|
||||
}
|
||||
},
|
||||
"Helper/1.0.0": {
|
||||
"runtime": {
|
||||
"Helper.dll": {}
|
||||
}
|
||||
},
|
||||
"Model/1.0.0": {
|
||||
"runtime": {
|
||||
"Model.dll": {}
|
||||
}
|
||||
},
|
||||
"NLog/5.0.0.0": {
|
||||
"runtime": {
|
||||
"NLog.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.3.2.2526"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Syncfusion.DocIO.Base/25.2462.5.0": {
|
||||
"runtime": {
|
||||
"Syncfusion.DocIO.Base.dll": {
|
||||
"assemblyVersion": "25.2462.5.0",
|
||||
"fileVersion": "25.2462.5.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Syncfusion.Licensing/25.2462.5.0": {
|
||||
"runtime": {
|
||||
"Syncfusion.Licensing.dll": {
|
||||
"assemblyVersion": "25.2462.5.0",
|
||||
"fileVersion": "25.2462.5.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"NLog.Database/5.0.0.0": {
|
||||
"runtime": {
|
||||
"NLog.Database.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.3.2.2526"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Syncfusion.Compression.Base/25.2462.5.0": {
|
||||
"runtime": {
|
||||
"Syncfusion.Compression.Base.dll": {
|
||||
"assemblyVersion": "25.2462.5.0",
|
||||
"fileVersion": "25.2462.5.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Syncfusion.OfficeChart.Base/25.2462.5.0": {
|
||||
"runtime": {
|
||||
"Syncfusion.OfficeChart.Base.dll": {
|
||||
"assemblyVersion": "25.2462.5.0",
|
||||
"fileVersion": "25.2462.5.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"EDOOKAAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
|
||||
"path": "microsoft.extensions.apidescription.server/6.0.5",
|
||||
"hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
||||
"path": "microsoft.netcore.platforms/3.1.0",
|
||||
"hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.OpenApi/1.2.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
|
||||
"path": "microsoft.openapi/1.2.3",
|
||||
"hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||
"path": "microsoft.win32.registry/4.7.0",
|
||||
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
|
||||
"path": "runtime.native.system.data.sqlclient.sni/4.7.0",
|
||||
"hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"Swashbuckle.AspNetCore/6.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
|
||||
"path": "swashbuckle.aspnetcore/6.4.0",
|
||||
"hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512"
|
||||
},
|
||||
"Swashbuckle.AspNetCore.Swagger/6.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
|
||||
"path": "swashbuckle.aspnetcore.swagger/6.4.0",
|
||||
"hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512"
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
|
||||
"path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
|
||||
"hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512"
|
||||
},
|
||||
"Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
|
||||
"path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
|
||||
"hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.SqlClient/4.8.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==",
|
||||
"path": "system.data.sqlclient/4.8.6",
|
||||
"hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512"
|
||||
},
|
||||
"System.Security.AccessControl/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
||||
"path": "system.security.accesscontrol/4.7.0",
|
||||
"hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Principal.Windows/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
||||
"path": "system.security.principal.windows/4.7.0",
|
||||
"hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"DOCGEN/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"EDOKA_Database/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"EDOKA_Logging/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Helper/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Model/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"NLog/5.0.0.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Syncfusion.DocIO.Base/25.2462.5.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Syncfusion.Licensing/25.2462.5.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"NLog.Database/5.0.0.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Syncfusion.Compression.Base/25.2462.5.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Syncfusion.OfficeChart.Base/25.2462.5.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.exe
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.exe
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.pdb
Normal file
Binary file not shown.
19
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.runtimeconfig.json
Normal file
19
EDOOKAAPI/bin/Debug/net8.0/EDOOKAAPI.runtimeconfig.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
EDOOKAAPI/bin/Debug/net8.0/Helper.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Helper.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Helper.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Helper.pdb
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Microsoft.OpenApi.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Microsoft.OpenApi.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Model.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Model.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Model.pdb
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Model.pdb
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/NLog.Database.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/NLog.Database.dll
Normal file
Binary file not shown.
461
EDOOKAAPI/bin/Debug/net8.0/NLog.Database.xml
Normal file
461
EDOOKAAPI/bin/Debug/net8.0/NLog.Database.xml
Normal file
@@ -0,0 +1,461 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>NLog.Database</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:NLog.Targets.DatabaseCommandInfo">
|
||||
<summary>
|
||||
Information about database command + parameters.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseCommandInfo.CommandType">
|
||||
<summary>
|
||||
Gets or sets the type of the command.
|
||||
</summary>
|
||||
<value>The type of the command.</value>
|
||||
<docgen category='Command Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseCommandInfo.ConnectionString">
|
||||
<summary>
|
||||
Gets or sets the connection string to run the command against. If not provided, connection string from the target is used.
|
||||
</summary>
|
||||
<docgen category='Command Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseCommandInfo.Text">
|
||||
<summary>
|
||||
Gets or sets the command text.
|
||||
</summary>
|
||||
<docgen category='Command Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseCommandInfo.IgnoreFailures">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to ignore failures.
|
||||
</summary>
|
||||
<docgen category='Command Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseCommandInfo.Parameters">
|
||||
<summary>
|
||||
Gets the collection of parameters. Each parameter contains a mapping
|
||||
between NLog layout and a database named or positional parameter.
|
||||
</summary>
|
||||
<docgen category='Command Options' order='10' />
|
||||
</member>
|
||||
<member name="T:NLog.Targets.DatabaseObjectPropertyInfo">
|
||||
<summary>
|
||||
Information about object-property for the database-connection-object
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseObjectPropertyInfo.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Targets.DatabaseObjectPropertyInfo"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseObjectPropertyInfo.Name">
|
||||
<summary>
|
||||
Gets or sets the name for the object-property
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseObjectPropertyInfo.Layout">
|
||||
<summary>
|
||||
Gets or sets the value to assign on the object-property
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseObjectPropertyInfo.PropertyType">
|
||||
<summary>
|
||||
Gets or sets the type of the object-property
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseObjectPropertyInfo.Format">
|
||||
<summary>
|
||||
Gets or sets convert format of the property value
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='8' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseObjectPropertyInfo.Culture">
|
||||
<summary>
|
||||
Gets or sets the culture used for parsing property string-value for type-conversion
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='9' />
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseObjectPropertyInfo.RenderValue(NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Render Result Value
|
||||
</summary>
|
||||
<param name="logEvent">Log event for rendering</param>
|
||||
<returns>Result value when available, else fallback to defaultValue</returns>
|
||||
</member>
|
||||
<member name="T:NLog.Targets.DatabaseParameterInfo">
|
||||
<summary>
|
||||
Represents a parameter to a Database target.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseParameterInfo.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Targets.DatabaseParameterInfo" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseParameterInfo.#ctor(System.String,NLog.Layouts.Layout)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Targets.DatabaseParameterInfo" /> class.
|
||||
</summary>
|
||||
<param name="parameterName">Name of the parameter.</param>
|
||||
<param name="parameterLayout">The parameter layout.</param>
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Name">
|
||||
<summary>
|
||||
Gets or sets the database parameter name.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='0' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Layout">
|
||||
<summary>
|
||||
Gets or sets the layout that should be use to calculate the value for the parameter.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='1' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.DbType">
|
||||
<summary>
|
||||
Gets or sets the database parameter DbType.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='2' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Size">
|
||||
<summary>
|
||||
Gets or sets the database parameter size.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='3' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Precision">
|
||||
<summary>
|
||||
Gets or sets the database parameter precision.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='4' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Scale">
|
||||
<summary>
|
||||
Gets or sets the database parameter scale.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='5' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.ParameterType">
|
||||
<summary>
|
||||
Gets or sets the type of the parameter.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='6' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.DefaultValue">
|
||||
<summary>
|
||||
Gets or sets the fallback value when result value is not available
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='7' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Format">
|
||||
<summary>
|
||||
Gets or sets convert format of the database parameter value.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='8' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.Culture">
|
||||
<summary>
|
||||
Gets or sets the culture used for parsing parameter string-value for type-conversion
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='9' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseParameterInfo.AllowDbNull">
|
||||
<summary>
|
||||
Gets or sets whether empty value should translate into DbNull. Requires database column to allow NULL values.
|
||||
</summary>
|
||||
<docgen category='Parameter Options' order='10' />
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseParameterInfo.RenderValue(NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Render Result Value
|
||||
</summary>
|
||||
<param name="logEvent">Log event for rendering</param>
|
||||
<returns>Result value when available, else fallback to defaultValue</returns>
|
||||
</member>
|
||||
<member name="T:NLog.Targets.DatabaseTarget">
|
||||
<summary>
|
||||
Writes log messages to the database using an ADO.NET provider.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
Note .NET Core application cannot load connectionstrings from app.config / web.config. Instead use ${configsetting}
|
||||
</para>
|
||||
<a href="https://github.com/nlog/nlog/wiki/Database-target">See NLog Wiki</a>
|
||||
</remarks>
|
||||
<seealso href="https://github.com/nlog/nlog/wiki/Database-target">Documentation on NLog Wiki</seealso>
|
||||
<example>
|
||||
<para>
|
||||
The configuration is dependent on the database type, because
|
||||
there are different methods of specifying connection string, SQL
|
||||
command and command parameters.
|
||||
</para>
|
||||
<para>MS SQL Server using System.Data.SqlClient:</para>
|
||||
<code lang="XML" source="examples/targets/Configuration File/Database/MSSQL/NLog.config" height="450" />
|
||||
<para>Oracle using System.Data.OracleClient:</para>
|
||||
<code lang="XML" source="examples/targets/Configuration File/Database/Oracle.Native/NLog.config" height="350" />
|
||||
<para>Oracle using System.Data.OleDBClient:</para>
|
||||
<code lang="XML" source="examples/targets/Configuration File/Database/Oracle.OleDB/NLog.config" height="350" />
|
||||
<para>To set up the log target programmatically use code like this (an equivalent of MSSQL configuration):</para>
|
||||
<code lang="C#" source="examples/targets/Configuration API/Database/MSSQL/Example.cs" height="630" />
|
||||
</example>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Targets.DatabaseTarget" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Targets.DatabaseTarget" /> class.
|
||||
</summary>
|
||||
<param name="name">Name of the target.</param>
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.DBProvider">
|
||||
<summary>
|
||||
Gets or sets the name of the database provider.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
The parameter name should be a provider invariant name as registered in machine.config or app.config. Common values are:
|
||||
</para>
|
||||
<ul>
|
||||
<li><c>System.Data.SqlClient</c> - <see href="https://msdn.microsoft.com/en-us/library/system.data.sqlclient.aspx">SQL Sever Client</see></li>
|
||||
<li><c>System.Data.SqlServerCe.3.5</c> - <see href="https://www.microsoft.com/sqlserver/2005/en/us/compact.aspx">SQL Sever Compact 3.5</see></li>
|
||||
<li><c>System.Data.OracleClient</c> - <see href="https://msdn.microsoft.com/en-us/library/system.data.oracleclient.aspx">Oracle Client from Microsoft</see> (deprecated in .NET Framework 4)</li>
|
||||
<li><c>Oracle.DataAccess.Client</c> - <see href="https://www.oracle.com/technology/tech/windows/odpnet/index.html">ODP.NET provider from Oracle</see></li>
|
||||
<li><c>System.Data.SQLite</c> - <see href="http://sqlite.phxsoftware.com/">System.Data.SQLite driver for SQLite</see></li>
|
||||
<li><c>Npgsql</c> - <see href="https://www.npgsql.org/">Npgsql driver for PostgreSQL</see></li>
|
||||
<li><c>MySql.Data.MySqlClient</c> - <see href="https://www.mysql.com/downloads/connector/net/">MySQL Connector/Net</see></li>
|
||||
</ul>
|
||||
<para>(Note that provider invariant names are not supported on .NET Compact Framework).</para>
|
||||
<para>
|
||||
Alternatively the parameter value can be be a fully qualified name of the provider
|
||||
connection type (class implementing <see cref="T:System.Data.IDbConnection" />) or one of the following tokens:
|
||||
</para>
|
||||
<ul>
|
||||
<li><c>sqlserver</c>, <c>mssql</c>, <c>microsoft</c> or <c>msde</c> - SQL Server Data Provider</li>
|
||||
<li><c>oledb</c> - OLEDB Data Provider</li>
|
||||
<li><c>odbc</c> - ODBC Data Provider</li>
|
||||
</ul>
|
||||
</remarks>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.ConnectionStringName">
|
||||
<summary>
|
||||
Gets or sets the name of the connection string (as specified in <see href="https://msdn.microsoft.com/en-us/library/bf7sd233.aspx"><connectionStrings> configuration section</see>.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.ConnectionString">
|
||||
<summary>
|
||||
Gets or sets the connection string. When provided, it overrides the values
|
||||
specified in DBHost, DBUserName, DBPassword, DBDatabase.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.InstallConnectionString">
|
||||
<summary>
|
||||
Gets or sets the connection string using for installation and uninstallation. If not provided, regular ConnectionString is being used.
|
||||
</summary>
|
||||
<docgen category='Installation Options' order='100' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.InstallDdlCommands">
|
||||
<summary>
|
||||
Gets the installation DDL commands.
|
||||
</summary>
|
||||
<docgen category='Installation Options' order='100' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.UninstallDdlCommands">
|
||||
<summary>
|
||||
Gets the uninstallation DDL commands.
|
||||
</summary>
|
||||
<docgen category='Installation Options' order='100' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.KeepConnection">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to keep the
|
||||
database connection open between the log events.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.DBHost">
|
||||
<summary>
|
||||
Gets or sets the database host name. If the ConnectionString is not provided
|
||||
this value will be used to construct the "Server=" part of the
|
||||
connection string.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.DBUserName">
|
||||
<summary>
|
||||
Gets or sets the database user name. If the ConnectionString is not provided
|
||||
this value will be used to construct the "User ID=" part of the
|
||||
connection string.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.DBPassword">
|
||||
<summary>
|
||||
Gets or sets the database password. If the ConnectionString is not provided
|
||||
this value will be used to construct the "Password=" part of the
|
||||
connection string.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.DBDatabase">
|
||||
<summary>
|
||||
Gets or sets the database name. If the ConnectionString is not provided
|
||||
this value will be used to construct the "Database=" part of the
|
||||
connection string.
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.CommandText">
|
||||
<summary>
|
||||
Gets or sets the text of the SQL command to be run on each log level.
|
||||
</summary>
|
||||
<remarks>
|
||||
Typically this is a SQL INSERT statement or a stored procedure call.
|
||||
It should use the database-specific parameters (marked as <c>@parameter</c>
|
||||
for SQL server or <c>:parameter</c> for Oracle, other data providers
|
||||
have their own notation) and not the layout renderers,
|
||||
because the latter is prone to SQL injection attacks.
|
||||
The layout renderers should be specified as <parameter /> elements instead.
|
||||
</remarks>
|
||||
<docgen category='SQL Statement' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.CommandType">
|
||||
<summary>
|
||||
Gets or sets the type of the SQL command to be run on each log level.
|
||||
</summary>
|
||||
<remarks>
|
||||
This specifies how the command text is interpreted, as "Text" (default) or as "StoredProcedure".
|
||||
When using the value StoredProcedure, the commandText-property would
|
||||
normally be the name of the stored procedure. TableDirect method is not supported in this context.
|
||||
</remarks>
|
||||
<docgen category='SQL Statement' order='11' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.Parameters">
|
||||
<summary>
|
||||
Gets the collection of parameters. Each item contains a mapping
|
||||
between NLog layout and a database named or positional parameter.
|
||||
</summary>
|
||||
<docgen category='SQL Statement' order='14' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.ConnectionProperties">
|
||||
<summary>
|
||||
Gets the collection of properties. Each item contains a mapping
|
||||
between NLog layout and a property on the DbConnection instance
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.CommandProperties">
|
||||
<summary>
|
||||
Gets the collection of properties. Each item contains a mapping
|
||||
between NLog layout and a property on the DbCommand instance
|
||||
</summary>
|
||||
<docgen category='Connection Options' order='50' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.DatabaseTarget.IsolationLevel">
|
||||
<summary>
|
||||
Configures isolated transaction batch writing. If supported by the database, then it will improve insert performance.
|
||||
</summary>
|
||||
<docgen category='Performance Tuning Options' order='10' />
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.Install(NLog.Config.InstallationContext)">
|
||||
<summary>
|
||||
Performs installation which requires administrative permissions.
|
||||
</summary>
|
||||
<param name="installationContext">The installation context.</param>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.Uninstall(NLog.Config.InstallationContext)">
|
||||
<summary>
|
||||
Performs uninstallation which requires administrative permissions.
|
||||
</summary>
|
||||
<param name="installationContext">The installation context.</param>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.IsInstalled(NLog.Config.InstallationContext)">
|
||||
<summary>
|
||||
Determines whether the item is installed.
|
||||
</summary>
|
||||
<param name="installationContext">The installation context.</param>
|
||||
<returns>
|
||||
Value indicating whether the item is installed or null if it is not possible to determine.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.InitializeTarget">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.SetConnectionType">
|
||||
<summary>
|
||||
Set the <see cref="P:NLog.Targets.DatabaseTarget.ConnectionType"/> to use it for opening connections to the database.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.CloseTarget">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.Write(NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Writes the specified logging event to the database. It creates
|
||||
a new database command, prepares parameters for it by calculating
|
||||
layouts and executes the command.
|
||||
</summary>
|
||||
<param name="logEvent">The logging event.</param>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.Write(System.Collections.Generic.IList{NLog.Common.AsyncLogEventInfo})">
|
||||
<summary>
|
||||
Writes an array of logging events to the log target. By default it iterates on all
|
||||
events and passes them to "Write" method. Inheriting classes can use this method to
|
||||
optimize batch writes.
|
||||
</summary>
|
||||
<param name="logEvents">Logging events to be written out.</param>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.ExecuteDbCommandWithParameters(NLog.LogEventInfo,System.Data.IDbConnection,System.Data.IDbTransaction)">
|
||||
<summary>
|
||||
Write logEvent to database
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.BuildConnectionString(NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Build the connectionstring from the properties.
|
||||
</summary>
|
||||
<remarks>
|
||||
Using <see cref="P:NLog.Targets.DatabaseTarget.ConnectionString"/> at first, and falls back to the properties <see cref="P:NLog.Targets.DatabaseTarget.DBHost"/>,
|
||||
<see cref="P:NLog.Targets.DatabaseTarget.DBUserName"/>, <see cref="P:NLog.Targets.DatabaseTarget.DBPassword"/> and <see cref="P:NLog.Targets.DatabaseTarget.DBDatabase"/>
|
||||
</remarks>
|
||||
<param name="logEvent">Event to render the layout inside the properties.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.EscapeValueForConnectionString(System.String)">
|
||||
<summary>
|
||||
Escape quotes and semicolons.
|
||||
See https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ms722656(v=vs.85)#setting-values-that-use-reserved-characters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.CreateDatabaseParameter(System.Data.IDbCommand,NLog.Targets.DatabaseParameterInfo)">
|
||||
<summary>
|
||||
Create database parameter
|
||||
</summary>
|
||||
<param name="command">Current command.</param>
|
||||
<param name="parameterInfo">Parameter configuration info.</param>
|
||||
</member>
|
||||
<member name="M:NLog.Targets.DatabaseTarget.GetDatabaseParameterValue(NLog.LogEventInfo,NLog.Targets.DatabaseParameterInfo)">
|
||||
<summary>
|
||||
Extract parameter value from the logevent
|
||||
</summary>
|
||||
<param name="logEvent">Current logevent.</param>
|
||||
<param name="parameterInfo">Parameter configuration info.</param>
|
||||
</member>
|
||||
<member name="T:NLog.Internal.ReflectionHelpers">
|
||||
<summary>
|
||||
Reflection helpers.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
EDOOKAAPI/bin/Debug/net8.0/NLog.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/NLog.dll
Normal file
Binary file not shown.
29155
EDOOKAAPI/bin/Debug/net8.0/NLog.xml
Normal file
29155
EDOOKAAPI/bin/Debug/net8.0/NLog.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Compression.Base.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Compression.Base.dll
Normal file
Binary file not shown.
12816
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Compression.Base.xml
Normal file
12816
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Compression.Base.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.DocIO.Base.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.DocIO.Base.dll
Normal file
Binary file not shown.
164919
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.DocIO.Base.xml
Normal file
164919
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.DocIO.Base.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Licensing.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.Licensing.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.OfficeChart.Base.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.OfficeChart.Base.dll
Normal file
Binary file not shown.
182156
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.OfficeChart.Base.xml
Normal file
182156
EDOOKAAPI/bin/Debug/net8.0/Syncfusion.OfficeChart.Base.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
EDOOKAAPI/bin/Debug/net8.0/System.Data.SqlClient.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/System.Data.SqlClient.dll
Normal file
Binary file not shown.
8
EDOOKAAPI/bin/Debug/net8.0/appsettings.Development.json
Normal file
8
EDOOKAAPI/bin/Debug/net8.0/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
19
EDOOKAAPI/bin/Debug/net8.0/appsettings.json
Normal file
19
EDOOKAAPI/bin/Debug/net8.0/appsettings.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"EDOKAConnection": "data source=shu01\\shu00;initial catalog=edoka_dms;packet size=4096;persist security info=false;user id=sa;password=*shu29;MultipleActiveResultSets=true;TrustServerCertificate=true"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
|
||||
"runtimeOptions": {
|
||||
"configProperties": {
|
||||
"System.Globalization.Invariant": true
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-arm64/native/sni.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-arm64/native/sni.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-x64/native/sni.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-x64/native/sni.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-x86/native/sni.dll
Normal file
BIN
EDOOKAAPI/bin/Debug/net8.0/runtimes/win-x86/native/sni.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
23
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.AssemblyInfo.cs
Normal file
23
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
// Laufzeitversion:4.0.30319.42000
|
||||
//
|
||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
// der Code erneut generiert wird.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("EDOOKAAPI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("EDOOKAAPI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("EDOOKAAPI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
759222ed2963bb6d0ae4011773f59408ac853e0f6d345db75bcd75dd10e1f807
|
||||
@@ -0,0 +1,19 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = EDOOKAAPI
|
||||
build_property.RootNamespace = EDOOKAAPI
|
||||
build_property.ProjectDir = X:\docdemo\EDOKA_2024\EDOOKAAPI\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = X:\docdemo\EDOKA_2024\EDOOKAAPI
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
17
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.GlobalUsings.g.cs
Normal file
17
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using global::Microsoft.AspNetCore.Builder;
|
||||
global using global::Microsoft.AspNetCore.Hosting;
|
||||
global using global::Microsoft.AspNetCore.Http;
|
||||
global using global::Microsoft.AspNetCore.Routing;
|
||||
global using global::Microsoft.Extensions.Configuration;
|
||||
global using global::Microsoft.Extensions.DependencyInjection;
|
||||
global using global::Microsoft.Extensions.Hosting;
|
||||
global using global::Microsoft.Extensions.Logging;
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Net.Http.Json;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
// Laufzeitversion:4.0.30319.42000
|
||||
//
|
||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
// der Code erneut generiert wird.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.assets.cache
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
0a3a575c08288b68dbec55bcb98e182a6e5d1d4196f19f73b20c011bcb779d08
|
||||
@@ -0,0 +1,59 @@
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\appsettings.Development.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\appsettings.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOOKAAPI.exe
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOOKAAPI.deps.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOOKAAPI.runtimeconfig.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOOKAAPI.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOOKAAPI.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Microsoft.OpenApi.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Database.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\DOCGEN.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOKA_Logging.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Helper.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Model.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\NLog.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.DocIO.Base.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.Licensing.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\NLog.Database.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.Compression.Base.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.OfficeChart.Base.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Database.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\DOCGEN.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\EDOKA_Logging.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Helper.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Model.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\NLog.xml
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.DocIO.Base.xml
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\NLog.Database.xml
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.Compression.Base.xml
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\Syncfusion.OfficeChart.Base.xml
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.csproj.AssemblyReference.cache
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.GeneratedMSBuildEditorConfig.editorconfig
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.AssemblyInfoInputs.cache
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.AssemblyInfo.cs
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.csproj.CoreCompileInputs.cache
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.MvcApplicationPartsAssemblyInfo.cs
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.MvcApplicationPartsAssemblyInfo.cache
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets.build.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets.development.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets\msbuild.EDOOKAAPI.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets\msbuild.build.EDOOKAAPI.props
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.EDOOKAAPI.props
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.EDOOKAAPI.props
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\staticwebassets.pack.json
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\scopedcss\bundle\EDOOKAAPI.styles.css
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.csproj.Up2Date
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\refint\EDOOKAAPI.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.pdb
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\EDOOKAAPI.genruntimeconfig.cache
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\obj\Debug\net8.0\ref\EDOOKAAPI.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\System.Data.SqlClient.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\runtimes\win-arm64\native\sni.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\runtimes\win-x64\native\sni.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\runtimes\win-x86\native\sni.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||
X:\docdemo\EDOKA_2024\EDOOKAAPI\bin\Debug\net8.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||
0
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.csproj.Up2Date
Normal file
0
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.csproj.Up2Date
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.dll
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
5b5413a39990b57ddfbafcb3230efc36a73b31f8eaba77cd3c94145e813b39c0
|
||||
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.pdb
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/EDOOKAAPI.pdb
Normal file
Binary file not shown.
BIN
EDOOKAAPI/obj/Debug/net8.0/apphost.exe
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
EDOOKAAPI/obj/Debug/net8.0/ref/EDOOKAAPI.dll
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/ref/EDOOKAAPI.dll
Normal file
Binary file not shown.
BIN
EDOOKAAPI/obj/Debug/net8.0/refint/EDOOKAAPI.dll
Normal file
BIN
EDOOKAAPI/obj/Debug/net8.0/refint/EDOOKAAPI.dll
Normal file
Binary file not shown.
11
EDOOKAAPI/obj/Debug/net8.0/staticwebassets.build.json
Normal file
11
EDOOKAAPI/obj/Debug/net8.0/staticwebassets.build.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"Hash": "ymL25WbJVhDKZx7myFetP2iO7+riju6KGiqGG2DVOWg=",
|
||||
"Source": "EDOOKAAPI",
|
||||
"BasePath": "_content/EDOOKAAPI",
|
||||
"Mode": "Default",
|
||||
"ManifestType": "Build",
|
||||
"ReferencedProjectsConfiguration": [],
|
||||
"DiscoveryPatterns": [],
|
||||
"Assets": []
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\build\EDOOKAAPI.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\buildMultiTargeting\EDOOKAAPI.props" />
|
||||
</Project>
|
||||
205
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.dgspec.json
Normal file
205
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,205 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\EDOOKAAPI.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj": {
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj",
|
||||
"projectName": "EDOKA_Database",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj",
|
||||
"frameworks": {
|
||||
"net481": {
|
||||
"projectReferences": {
|
||||
"X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net481": {}
|
||||
}
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\DOCGEN\\DOCGEN.csproj": {
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\DOCGEN\\DOCGEN.csproj",
|
||||
"projectName": "DOCGEN",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\DOCGEN\\DOCGEN.csproj",
|
||||
"frameworks": {
|
||||
"net481": {
|
||||
"projectReferences": {
|
||||
"X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net481": {}
|
||||
}
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj": {
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj",
|
||||
"projectName": "EDOKA_Logging",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj",
|
||||
"frameworks": {
|
||||
"net481": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net481": {}
|
||||
}
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\EDOOKAAPI.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\EDOOKAAPI.csproj",
|
||||
"projectName": "EDOOKAAPI",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\EDOOKAAPI.csproj",
|
||||
"packagesPath": "C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\",
|
||||
"outputPath": "X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\MESCIUS\\ComponentOne\\WinForms\\bin\\v8\\",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WPF\\25.1.35\\ToolboxNuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Stefan Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\ComponentOne.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Syncfusion Toolbox for WPF.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
|
||||
"C:\\Program Files (x86)\\MESCIUS\\ComponentOne\\Packages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files (x86)\\Syncfusion\\Essential Studio\\WinUI\\25.1.35\\NuGetPackages": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"E:\\Software-Projekte\\_NugetPackages": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Database\\EDOKA_Database.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\DOCGEN\\DOCGEN.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\DOCGEN\\DOCGEN.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\EDOKA_Logging\\EDOKA_Logging.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj"
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj": {
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Swashbuckle.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[6.4.0, )"
|
||||
},
|
||||
"System.Data.SqlClient": {
|
||||
"target": "Package",
|
||||
"version": "[4.8.6, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj": {
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj",
|
||||
"projectName": "Helper",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Helper\\Helper.csproj",
|
||||
"frameworks": {
|
||||
"net481": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net481": {}
|
||||
}
|
||||
},
|
||||
"X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj": {
|
||||
"restore": {
|
||||
"projectUniqueName": "X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj",
|
||||
"projectName": "Model",
|
||||
"projectPath": "X:\\docdemo\\EDOKA_2024\\Model\\Model.csproj",
|
||||
"frameworks": {
|
||||
"net481": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net481": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
25
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.g.props
Normal file
25
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.g.props
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Stefan Hutter lokal\.nuget\packages\;C:\Program Files (x86)\MESCIUS\ComponentOne\WinForms\bin\v8\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Syncfusion\Essential Studio\WPF\25.1.35\ToolboxNuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Stefan Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\MESCIUS\ComponentOne\WinForms\bin\v8\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Syncfusion\Essential Studio\WPF\25.1.35\ToolboxNuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.4.0\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.4.0\build\Swashbuckle.AspNetCore.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Stefan Hutter lokal\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.g.targets
Normal file
6
EDOOKAAPI/obj/EDOOKAAPI.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
1082
EDOOKAAPI/obj/project.assets.json
Normal file
1082
EDOOKAAPI/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
24
EDOOKAAPI/obj/project.nuget.cache
Normal file
24
EDOOKAAPI/obj/project.nuget.cache
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "Va9je2j1Tqk=",
|
||||
"success": true,
|
||||
"projectFilePath": "X:\\docdemo\\EDOKA_2024\\EDOOKAAPI\\EDOOKAAPI.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Stefan Hutter lokal\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user