Continuo fix simula + build_all usato x single test
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<TargetFrameworkProfile />
|
||||
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
@@ -91,6 +92,9 @@
|
||||
<Reference Include="System.Numerics.Vectors, Version=4.1.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Numerics.Vectors.4.6.1\lib\net462\System.Numerics.Vectors.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Resources.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Resources.Extensions.4.7.1\lib\net461\System.Resources.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.1.2\lib\net462\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
||||
</Reference>
|
||||
|
||||
+16
-16
@@ -973,10 +973,10 @@ namespace IOB_WIN_FORM.Iob
|
||||
item.reqValue = "";
|
||||
|
||||
MemBlock = new byte[byteSize];
|
||||
serObj = JsonConvert.SerializeObject(item, Formatting.Indented);
|
||||
lgInfo($"Inizio processing plcWriteParams per {currMem.name} | valore richiesto {currMem.value}{Environment.NewLine}---------------UPDATED PARAM---------------{Environment.NewLine}{serObj}{Environment.NewLine}---------------");
|
||||
serObj = JsonConvert.SerializeObject(currMem, Formatting.Indented);
|
||||
lgInfo($"---------------MEMORY CONTENT---------------{Environment.NewLine}{serObj}{Environment.NewLine}---------------");
|
||||
serObj = JsonSerialize(item, Formatting.Indented);
|
||||
lgInfo($"Inizio processing plcWriteParams per {currMem.name} | valore richiesto {currMem.value}{Environment.NewLine}---------------UPDATED PARAM---------------{Environment.NewLine}{serObj}{Environment.NewLine}---------------");
|
||||
serObj = JsonSerialize(currMem, Formatting.Indented);
|
||||
lgInfo($"---------------MEMORY CONTENT---------------{Environment.NewLine}{serObj}{Environment.NewLine}---------------");
|
||||
lgInfo($"---------------MemBlock data---------------{Environment.NewLine}{BitConverter.ToString(MemBlock)}{Environment.NewLine}--------------- END data ---------------");
|
||||
|
||||
// salvo
|
||||
@@ -1611,7 +1611,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaArt = JsonConvert.DeserializeObject<List<AnagArticoli>>(rawListArt);
|
||||
listaArt = JsonDeserialize<List<AnagArticoli>>(rawListArt);
|
||||
okArt = listaArt.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
@@ -1627,7 +1627,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaDoss = JsonConvert.DeserializeObject<List<DossiersModel>>(rawListDOSS);
|
||||
listaDoss = JsonDeserialize<List<DossiersModel>>(rawListDOSS);
|
||||
okDoss = listaDoss.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
@@ -1643,7 +1643,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaPODL = JsonConvert.DeserializeObject<List<PODLModel>>(rawListPODL);
|
||||
listaPODL = JsonDeserialize<List<PODLModel>>(rawListPODL);
|
||||
okPodl = listaPODL.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
@@ -1659,7 +1659,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
anagLVFasi = JsonConvert.DeserializeObject<List<ListVal>>(rawLVFasi);
|
||||
anagLVFasi = JsonDeserialize<List<ListVal>>(rawLVFasi);
|
||||
dictAF = anagLVFasi.ToDictionary(x => x.value, x => x.label);
|
||||
okLVFasi = listaArt.Count > 0;
|
||||
}
|
||||
@@ -1760,8 +1760,8 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaArt = JsonConvert.DeserializeObject<List<AnagArticoli>>(rawListArt);
|
||||
okArt = listaArt.Count > 0;
|
||||
listaArt = JsonDeserialize<List<AnagArticoli>>(rawListArt);
|
||||
okArt = listaArt.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
@@ -1776,8 +1776,8 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaDoss = JsonConvert.DeserializeObject<List<DossiersModel>>(rawListDOSS);
|
||||
okDoss = listaDoss.Count > 0;
|
||||
listaDoss = JsonDeserialize<List<DossiersModel>>(rawListDOSS);
|
||||
okDoss = listaDoss.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
@@ -1792,8 +1792,8 @@ namespace IOB_WIN_FORM.Iob
|
||||
{
|
||||
try
|
||||
{
|
||||
listaPODL = JsonConvert.DeserializeObject<List<PODLModel>>(rawListPODL);
|
||||
okPodl = listaPODL.Count > 0;
|
||||
listaPODL = JsonDeserialize<List<PODLModel>>(rawListPODL);
|
||||
okPodl = listaPODL.Count > 0;
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
@@ -1828,7 +1828,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
if (selArt != null && selDoss != null)
|
||||
{
|
||||
// recupero il resultset dei valori FluxLog da caricare
|
||||
DossierFluxLogDTO resultSet = JsonConvert.DeserializeObject<DossierFluxLogDTO>(selDoss.Valore);
|
||||
DossierFluxLogDTO resultSet = JsonDeserialize<DossierFluxLogDTO>(selDoss.Valore);
|
||||
List<FluxLog> listFluxLog = resultSet.ODL;
|
||||
|
||||
// preparo elenco parametri da inviare...
|
||||
@@ -2167,7 +2167,7 @@ namespace IOB_WIN_FORM.Iob
|
||||
/// <param name="dataItems"></param>
|
||||
private void sendDataItemsList(List<machDataItem> dataItems)
|
||||
{
|
||||
string rawData = JsonConvert.SerializeObject(dataItems);
|
||||
string rawData = JsonSerialize(dataItems);
|
||||
HttpService.CallUrlPost($"{urlSaveDataItems}", rawData);
|
||||
}
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
<package id="System.IO.Pipelines" version="10.0.0" targetFramework="net472" />
|
||||
<package id="System.Memory" version="4.6.3" targetFramework="net472" />
|
||||
<package id="System.Numerics.Vectors" version="4.6.1" targetFramework="net472" />
|
||||
<package id="System.Resources.Extensions" version="4.7.1" targetFramework="net472" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.1.2" targetFramework="net472" />
|
||||
<package id="System.Text.Encodings.Web" version="10.0.0" targetFramework="net472" />
|
||||
<package id="System.Text.Json" version="10.0.0" targetFramework="net472" />
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
# Cerca ricorsivamente solo le soluzioni che iniziano con 'IOB-WIN-'
|
||||
$pattern = "IOB-WIN-*.sln"
|
||||
$pattern = "IOB-WIN-NEXT.sln"
|
||||
$solutions = Get-ChildItem -Path . -Filter $pattern -Recurse
|
||||
|
||||
if ($solutions.Count -eq 0) {
|
||||
|
||||
Reference in New Issue
Block a user