Update 07082021

This commit is contained in:
shu
2021-08-07 09:44:37 +02:00
parent 1ff218a129
commit 4d443fdfd4
5663 changed files with 6581858 additions and 1321 deletions
+114
View File
@@ -0,0 +1,114 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CoreWebAPI1.Models;
using BWPMModels;
using System.Data;
using SecuringWebApiUsingApiKey.Attributes;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace CoreWebAPI1.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class AnredeController : ControllerBase
{
// GET: api/<AnredeController>
[HttpGet]
public List<Anrede> Get()
{
dbhelper dbh = new dbhelper();
//dbh.Get_Tabledata("Select * from [Anrede]", false, true);
List<BWPMModels.Anrede> Details = new List<BWPMModels.Anrede>();
return dbh.ConvertDataTable<BWPMModels.Anrede>(dbh.Get_Tabledata("Select * from [Anrede]", false, true));
}
[HttpGet]
[Route("usersql/{sql}")]
public List<Anrede> GetLast(string sql)
{
dbhelper dbh = new dbhelper();
List<BWPMModels.Anrede> Details = new List<BWPMModels.Anrede>();
return dbh.ConvertDataTable<BWPMModels.Anrede>(dbh.Get_Tabledata(sql, false, true));
}
// GET api/<AnredeController>/5
[HttpGet("{id}")]
public List<Anrede> Get(int id)
{
dbhelper dbh = new dbhelper();
List<Anrede> Details = new List<Anrede>();
return dbh.ConvertDataTable<Anrede>(dbh.Get_Tabledata("Select * from [Anrede] where id=" + id.ToString(), false, true));
}
// POST api/<AnredeController>
[HttpPost]
public void Post([FromBody] Anrede Anrede)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Anrede] where id=-1", false, true);
DataRow dr = dbh.dsdaten.Tables[0].NewRow();
Anrede.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Anrede, null);
}
else
{
dr[f.Name] = f.GetValue(Anrede, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.dsdaten.Tables[0].Rows.Add(dr);
dbh.Update_Tabeldata();
}
// PUT api/<AnredeController>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody] Anrede Anrede)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Anrede] where id=" + id.ToString(), false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
Anrede.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Anrede, null);
}
else
{
dr[f.Name] = f.GetValue(Anrede, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.Update_Tabeldata();
}
// DELETE api/<AnredeController>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Anrede] where id=" + id, false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
dr["Aktiv"] = false;
dr["mutiert_am"] = DateTime.Now;
dbh.Update_Tabeldata();
}
}
}
@@ -0,0 +1,123 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CoreWebAPI1.Models;
using BWPMModels;
using System.Data;
using SecuringWebApiUsingApiKey.Attributes;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace CoreWebAPI1.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class AnsprechpartnerController : ControllerBase
{
// GET: api/<AnsprechpartnerController>
[HttpGet]
public List<Ansprechpartner> Get()
{
dbhelper dbh = new dbhelper();
//dbh.Get_Tabledata("Select * from [Ansprechpartner]", false, true);
List<BWPMModels.Ansprechpartner> Details = new List<BWPMModels.Ansprechpartner>();
return dbh.ConvertDataTable<BWPMModels.Ansprechpartner>(dbh.Get_Tabledata("Select * from [Ansprechpartner]", false, true));
}
[HttpGet]
[Route("usersql/{sql}")]
public List<Ansprechpartner> GetLast(string sql)
{
dbhelper dbh = new dbhelper();
List<BWPMModels.Ansprechpartner> Details = new List<BWPMModels.Ansprechpartner>();
return dbh.ConvertDataTable<BWPMModels.Ansprechpartner>(dbh.Get_Tabledata(sql, false, true));
}
// GET api/<AnsprechpartnerController>/5
[HttpGet("{id}")]
public List<Ansprechpartner> Get(int id)
{
dbhelper dbh = new dbhelper();
List<Ansprechpartner> Details = new List<Ansprechpartner>();
return dbh.ConvertDataTable<Ansprechpartner>(dbh.Get_Tabledata("Select * from [Ansprechpartner] where id=" + id.ToString(), false, true));
}
// GET api/<AnsprechpartnerController>/5
[HttpGet]
[Route("GetByFirmaID/{firmaid}")]
public List<Ansprechpartner> GetByFirmaID(int firmaid)
{
dbhelper dbh = new dbhelper();
List<Ansprechpartner> Details = new List<Ansprechpartner>();
return dbh.ConvertDataTable<Ansprechpartner>(dbh.Get_Tabledata("Select * from [Ansprechpartner] where firmaid=" + firmaid.ToString(), false, true));
}
// POST api/<AnsprechpartnerController>
[HttpPost]
public void Post([FromBody] Ansprechpartner Ansprechpartner)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Ansprechpartner] where id=-1", false, true);
DataRow dr = dbh.dsdaten.Tables[0].NewRow();
Ansprechpartner.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Ansprechpartner, null);
}
else
{
dr[f.Name] = f.GetValue(Ansprechpartner, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.dsdaten.Tables[0].Rows.Add(dr);
dbh.Update_Tabeldata();
}
// PUT api/<AnsprechpartnerController>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody] Ansprechpartner Ansprechpartner)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Ansprechpartner] where id=" + id.ToString(), false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
Ansprechpartner.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Ansprechpartner, null);
}
else
{
dr[f.Name] = f.GetValue(Ansprechpartner, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.Update_Tabeldata();
}
// DELETE api/<AnsprechpartnerController>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Ansprechpartner] where id=" + id, false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
dr["Aktiv"] = false;
dr["mutiert_am"] = DateTime.Now;
dbh.Update_Tabeldata();
}
}
}
+122
View File
@@ -0,0 +1,122 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CoreWebAPI1.Models;
using BWPMModels;
using System.Data;
using SecuringWebApiUsingApiKey.Attributes;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace CoreWebAPI1.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class FirmaController : ControllerBase
{
// GET: api/<FirmaController>
[HttpGet]
public List<Firma> Get()
{
dbhelper dbh = new dbhelper();
//dbh.Get_Tabledata("Select * from [Firma]", false, true);
List<BWPMModels.Firma> Details = new List<BWPMModels.Firma>();
return dbh.ConvertDataTable<BWPMModels.Firma>(dbh.Get_Tabledata("Select * from [Firma]", false, true));
}
[HttpGet]
[Route("usersql/{sql}")]
public List<Firma> GetLast(string sql)
{
dbhelper dbh = new dbhelper();
List<BWPMModels.Firma> Details = new List<BWPMModels.Firma>();
return dbh.ConvertDataTable<BWPMModels.Firma>(dbh.Get_Tabledata(sql, false, true));
}
// GET api/<FirmaController>/5
[HttpGet("{id}")]
public List<Firma> Get(int id)
{
dbhelper dbh = new dbhelper();
List<Firma> Details = new List<Firma>();
return dbh.ConvertDataTable<Firma>(dbh.Get_Tabledata("Select * from [Firma] where id=" + id.ToString(), false, true));
}
[HttpGet]
[Route("GetByUserID/{UserID}")]
public List<Firma> Get(string UserID)
{
dbhelper dbh = new dbhelper();
List<Firma> Details = new List<Firma>();
return dbh.ConvertDataTable<Firma>(dbh.Get_Tabledata("Select * from [Firma] where userid='" + UserID+"'", false, true));
}
// POST api/<FirmaController>
[HttpPost]
public void Post([FromBody] Firma Firma)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Firma] where id=-1", false, true);
DataRow dr = dbh.dsdaten.Tables[0].NewRow();
Firma.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Firma, null);
}
else
{
dr[f.Name] = f.GetValue(Firma, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.dsdaten.Tables[0].Rows.Add(dr);
dbh.Update_Tabeldata();
}
// PUT api/<FirmaController>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody] Firma Firma)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Firma] where id=" + id.ToString(), false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
Firma.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Firma, null);
}
else
{
dr[f.Name] = f.GetValue(Firma, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.Update_Tabeldata();
}
// DELETE api/<FirmaController>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Firma] where id=" + id, false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
dr["Aktiv"] = false;
dr["mutiert_am"] = DateTime.Now;
dbh.Update_Tabeldata();
}
}
}
@@ -0,0 +1,39 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CoreWebAPI1.Models;
using BWPMModels;
using System.Data;
using SecuringWebApiUsingApiKey.Attributes;
namespace CoreWebAPI1.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class MyScriptController : Controller
{
// GET: api/<BerufController>
[HttpGet]
public List<MyScriptGenerator> Get()
{
dbhelper dbh = new dbhelper();
//dbh.Get_Tabledata("Select * from [Beruf]", false, true);
List<BWPMModels.MyScriptGenerator> Details = new List<BWPMModels.MyScriptGenerator>();
return dbh.ConvertDataTable<BWPMModels.MyScriptGenerator>(dbh.Get_Tabledata("exec dbo.generate_c_code 1, 'Optionen'", false, true));
}
// GET api/<BerufController>/5
[HttpGet("{fnkt},{tablename}")]
public List<MyScriptGenerator> Get(int fnkt, string tablename)
{
dbhelper dbh = new dbhelper();
List<MyScriptGenerator> Details = new List<MyScriptGenerator>();
return dbh.ConvertDataTable<MyScriptGenerator>(dbh.Get_Tabledata("exec dbo.generate_c_code "+fnkt.ToString()+", '"+tablename+"'", false, true));
}
}
}
@@ -0,0 +1,114 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CoreWebAPI1.Models;
using BWPMModels;
using System.Data;
using SecuringWebApiUsingApiKey.Attributes;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace CoreWebAPI1.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class OptionenController : ControllerBase
{
// GET: api/<OptionenController>
[HttpGet]
public List<Optionen> Get()
{
dbhelper dbh = new dbhelper();
//dbh.Get_Tabledata("Select * from [Optionen]", false, true);
List<BWPMModels.Optionen> Details = new List<BWPMModels.Optionen>();
return dbh.ConvertDataTable<BWPMModels.Optionen>(dbh.Get_Tabledata("Select * from [Optionen]", false, true));
}
[HttpGet]
[Route("usersql/{sql}")]
public List<Optionen> GetLast(string sql)
{
dbhelper dbh = new dbhelper();
List<BWPMModels.Optionen> Details = new List<BWPMModels.Optionen>();
return dbh.ConvertDataTable<BWPMModels.Optionen>(dbh.Get_Tabledata(sql, false, true));
}
// GET api/<OptionenController>/5
[HttpGet("{id}")]
public List<Optionen> Get(int id)
{
dbhelper dbh = new dbhelper();
List<Optionen> Details = new List<Optionen>();
return dbh.ConvertDataTable<Optionen>(dbh.Get_Tabledata("Select * from [Optionen] where id=" + id.ToString(), false, true));
}
// POST api/<OptionenController>
[HttpPost]
public void Post([FromBody] Optionen Optionen)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Optionen] where id=-1", false, true);
DataRow dr = dbh.dsdaten.Tables[0].NewRow();
Optionen.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Optionen, null);
}
else
{
dr[f.Name] = f.GetValue(Optionen, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.dsdaten.Tables[0].Rows.Add(dr);
dbh.Update_Tabeldata();
}
// PUT api/<OptionenController>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody] Optionen Optionen)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Optionen] where id=" + id.ToString(), false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
Optionen.GetType().GetProperties().ToList().ForEach(f =>
{
try
{
if (f.PropertyType == typeof(DateTime))
{
dr[f.Name] = (DateTime)f.GetValue(Optionen, null);
}
else
{
dr[f.Name] = f.GetValue(Optionen, null);
}
}
catch (Exception ex) { string s = ex.Message; }
});
dbh.Update_Tabeldata();
}
// DELETE api/<OptionenController>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabeldata_for_Update("Select top 1 * from [Optionen] where id=" + id, false, true);
DataRow dr = dbh.dsdaten.Tables[0].Rows[0];
dr["Aktiv"] = false;
dr["mutiert_am"] = DateTime.Now;
dbh.Update_Tabeldata();
}
}
}
@@ -5,6 +5,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_PublishTargetUrl>H:\Webs\InetPub\BWPM</_PublishTargetUrl>
<History>True|2021-07-15T08:02:46.5075536Z;True|2021-07-15T09:54:42.4313807+02:00;True|2021-07-15T09:48:50.1561938+02:00;True|2021-07-14T20:47:42.7856540+02:00;True|2021-07-14T20:45:03.0937538+02:00;True|2021-07-14T20:38:34.0718490+02:00;True|2021-07-14T18:52:29.6662605+02:00;True|2021-07-14T10:56:34.9093132+02:00;True|2021-07-14T09:29:50.0653470+02:00;True|2021-07-13T13:43:05.9842311+02:00;True|2021-07-13T12:30:54.2622483+02:00;True|2021-07-13T12:27:47.2481823+02:00;True|2021-07-13T12:19:03.4272226+02:00;True|2021-07-13T12:13:34.7223726+02:00;True|2021-07-12T21:11:16.0180003+02:00;True|2021-07-12T21:05:49.0781787+02:00;True|2021-07-12T19:22:32.4282966+02:00;True|2021-07-12T19:19:23.5362381+02:00;True|2021-07-12T19:05:39.2804305+02:00;True|2021-07-12T18:46:37.6632551+02:00;True|2021-07-12T18:45:32.9867440+02:00;True|2021-07-12T07:49:59.8556674+02:00;True|2021-07-12T07:35:49.6125935+02:00;True|2021-07-11T12:32:18.4724972+02:00;True|2021-07-10T15:41:33.7727018+02:00;True|2021-06-09T12:16:26.0669471+02:00;True|2021-06-09T09:49:10.9860847+02:00;True|2021-06-09T09:35:27.9971000+02:00;True|2021-05-24T21:16:30.0570511+02:00;True|2021-05-24T12:30:18.3830543+02:00;False|2021-05-24T12:30:02.4988408+02:00;False|2021-05-24T12:29:46.5808045+02:00;True|2021-05-24T12:15:02.3821495+02:00;False|2021-05-24T12:14:36.2298299+02:00;False|2021-05-24T12:14:09.0073832+02:00;True|2021-05-24T12:11:49.7114414+02:00;True|2021-05-24T08:55:11.0472731+02:00;True|2021-05-24T07:27:45.3441080+02:00;True|2021-05-23T14:06:51.7467311+02:00;True|2021-05-23T13:44:58.0256285+02:00;True|2021-05-23T13:42:59.4769182+02:00;True|2021-05-23T13:37:33.2415403+02:00;True|2021-05-23T13:09:07.9165979+02:00;True|2021-05-23T13:06:51.8856235+02:00;True|2021-05-23T12:51:13.6004626+02:00;False|2021-05-23T12:49:59.2826393+02:00;True|2021-05-22T10:34:25.6930178+02:00;True|2021-05-22T10:31:07.5263108+02:00;True|2021-05-22T10:30:40.9584565+02:00;True|2021-05-22T10:29:20.5097265+02:00;True|2021-05-22T10:12:26.2605372+02:00;False|2021-05-22T10:12:05.6206782+02:00;False|2021-05-22T10:11:32.2856940+02:00;False|2021-05-22T10:11:15.9019474+02:00;False|2021-05-22T10:11:07.4522316+02:00;False|2021-05-22T10:10:52.5788400+02:00;True|2021-05-22T10:07:07.5576189+02:00;True|2021-05-22T10:02:18.3750197+02:00;True|2021-05-22T09:16:18.9786309+02:00;True|2021-05-22T08:39:24.9587310+02:00;True|2021-05-22T07:44:41.8856953+02:00;True|2021-05-21T21:30:08.5852118+02:00;</History>
<History>True|2021-07-16T13:05:35.2908759Z;True|2021-07-16T12:49:01.7059170+02:00;True|2021-07-16T10:01:45.3251317+02:00;True|2021-07-15T20:18:14.4295222+02:00;True|2021-07-15T12:55:48.2528132+02:00;True|2021-07-15T11:46:28.0009786+02:00;True|2021-07-15T11:43:47.9430498+02:00;True|2021-07-15T10:02:46.5075536+02:00;True|2021-07-15T09:54:42.4313807+02:00;True|2021-07-15T09:48:50.1561938+02:00;True|2021-07-14T20:47:42.7856540+02:00;True|2021-07-14T20:45:03.0937538+02:00;True|2021-07-14T20:38:34.0718490+02:00;True|2021-07-14T18:52:29.6662605+02:00;True|2021-07-14T10:56:34.9093132+02:00;True|2021-07-14T09:29:50.0653470+02:00;True|2021-07-13T13:43:05.9842311+02:00;True|2021-07-13T12:30:54.2622483+02:00;True|2021-07-13T12:27:47.2481823+02:00;True|2021-07-13T12:19:03.4272226+02:00;True|2021-07-13T12:13:34.7223726+02:00;True|2021-07-12T21:11:16.0180003+02:00;True|2021-07-12T21:05:49.0781787+02:00;True|2021-07-12T19:22:32.4282966+02:00;True|2021-07-12T19:19:23.5362381+02:00;True|2021-07-12T19:05:39.2804305+02:00;True|2021-07-12T18:46:37.6632551+02:00;True|2021-07-12T18:45:32.9867440+02:00;True|2021-07-12T07:49:59.8556674+02:00;True|2021-07-12T07:35:49.6125935+02:00;True|2021-07-11T12:32:18.4724972+02:00;True|2021-07-10T15:41:33.7727018+02:00;True|2021-06-09T12:16:26.0669471+02:00;True|2021-06-09T09:49:10.9860847+02:00;True|2021-06-09T09:35:27.9971000+02:00;True|2021-05-24T21:16:30.0570511+02:00;True|2021-05-24T12:30:18.3830543+02:00;False|2021-05-24T12:30:02.4988408+02:00;False|2021-05-24T12:29:46.5808045+02:00;True|2021-05-24T12:15:02.3821495+02:00;False|2021-05-24T12:14:36.2298299+02:00;False|2021-05-24T12:14:09.0073832+02:00;True|2021-05-24T12:11:49.7114414+02:00;True|2021-05-24T08:55:11.0472731+02:00;True|2021-05-24T07:27:45.3441080+02:00;True|2021-05-23T14:06:51.7467311+02:00;True|2021-05-23T13:44:58.0256285+02:00;True|2021-05-23T13:42:59.4769182+02:00;True|2021-05-23T13:37:33.2415403+02:00;True|2021-05-23T13:09:07.9165979+02:00;True|2021-05-23T13:06:51.8856235+02:00;True|2021-05-23T12:51:13.6004626+02:00;False|2021-05-23T12:49:59.2826393+02:00;True|2021-05-22T10:34:25.6930178+02:00;True|2021-05-22T10:31:07.5263108+02:00;True|2021-05-22T10:30:40.9584565+02:00;True|2021-05-22T10:29:20.5097265+02:00;True|2021-05-22T10:12:26.2605372+02:00;False|2021-05-22T10:12:05.6206782+02:00;False|2021-05-22T10:11:32.2856940+02:00;False|2021-05-22T10:11:15.9019474+02:00;False|2021-05-22T10:11:07.4522316+02:00;False|2021-05-22T10:10:52.5788400+02:00;True|2021-05-22T10:07:07.5576189+02:00;True|2021-05-22T10:02:18.3750197+02:00;True|2021-05-22T09:16:18.9786309+02:00;True|2021-05-22T08:39:24.9587310+02:00;True|2021-05-22T07:44:41.8856953+02:00;True|2021-05-21T21:30:08.5852118+02:00;</History>
</PropertyGroup>
</Project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3,6 +3,7 @@
"additionalProbingPaths": [
"C:\\Users\\Steafn Hutter lokal\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Steafn Hutter lokal\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
]
}
@@ -14,10 +14,12 @@
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\CoreWebAPI1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
],
"configFilePaths": [
"C:\\Users\\Steafn Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.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\\Xamarin.Offline.config"
],
@@ -25,6 +27,7 @@
"netcoreapp3.1"
],
"sources": {
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://nuget.grapecity.com/nuget": {},
"https://api.nuget.org/v3/index.json": {}
@@ -92,7 +95,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
},
@@ -106,10 +109,12 @@
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
],
"configFilePaths": [
"C:\\Users\\Steafn Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.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\\Xamarin.Offline.config"
],
@@ -117,6 +122,7 @@
"netcoreapp3.1"
],
"sources": {
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://nuget.grapecity.com/nuget": {},
"https://api.nuget.org/v3/index.json": {}
@@ -161,7 +167,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
}
@@ -5,12 +5,13 @@
<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\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
</ItemGroup>
<PropertyGroup>
@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = BWPMService
build_property.ProjectDir = E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\
@@ -1 +1 @@
012dd28981aedc815ea8c782289e60bad096277d
925508b782638fe96c7ff3a861d8c8b0bbdbe19b
@@ -36,12 +36,6 @@ E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\CoreWebAPI1\obj\Debug\ne
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.dll
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.pdb
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.genruntimeconfig.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.csproj.AssemblyReference.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.AssemblyInfoInputs.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.AssemblyInfo.cs
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.csproj.CoreCompileInputs.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.MvcApplicationPartsAssemblyInfo.cs
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.MvcApplicationPartsAssemblyInfo.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\web.config
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\appsettings.Development.json
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\appsettings.json
@@ -66,6 +60,12 @@ E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreap
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\BWPMModels.dll
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\bin\Debug\netcoreapp3.1\BWPMModels.pdb
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.csproj.AssemblyReference.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.AssemblyInfoInputs.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.AssemblyInfo.cs
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.csproj.CoreCompileInputs.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.MvcApplicationPartsAssemblyInfo.cs
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\BWPMService.MvcApplicationPartsAssemblyInfo.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\staticwebassets\BWPMService.StaticWebAssets.Manifest.cache
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\staticwebassets\BWPMService.StaticWebAssets.xml
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\CoreWebAPI1\obj\Debug\netcoreapp3.1\scopedcss\bundle\BWPMService.styles.css
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
+5 -1
View File
@@ -5911,6 +5911,7 @@
},
"packageFolders": {
"C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
},
"project": {
@@ -5923,10 +5924,12 @@
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\CoreWebAPI1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
],
"configFilePaths": [
"C:\\Users\\Steafn Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.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\\Xamarin.Offline.config"
],
@@ -5934,6 +5937,7 @@
"netcoreapp3.1"
],
"sources": {
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://nuget.grapecity.com/nuget": {},
"https://api.nuget.org/v3/index.json": {}
@@ -6001,7 +6005,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "3O/6QPAYi9/EJ+EWoZoRPJN+nh8r5QwfhjH0NizBC4n/g2wDuT5seJhC0ZoXx+e59pj/NKAGjZfnNGNPqxqgBg==",
"dgSpecHash": "GrtlUKZdJ6MmwmCTySz7WdrtbuSh9cXBvPBmCtxjV0F8eVqaKPzZ8jM97+2xo/g1pN1PCN80MIXPL2ShAZw2jA==",
"success": true,
"projectFilePath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\CoreWebAPI1\\BWPMService.csproj",
"expectedPackageFiles": [