submodules deleted
This commit is contained in:
parent
846897b2d6
commit
b194a1ccd9
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +0,0 @@
|
||||
[submodule "LaaProductionWeb/LaaPackages"]
|
||||
path = LaaProductionWeb/LaaPackages
|
||||
url = https://slm.sms-esaap.com/la_operations/laapackages.git
|
||||
@ -114,7 +114,7 @@
|
||||
|
||||
foreach (var field in fields)
|
||||
{
|
||||
wildcardResult[field] = reader.GetValue(field);
|
||||
wildcardResult[field] = reader.GetValue<String>(field);
|
||||
}
|
||||
|
||||
return wildcardResult;
|
||||
|
||||
@ -55,19 +55,19 @@
|
||||
.SetParameters(orderBy.Parameters)
|
||||
.ExecuteReader(reader => new CordonelPressureSensorItem
|
||||
{
|
||||
AuftragNr = reader.GetValue<Int32?>(),
|
||||
PosNr = reader.GetValue<Int16?>(),
|
||||
SerialNr = reader.GetValue<Int32?>(),
|
||||
CustomerSerialNr = reader.GetValue<String>(),
|
||||
IdentNr = reader.GetValue<Int32?>(),
|
||||
PcbId = reader.GetValue<Int32>(),
|
||||
TypeI = reader.GetValue<String>(),
|
||||
TypeII = reader.GetValue<String>(),
|
||||
Nennweite = reader.GetValue<Int32?>(),
|
||||
Baulaenge = reader.GetValue<Int32?>(),
|
||||
AVGPressure = reader.GetValue<Single>(),
|
||||
TestPassed = reader.GetValue<Boolean>(),
|
||||
TestDate = reader.GetValue<DateTime>(),
|
||||
AuftragNr = reader.GetValue<Int32?>(0),
|
||||
PosNr = reader.GetValue<Int16?>(1),
|
||||
SerialNr = reader.GetValue<Int32?>(2),
|
||||
CustomerSerialNr = reader.GetValue<String>(3),
|
||||
IdentNr = reader.GetValue<Int32?>(4),
|
||||
PcbId = reader.GetValue<Int32>(5),
|
||||
TypeI = reader.GetValue<String>(6),
|
||||
TypeII = reader.GetValue<String>(7),
|
||||
Nennweite = reader.GetValue<Int32?>(8),
|
||||
Baulaenge = reader.GetValue<Int32?>(9),
|
||||
AVGPressure = reader.GetValue<Single>(10),
|
||||
TestPassed = reader.GetValue<Boolean>(11),
|
||||
TestDate = reader.GetValue<DateTime>(12),
|
||||
});
|
||||
|
||||
return model;
|
||||
@ -118,25 +118,25 @@
|
||||
.SetParameters(orderBy.Parameters)
|
||||
.ExecuteReader(reader => new HeliumReportItem
|
||||
{
|
||||
FertigungNr = reader.GetValue<Int32>(),
|
||||
AuftragNr = reader.GetValue<Int32>(),
|
||||
PositionNr = reader.GetValue<Int16>(),
|
||||
SerialNr = reader.GetValue<Int32>(),
|
||||
IdentNr = reader.GetValue<Int32>(),
|
||||
HeId = reader.GetValue<Int32>(),
|
||||
HeTestId = reader.GetValue<Int32>(),
|
||||
PcbId = reader.GetValue<Int32>(),
|
||||
Nennweite = reader.GetValue<Int32?>(),
|
||||
Baulaenge = reader.GetValue<Int32?>(),
|
||||
Typ = reader.GetValue<String>(),
|
||||
Druck = reader.GetValue<Int32?>(),
|
||||
Temperatur = reader.GetValue<Int32?>(),
|
||||
HeLakeRate = reader.GetValue<String>(),
|
||||
HeTestPressure = reader.GetValue<String>(),
|
||||
IsValid = reader.GetValue<Boolean>(),
|
||||
TestDate = reader.GetValue<DateTimeOffset>(),
|
||||
Text = reader.GetValue<String>(),
|
||||
Tester = reader.GetValue<String>()
|
||||
FertigungNr = reader.GetValue<Int32>(0),
|
||||
AuftragNr = reader.GetValue<Int32>(1),
|
||||
PositionNr = reader.GetValue<Int16>(2),
|
||||
SerialNr = reader.GetValue<Int32>(3),
|
||||
IdentNr = reader.GetValue<Int32>(4),
|
||||
HeId = reader.GetValue<Int32>(5),
|
||||
HeTestId = reader.GetValue<Int32>(6),
|
||||
PcbId = reader.GetValue<Int32>(7),
|
||||
Nennweite = reader.GetValue<Int32?>(8),
|
||||
Baulaenge = reader.GetValue<Int32?>(9),
|
||||
Typ = reader.GetValue<String>(10),
|
||||
Druck = reader.GetValue<Int32?>(11),
|
||||
Temperatur = reader.GetValue<Int32?>(12),
|
||||
HeLakeRate = reader.GetValue<String>(13),
|
||||
HeTestPressure = reader.GetValue<String>(14),
|
||||
IsValid = reader.GetValue<Boolean>(15),
|
||||
TestDate = reader.GetValue<DateTimeOffset>(16),
|
||||
Text = reader.GetValue<String>(17),
|
||||
Tester = reader.GetValue<String>(18)
|
||||
});
|
||||
|
||||
return model;
|
||||
@ -212,25 +212,25 @@
|
||||
.SetParameters(orderBy.Parameters)
|
||||
.ExecuteReader(reader => new Object[]
|
||||
{
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int16>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<String>().Replace(',', ' '),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<String>().Replace(',', '.'),
|
||||
reader.GetValue<String>().Replace(',', ' '),
|
||||
reader.GetValue<Boolean>(),
|
||||
$"{reader.GetValue<DateTimeOffset>():yyyy-MM-dd}",
|
||||
reader.GetValue<String>().Replace(',', ' '),
|
||||
reader.GetValue<String>().Replace(',', ' ')
|
||||
reader.GetValue<Int32>(0),
|
||||
reader.GetValue<Int32>(1),
|
||||
reader.GetValue<Int16>(2),
|
||||
reader.GetValue<Int32>(3),
|
||||
reader.GetValue<Int32>(4),
|
||||
reader.GetValue<Int32>(5),
|
||||
reader.GetValue<Int32>(6),
|
||||
reader.GetValue<Int32>(7),
|
||||
reader.GetValue<Int32?>(8),
|
||||
reader.GetValue<Int32?>(9),
|
||||
reader.GetValue<String>(10).Replace(',', ' '),
|
||||
reader.GetValue<Int32?>(11),
|
||||
reader.GetValue<Int32?>(12),
|
||||
reader.GetValue<String>(13).Replace(',', '.'),
|
||||
reader.GetValue<String>(14).Replace(',', ' '),
|
||||
reader.GetValue<Boolean>(15),
|
||||
$"{reader.GetValue<DateTimeOffset>(16):yyyy-MM-dd}",
|
||||
reader.GetValue<String>(17).Replace(',', ' '),
|
||||
reader.GetValue<String>(18).Replace(',', ' ')
|
||||
});
|
||||
|
||||
csvItems.AddRange(items);
|
||||
@ -295,18 +295,18 @@
|
||||
.SetParameters(orderBy.Parameters)
|
||||
.ExecuteReader(reader => new KottmannReportItem
|
||||
{
|
||||
FertigungsNr = reader.GetValue<Int32?>(),
|
||||
SerialNr = reader.GetValue<Int32>(),
|
||||
PcbId = reader.GetValue<Int32>(),
|
||||
Typ = reader.GetValue<String>(),
|
||||
Nennweite = reader.GetValue<Int32?>(),
|
||||
Baulaenge = reader.GetValue<Int32?>(),
|
||||
StartDruck = reader.GetValue<Double>(),
|
||||
EndDruck = reader.GetValue<Double>(),
|
||||
DruckZeit = reader.GetValue<Int32>(),
|
||||
Dicht = reader.GetValue<Boolean>(),
|
||||
Datum = reader.GetValue<DateTime>(),
|
||||
Bemerkung = reader.GetValue<String>()
|
||||
FertigungsNr = reader.GetValue<Int32?>(0),
|
||||
SerialNr = reader.GetValue<Int32>(1),
|
||||
PcbId = reader.GetValue<Int32>(2),
|
||||
Typ = reader.GetValue<String>(3),
|
||||
Nennweite = reader.GetValue<Int32?>(4),
|
||||
Baulaenge = reader.GetValue<Int32?>(5),
|
||||
StartDruck = reader.GetValue<Double>(6),
|
||||
EndDruck = reader.GetValue<Double>(7),
|
||||
DruckZeit = reader.GetValue<Int32>(8),
|
||||
Dicht = reader.GetValue<Boolean>(9),
|
||||
Datum = reader.GetValue<DateTime>(10),
|
||||
Bemerkung = reader.GetValue<String>(11)
|
||||
});
|
||||
|
||||
return model;
|
||||
@ -368,18 +368,18 @@
|
||||
.SetParameters(orderBy.Parameters)
|
||||
.ExecuteReader(reader => new Object[]
|
||||
{
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<String>(),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<Int32?>(),
|
||||
reader.GetValue<Double>(),
|
||||
reader.GetValue<Double>(),
|
||||
reader.GetValue<Int32>(),
|
||||
reader.GetValue<Boolean>(),
|
||||
$"{reader.GetValue<DateTime>():yyyy-MM-dd}",
|
||||
reader.GetValue<String>().Replace(',', ' ')
|
||||
reader.GetValue<Int32?>(0),
|
||||
reader.GetValue<Int32>(1),
|
||||
reader.GetValue<Int32>(2),
|
||||
reader.GetValue<String>(3),
|
||||
reader.GetValue<Int32?>(4),
|
||||
reader.GetValue<Int32?>(5),
|
||||
reader.GetValue<Double>(6),
|
||||
reader.GetValue<Double>(7),
|
||||
reader.GetValue<Int32>(8),
|
||||
reader.GetValue<Boolean>(9),
|
||||
$"{reader.GetValue<DateTime>(10):yyyy-MM-dd}",
|
||||
reader.GetValue<String>(11).Replace(',', ' ')
|
||||
});
|
||||
|
||||
csvItems.AddRange(items);
|
||||
|
||||
@ -56,8 +56,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LaaPackages", "LaaPackages"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LaaPackages.SqlClient", "LaaPackages\LaaPackages.SqlClient\LaaPackages.SqlClient.csproj", "{F90B940C-9A83-496D-AAE0-11CD02CE0A22}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LaaPackages.HttpClient", "LaaPackages\LaaPackages.HttpClient\LaaPackages.HttpClient.csproj", "{356AD085-26AD-447E-8CC7-31E5A8B39A4D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -120,10 +118,6 @@ Global
|
||||
{F90B940C-9A83-496D-AAE0-11CD02CE0A22}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F90B940C-9A83-496D-AAE0-11CD02CE0A22}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F90B940C-9A83-496D-AAE0-11CD02CE0A22}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{356AD085-26AD-447E-8CC7-31E5A8B39A4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{356AD085-26AD-447E-8CC7-31E5A8B39A4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{356AD085-26AD-447E-8CC7-31E5A8B39A4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{356AD085-26AD-447E-8CC7-31E5A8B39A4D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
@ -133,7 +127,6 @@ Global
|
||||
{CB91E680-2715-4E94-988A-401C0F4A0707} = {90A75AEB-70C5-42E5-A802-6B744280B8F8}
|
||||
{25BACE1B-1961-411A-8AC0-1375A1898F8F} = {90A75AEB-70C5-42E5-A802-6B744280B8F8}
|
||||
{F90B940C-9A83-496D-AAE0-11CD02CE0A22} = {35CDD71E-6FF8-45F5-B6E1-DF73573B4C26}
|
||||
{356AD085-26AD-447E-8CC7-31E5A8B39A4D} = {35CDD71E-6FF8-45F5-B6E1-DF73573B4C26}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {9D3C9EBA-FB4B-4BF4-8158-4A9FE47D3E88}
|
||||
|
||||
@ -1,10 +1,8 @@
|
||||
namespace LaaProductionWeb.API.Personalization
|
||||
{
|
||||
using LaaProduction.Http.Interfaces;
|
||||
using LaaProduction.Personalization.Interfaces;
|
||||
using LaaProduction.Personalization.Models;
|
||||
using LaaProductionWeb.App_Infrastructure;
|
||||
using LaaProductionDI;
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
@ -361,10 +361,6 @@
|
||||
<Project>{CB91E680-2715-4E94-988A-401C0F4A0707}</Project>
|
||||
<Name>LaaProduction.Data.Omni</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\LaaPackages\LaaPackages.HttpClient\LaaPackages.HttpClient.csproj">
|
||||
<Project>{356ad085-26ad-447e-8cc7-31e5a8b39a4d}</Project>
|
||||
<Name>LaaPackages.HttpClient</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\LaaPackages\LaaPackages.SqlClient\LaaPackages.SqlClient.csproj">
|
||||
<Project>{F90B940C-9A83-496D-AAE0-11CD02CE0A22}</Project>
|
||||
<Name>LaaPackages.SqlClient</Name>
|
||||
@ -427,6 +423,7 @@
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets'))" />
|
||||
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
|
||||
</Target>
|
||||
<PropertyGroup>
|
||||
<PreBuildEvent>$(SolutionDir)RoutesBuilder\bin\Debug\RoutesBuilder.exe</PreBuildEvent>
|
||||
@ -435,6 +432,7 @@
|
||||
<PostBuildEvent>del "$(TargetDir)*.pdb"
|
||||
del "$(TargetDir)*.xml"</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.3.0" targetFramework="net481" />
|
||||
<package id="Microsoft.AspNet.WebPages" version="3.3.0" targetFramework="net481" />
|
||||
<package id="Microsoft.Bcl.AsyncInterfaces" version="8.0.0" targetFramework="net481" />
|
||||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net481" />
|
||||
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="4.1.0" targetFramework="net481" />
|
||||
<package id="Microsoft.Extensions.DependencyInjection" version="8.0.0" targetFramework="net481" />
|
||||
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="8.0.1" targetFramework="net481" />
|
||||
|
||||
@ -1 +0,0 @@
|
||||
Subproject commit b474d36e1f46c20ed01d00785fb33fbe96ac5889
|
||||
Loading…
Reference in New Issue
Block a user