Test v2.49.2
Epi Pro support nuget server name
This commit is contained in:
parent
8e5c8a24a1
commit
add4414b89
@ -295,15 +295,15 @@ public partial class ProcessData : IProcessData
|
|||||||
string employee = txt.Header.Operator;
|
string employee = txt.Header.Operator;
|
||||||
DateTime dateTime = GetDateTime(logistics, tickOffset, txt.Header.DateTime);
|
DateTime dateTime = GetDateTime(logistics, tickOffset, txt.Header.DateTime);
|
||||||
// Remove illegal characters \/:*?"<>| found in the Batch
|
// Remove illegal characters \/:*?"<>| found in the Batch
|
||||||
string batch = Regex.Replace(txt.Header.Batch, @"[\\,\/,\:,\*,\?,\"",\<,\>,\|]", "_").Split('\r')[0].Split('\n')[0];
|
bool isWaferSlot = !string.IsNullOrEmpty(txt.Header.Wafer) && txt.Header.Wafer.Length is 1 or 2 && int.TryParse(txt.Header.Wafer, out slot) && slot < 27;
|
||||||
bool isWaferSlot = !string.IsNullOrEmpty(txt.Header.Wafer) && txt.Header.Wafer.Length is 1 or 2 && int.TryParse(txt.Header.Wafer, out slot);
|
string batch = !isWaferSlot ? logistics.JobID : Regex.Replace(txt.Header.Batch, @"[\\,\/,\:,\*,\?,\"",\<,\>,\|]", "_").Split('\r')[0].Split('\n')[0];
|
||||||
Descriptor descriptor = isWaferSlot ? GetDescriptor(txt.Header.Batch) : GetDescriptor(txt.Header.Wafer);
|
Descriptor descriptor = isWaferSlot ? GetDescriptor(txt.Header.Batch) : GetDescriptor(txt.Header.Wafer);
|
||||||
psn = descriptor.PSN;
|
psn = descriptor.PSN;
|
||||||
rds = descriptor.RDS;
|
rds = descriptor.RDS;
|
||||||
zone = descriptor.Zone;
|
zone = descriptor.Zone;
|
||||||
wafer = descriptor.Wafer;
|
|
||||||
layer = descriptor.Layer;
|
layer = descriptor.Layer;
|
||||||
reactor = descriptor.Reactor;
|
reactor = descriptor.Reactor;
|
||||||
|
wafer = isWaferSlot ? slot.ToString("00") : descriptor.Wafer;
|
||||||
if (string.IsNullOrEmpty(employee))
|
if (string.IsNullOrEmpty(employee))
|
||||||
employee = descriptor.Employee;
|
employee = descriptor.Employee;
|
||||||
foreach (char c in txt.Header.Title)
|
foreach (char c in txt.Header.Title)
|
||||||
@ -318,13 +318,13 @@ public partial class ProcessData : IProcessData
|
|||||||
}
|
}
|
||||||
if (string.IsNullOrEmpty(lastProcessData.Wafer))
|
if (string.IsNullOrEmpty(lastProcessData.Wafer))
|
||||||
{
|
{
|
||||||
lastProcessData.Batch = JobID;
|
lastProcessData.Batch = logistics.JobID;
|
||||||
lastProcessData.Cassette = JobID;
|
lastProcessData.Cassette = logistics.JobID;
|
||||||
lastProcessData.Employee = JobID;
|
lastProcessData.Employee = logistics.JobID;
|
||||||
lastProcessData.Recipe = JobID;
|
lastProcessData.Recipe = logistics.JobID;
|
||||||
lastProcessData.Title = JobID;
|
lastProcessData.Title = logistics.JobID;
|
||||||
}
|
}
|
||||||
lastProcessData.Wafer = wafer;
|
lastProcessData.Wafer = waferFixed.ToString();
|
||||||
lastProcessData.Reactor = reactor;
|
lastProcessData.Reactor = reactor;
|
||||||
lastProcessData.RDS = rds;
|
lastProcessData.RDS = rds;
|
||||||
string check = "--------";
|
string check = "--------";
|
||||||
|
@ -26,7 +26,7 @@ steps:
|
|||||||
displayName: Configuration
|
displayName: Configuration
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
set nugetSource=https://messa017.infineon.com/v3/index.json
|
set nugetSource=https://eaf-dev-reporting.mes.infineon.com/v3/index.json
|
||||||
echo %nugetSource%
|
echo %nugetSource%
|
||||||
echo ##vso[task.setvariable variable=NugetSource;]%nugetSource%
|
echo ##vso[task.setvariable variable=NugetSource;]%nugetSource%
|
||||||
echo $(NugetSource)
|
echo $(NugetSource)
|
||||||
|
@ -167,7 +167,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Infineon.EAF.Runtime">
|
<PackageReference Include="Infineon.EAF.Runtime">
|
||||||
<Version>2.49.0</Version>
|
<Version>2.49.2</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="System.Text.Json">
|
<PackageReference Include="System.Text.Json">
|
||||||
<Version>6.0.3</Version>
|
<Version>6.0.3</Version>
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.49.0.0")]
|
[assembly: AssemblyVersion("2.49.2.0")]
|
||||||
[assembly: AssemblyFileVersion("2.49.0.0")]
|
[assembly: AssemblyFileVersion("2.49.2.0")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user