Initial commit
This commit is contained in:
12
Models/BWPMModels.csproj
Normal file
12
Models/BWPMModels.csproj
Normal file
@@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
38
Models/Menu.cs
Normal file
38
Models/Menu.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Menu
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public string menutext { get; set; } = "";
|
||||
|
||||
public string menuvalue { get; set; } = "";
|
||||
|
||||
public string tooltip { get; set; } = "";
|
||||
|
||||
public string navigationurl { get; set; } = "";
|
||||
|
||||
public int? menutype { get; set; } = 0;
|
||||
|
||||
public int? parentnr { get; set; } = 0;
|
||||
|
||||
public int? sort { get; set; } = 0;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public int? mutierer { get; set; } = 0;
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
public int? mandanttype { get; set; } = 0;
|
||||
|
||||
}
|
||||
}
|
||||
44
Models/User.cs
Normal file
44
Models/User.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
|
||||
public class User
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public string username { get; set; } = "";
|
||||
|
||||
public string passwort { get; set; } = "";
|
||||
|
||||
public int? usertype { get; set; } = 0;
|
||||
|
||||
public bool? provisorisch { get; set; } = true;
|
||||
|
||||
public string email { get; set; } = "";
|
||||
|
||||
public int? firmanr { get; set; } = 0;
|
||||
|
||||
public int? lehrernr { get; set; } = 0;
|
||||
|
||||
public string verifystring { get; set; } = "";
|
||||
|
||||
public int? mutierer { get; set; } = 0;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public bool? altiv { get; set; } = true;
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
23
Models/bin/Debug/net5.0/Models.deps.json
Normal file
23
Models/bin/Debug/net5.0/Models.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"Models/1.0.0": {
|
||||
"runtime": {
|
||||
"Models.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Models/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Models/bin/Debug/net5.0/Models.dll
Normal file
BIN
Models/bin/Debug/net5.0/Models.dll
Normal file
Binary file not shown.
BIN
Models/bin/Debug/net5.0/Models.pdb
Normal file
BIN
Models/bin/Debug/net5.0/Models.pdb
Normal file
Binary file not shown.
23
Models/bin/Debug/net5.0/MyModelds.deps.json
Normal file
23
Models/bin/Debug/net5.0/MyModelds.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"MyModelds/1.0.0": {
|
||||
"runtime": {
|
||||
"MyModelds.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MyModelds/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Models/bin/Debug/net5.0/MyModelds.dll
Normal file
BIN
Models/bin/Debug/net5.0/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/bin/Debug/net5.0/MyModelds.pdb
Normal file
BIN
Models/bin/Debug/net5.0/MyModelds.pdb
Normal file
Binary file not shown.
BIN
Models/bin/Debug/net5.0/ref/Models.dll
Normal file
BIN
Models/bin/Debug/net5.0/ref/Models.dll
Normal file
Binary file not shown.
BIN
Models/bin/Debug/net5.0/ref/MyModelds.dll
Normal file
BIN
Models/bin/Debug/net5.0/ref/MyModelds.dll
Normal file
Binary file not shown.
1604
Models/bin/Debug/netcoreapp3.1/BWPMModels.deps.json
Normal file
1604
Models/bin/Debug/netcoreapp3.1/BWPMModels.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Models/bin/Debug/netcoreapp3.1/BWPMModels.dll
Normal file
BIN
Models/bin/Debug/netcoreapp3.1/BWPMModels.dll
Normal file
Binary file not shown.
BIN
Models/bin/Debug/netcoreapp3.1/BWPMModels.pdb
Normal file
BIN
Models/bin/Debug/netcoreapp3.1/BWPMModels.pdb
Normal file
Binary file not shown.
164
Models/bin/Debug/netcoreapp3.1/MyModels.deps.json
Normal file
164
Models/bin/Debug/netcoreapp3.1/MyModels.deps.json
Normal file
@@ -0,0 +1,164 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"MyModels/1.0.0": {
|
||||
"dependencies": {
|
||||
"System.Data.SqlClient": "4.8.2"
|
||||
},
|
||||
"runtime": {
|
||||
"MyModels.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/3.1.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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.SqlClient/4.8.2": {
|
||||
"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.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": {}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MyModels/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"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.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"
|
||||
},
|
||||
"System.Data.SqlClient/4.8.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
|
||||
"path": "system.data.sqlclient/4.8.2",
|
||||
"hashPath": "system.data.sqlclient.4.8.2.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"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Models/bin/Debug/netcoreapp3.1/MyModels.dll
Normal file
BIN
Models/bin/Debug/netcoreapp3.1/MyModels.dll
Normal file
Binary file not shown.
BIN
Models/bin/Debug/netcoreapp3.1/MyModels.pdb
Normal file
BIN
Models/bin/Debug/netcoreapp3.1/MyModels.pdb
Normal file
Binary file not shown.
23
Models/bin/Release/net5.0/MyModelds.deps.json
Normal file
23
Models/bin/Release/net5.0/MyModelds.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"MyModelds/1.0.0": {
|
||||
"runtime": {
|
||||
"MyModelds.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MyModelds/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Models/bin/Release/net5.0/MyModelds.dll
Normal file
BIN
Models/bin/Release/net5.0/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/bin/Release/net5.0/MyModelds.pdb
Normal file
BIN
Models/bin/Release/net5.0/MyModelds.pdb
Normal file
Binary file not shown.
BIN
Models/bin/Release/net5.0/ref/MyModelds.dll
Normal file
BIN
Models/bin/Release/net5.0/ref/MyModelds.dll
Normal file
Binary file not shown.
164
Models/bin/Release/netcoreapp3.1/MyModelds.deps.json
Normal file
164
Models/bin/Release/netcoreapp3.1/MyModelds.deps.json
Normal file
@@ -0,0 +1,164 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"MyModelds/1.0.0": {
|
||||
"dependencies": {
|
||||
"System.Data.SqlClient": "4.8.2"
|
||||
},
|
||||
"runtime": {
|
||||
"MyModelds.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/3.1.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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.SqlClient/4.8.2": {
|
||||
"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.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.6.1.2",
|
||||
"fileVersion": "4.700.20.37001"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": {}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MyModelds/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"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.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"
|
||||
},
|
||||
"System.Data.SqlClient/4.8.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
|
||||
"path": "system.data.sqlclient/4.8.2",
|
||||
"hashPath": "system.data.sqlclient.4.8.2.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"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Models/bin/Release/netcoreapp3.1/MyModelds.dll
Normal file
BIN
Models/bin/Release/netcoreapp3.1/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/bin/Release/netcoreapp3.1/MyModelds.pdb
Normal file
BIN
Models/bin/Release/netcoreapp3.1/MyModelds.pdb
Normal file
Binary file not shown.
77
Models/obj/BWPMModels.csproj.nuget.dgspec.json
Normal file
77
Models/obj/BWPMModels.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\BWPMModels.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\BWPMModels.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\BWPMModels.csproj",
|
||||
"projectName": "BWPMModels",
|
||||
"projectPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\BWPMModels.csproj",
|
||||
"packagesPath": "C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"dependencies": {
|
||||
"Microsoft.AspNet.WebApi.Client": {
|
||||
"target": "Package",
|
||||
"version": "[5.2.7, )"
|
||||
},
|
||||
"System.Data.SqlClient": {
|
||||
"target": "Package",
|
||||
"version": "[4.8.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
22
Models/obj/BWPMModels.csproj.nuget.g.props
Normal file
22
Models/obj/BWPMModels.csproj.nuget.g.props
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">C:\Users\Steafn Hutter lokal\.nuget\packages\newtonsoft.json\10.0.1</PkgNewtonsoft_Json>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
Models/obj/BWPMModels.csproj.nuget.g.targets
Normal file
6
Models/obj/BWPMModels.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">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
23
Models/obj/Debug/net5.0/Models.AssemblyInfo.cs
Normal file
23
Models/obj/Debug/net5.0/Models.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("Models")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Models")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Models")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
1
Models/obj/Debug/net5.0/Models.AssemblyInfoInputs.cache
Normal file
1
Models/obj/Debug/net5.0/Models.AssemblyInfoInputs.cache
Normal file
@@ -0,0 +1 @@
|
||||
9f132d110b5137cc2755241ac9605972968ab385
|
||||
@@ -0,0 +1,8 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.PublishSingleFile =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
||||
BIN
Models/obj/Debug/net5.0/Models.assets.cache
Normal file
BIN
Models/obj/Debug/net5.0/Models.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
6a0838d70b8ae8e2e291ede5e59b4cf09400a4ee
|
||||
12
Models/obj/Debug/net5.0/Models.csproj.FileListAbsolute.txt
Normal file
12
Models/obj/Debug/net5.0/Models.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\Models.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\Models.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\ref\Models.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\Models.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\ref\Models.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\Models.pdb
|
||||
BIN
Models/obj/Debug/net5.0/Models.csprojAssemblyReference.cache
Normal file
BIN
Models/obj/Debug/net5.0/Models.csprojAssemblyReference.cache
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/Models.dll
Normal file
BIN
Models/obj/Debug/net5.0/Models.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/Models.pdb
Normal file
BIN
Models/obj/Debug/net5.0/Models.pdb
Normal file
Binary file not shown.
23
Models/obj/Debug/net5.0/MyModelds.AssemblyInfo.cs
Normal file
23
Models/obj/Debug/net5.0/MyModelds.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("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
7daa80024d0a1b9d93c1e65b90e419b1f2a9ada8
|
||||
@@ -0,0 +1,8 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.PublishSingleFile =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
||||
BIN
Models/obj/Debug/net5.0/MyModelds.assets.cache
Normal file
BIN
Models/obj/Debug/net5.0/MyModelds.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
8b96fb17e44669d4dbcb024b7a781aa604d72c08
|
||||
@@ -0,0 +1,24 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\MyModelds.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Debug\net5.0\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Debug\net5.0\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\net5.0\MyModelds.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\net5.0\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\net5.0\MyModelds.pdb
|
||||
BIN
Models/obj/Debug/net5.0/MyModelds.csprojAssemblyReference.cache
Normal file
BIN
Models/obj/Debug/net5.0/MyModelds.csprojAssemblyReference.cache
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/MyModelds.dll
Normal file
BIN
Models/obj/Debug/net5.0/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/MyModelds.pdb
Normal file
BIN
Models/obj/Debug/net5.0/MyModelds.pdb
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/ref/Models.dll
Normal file
BIN
Models/obj/Debug/net5.0/ref/Models.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/net5.0/ref/MyModelds.dll
Normal file
BIN
Models/obj/Debug/net5.0/ref/MyModelds.dll
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
||||
23
Models/obj/Debug/netcoreapp3.1/BWPMModels.AssemblyInfo.cs
Normal file
23
Models/obj/Debug/netcoreapp3.1/BWPMModels.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("BWPMModels")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("BWPMModels")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BWPMModels")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
f475e1ca128ae9aab7b3dd7529dcaa2f1d9dab66
|
||||
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.assets.cache
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
1f01e9243f015a9d18dfcc6e9896b40820e52a3f
|
||||
@@ -0,0 +1,18 @@
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\BWPMModels.deps.json
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\BWPMModels.dll
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\BWPMModels.pdb
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.AssemblyInfo.cs
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.dll
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\BWPMModels.pdb
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\bin\Debug\netcoreapp3.1\BWPMModels.deps.json
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\bin\Debug\netcoreapp3.1\BWPMModels.dll
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\bin\Debug\netcoreapp3.1\BWPMModels.pdb
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.AssemblyInfo.cs
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.dll
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.pdb
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.csprojAssemblyReference.cache
|
||||
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.dll
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.pdb
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/BWPMModels.pdb
Normal file
Binary file not shown.
23
Models/obj/Debug/netcoreapp3.1/MyModelds.AssemblyInfo.cs
Normal file
23
Models/obj/Debug/netcoreapp3.1/MyModelds.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("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
7daa80024d0a1b9d93c1e65b90e419b1f2a9ada8
|
||||
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.assets.cache
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
9ee3811eac68f244ec9d70ab6061e6b6050cdfd6
|
||||
@@ -0,0 +1,8 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModelds.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModelds.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModelds.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModelds.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModelds.pdb
|
||||
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.dll
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.pdb
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModelds.pdb
Normal file
Binary file not shown.
23
Models/obj/Debug/netcoreapp3.1/MyModels.AssemblyInfo.cs
Normal file
23
Models/obj/Debug/netcoreapp3.1/MyModels.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("MyModels")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyModels")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyModels")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
58a984ac240bd256003cf6405ea0ab73c2b052d2
|
||||
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.assets.cache
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
e5dda009972e27084f2129fbd4a91b09bf068e01
|
||||
@@ -0,0 +1,8 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModels.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModels.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Debug\netcoreapp3.1\MyModels.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModels.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModels.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModels.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModels.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Debug\netcoreapp3.1\MyModels.pdb
|
||||
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.dll
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.dll
Normal file
Binary file not shown.
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.pdb
Normal file
BIN
Models/obj/Debug/netcoreapp3.1/MyModels.pdb
Normal file
Binary file not shown.
67
Models/obj/Models.csproj.nuget.dgspec.json
Normal file
67
Models/obj/Models.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI\\Models\\Models.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI\\Models\\Models.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI\\Models\\Models.csproj",
|
||||
"projectName": "Models",
|
||||
"projectPath": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI\\Models\\Models.csproj",
|
||||
"packagesPath": "C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
Models/obj/Models.csproj.nuget.g.props
Normal file
19
Models/obj/Models.csproj.nuget.g.props
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
Models/obj/Models.csproj.nuget.g.targets
Normal file
6
Models/obj/Models.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">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
73
Models/obj/MyModelds.csproj.nuget.dgspec.json
Normal file
73
Models/obj/MyModelds.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI1\\Models\\MyModelds.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI1\\Models\\MyModelds.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI1\\Models\\MyModelds.csproj",
|
||||
"projectName": "MyModelds",
|
||||
"projectPath": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI1\\Models\\MyModelds.csproj",
|
||||
"packagesPath": "C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Software-Projekte\\_Demos\\__MVCDemos\\CoreWebAPI1\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"dependencies": {
|
||||
"System.Data.SqlClient": {
|
||||
"target": "Package",
|
||||
"version": "[4.8.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
Models/obj/MyModelds.csproj.nuget.g.props
Normal file
19
Models/obj/MyModelds.csproj.nuget.g.props
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
Models/obj/MyModelds.csproj.nuget.g.targets
Normal file
6
Models/obj/MyModelds.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">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
73
Models/obj/MyModels.csproj.nuget.dgspec.json
Normal file
73
Models/obj/MyModels.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Software-Projekte\\Lehrlingsparcours\\Core\\CoreWebAPI1\\Models\\MyModels.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Software-Projekte\\Lehrlingsparcours\\Core\\CoreWebAPI1\\Models\\MyModels.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\CoreWebAPI1\\Models\\MyModels.csproj",
|
||||
"projectName": "MyModels",
|
||||
"projectPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\CoreWebAPI1\\Models\\MyModels.csproj",
|
||||
"packagesPath": "C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\CoreWebAPI1\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"dependencies": {
|
||||
"System.Data.SqlClient": {
|
||||
"target": "Package",
|
||||
"version": "[4.8.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
Models/obj/MyModels.csproj.nuget.g.props
Normal file
19
Models/obj/MyModels.csproj.nuget.g.props
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
Models/obj/MyModels.csproj.nuget.g.targets
Normal file
6
Models/obj/MyModels.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">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
23
Models/obj/Release/net5.0/MyModelds.AssemblyInfo.cs
Normal file
23
Models/obj/Release/net5.0/MyModelds.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("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
8c52165faccc306c465c17068cb13cb6cc4f1f13
|
||||
@@ -0,0 +1,8 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.PublishSingleFile =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
||||
BIN
Models/obj/Release/net5.0/MyModelds.assets.cache
Normal file
BIN
Models/obj/Release/net5.0/MyModelds.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
bbb03a4caab697a2f02638b561d20c667e564022
|
||||
@@ -0,0 +1,12 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Release\net5.0\MyModelds.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Release\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Release\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\bin\Release\net5.0\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\ref\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI\Models\obj\Release\net5.0\MyModelds.pdb
|
||||
Binary file not shown.
BIN
Models/obj/Release/net5.0/MyModelds.dll
Normal file
BIN
Models/obj/Release/net5.0/MyModelds.dll
Normal file
Binary file not shown.
BIN
Models/obj/Release/net5.0/MyModelds.pdb
Normal file
BIN
Models/obj/Release/net5.0/MyModelds.pdb
Normal file
Binary file not shown.
BIN
Models/obj/Release/net5.0/ref/MyModelds.dll
Normal file
BIN
Models/obj/Release/net5.0/ref/MyModelds.dll
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
||||
23
Models/obj/Release/netcoreapp3.1/MyModelds.AssemblyInfo.cs
Normal file
23
Models/obj/Release/netcoreapp3.1/MyModelds.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("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyModelds")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
8c52165faccc306c465c17068cb13cb6cc4f1f13
|
||||
BIN
Models/obj/Release/netcoreapp3.1/MyModelds.assets.cache
Normal file
BIN
Models/obj/Release/netcoreapp3.1/MyModelds.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
a9f3db659847a91ea9f66bab5aceefdc6706b7e9
|
||||
@@ -0,0 +1,9 @@
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Release\netcoreapp3.1\MyModelds.deps.json
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Release\netcoreapp3.1\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\bin\Release\netcoreapp3.1\MyModelds.pdb
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.csprojAssemblyReference.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.AssemblyInfoInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.AssemblyInfo.cs
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.dll
|
||||
E:\Software-Projekte\_Demos\__MVCDemos\CoreWebAPI1\Models\obj\Release\netcoreapp3.1\MyModelds.pdb
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user