cambio nome progetto
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
using static System.Net.Mime.MediaTypeNames;
|
||||
|
||||
namespace MP.INVENTORY.Components.Chart
|
||||
namespace MP.INVE.Components.Chart
|
||||
{
|
||||
public partial class Doughnut
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components.Chart
|
||||
namespace MP.INVE.Components.Chart
|
||||
{
|
||||
public partial class Line
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using NLog;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class CmpFooter
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
@using System.Security.Claims
|
||||
@using Microsoft.AspNetCore.Components.Authorization
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Authorization;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class CmpTop
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class DataPager : ComponentBase
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class DossiersFilter
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@ using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.Data.DTO;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ListDossiers : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
@if (ListRecords == null)
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVENTORY.Services;
|
||||
using MP.INVE.Data;
|
||||
using MP.INVE.Services;
|
||||
using NLog;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ListODL : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
@if (ListRecords == null)
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
using System.Diagnostics;
|
||||
using MP.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ListPARAMS : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
@if (ListRecords == null || isLoading)
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVENTORY.Services;
|
||||
using MP.INVE.Data;
|
||||
using MP.INVE.Services;
|
||||
using NLog;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ListPODL : IDisposable
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
<MP.INVENTORY.Components.Chart.Doughnut Type="@Chart.Doughnut.ChartType.Doughnut" Data="@Data.ToArray()" BackgroundColor="@colors"></MP.INVENTORY.Components.Chart.Doughnut>
|
||||
<MP.INVE.Components.Chart.Doughnut Type="@Chart.Doughnut.ChartType.Doughnut" Data="@Data.ToArray()" BackgroundColor="@colors"></MP.INVE.Components.Chart.Doughnut>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ODLPlot
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.Data;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ParamsFilter : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
@inject MessageService AppMService
|
||||
|
||||
|
||||
@@ -11,12 +11,12 @@ using Microsoft.AspNetCore.Components.Routing;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.Web.Virtualization;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.INVENTORY;
|
||||
using MP.INVENTORY.Shared;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE;
|
||||
using MP.INVE.Shared;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Components
|
||||
namespace MP.INVE.Components
|
||||
{
|
||||
public partial class ToggleMode
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class DoughnutStyling
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class MessageService
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ using NLog;
|
||||
using StackExchange.Redis;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class MpDataService : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectArticoliParams
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using MP.Data;
|
||||
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectDossierParams
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectFluxParams
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectGlobalToggle
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using MP.Data;
|
||||
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectOdlParams
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Data
|
||||
namespace MP.INVE.Data
|
||||
{
|
||||
public class SelectPOdlParams
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>MP.INVENTORY</RootNamespace>
|
||||
<RootNamespace>MP.INVE</RootNamespace>
|
||||
<Version>6.16.2211.1011</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@page "/ART"
|
||||
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
<div class="card mb-5">
|
||||
<div class="card-header table-primary">
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class Articoli : ComponentBase, IDisposable
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@page "/Contacts"
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Data
|
||||
|
||||
@inject MessageService AppMService
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class Contacts : IDisposable
|
||||
{
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class DOSS
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@page
|
||||
@model MP.INVENTORY.Pages.ErrorModel
|
||||
@model MP.INVE.Pages.ErrorModel
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
[IgnoreAntiforgeryToken]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class Index
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class ODL
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class PARAMS
|
||||
{
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data.DatabaseModels;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVENTORY.Services;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
using MP.INVE.Services;
|
||||
using NLog;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class PODL
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@page "/Utils"
|
||||
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
|
||||
<h3>Utils</h3>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
|
||||
namespace MP.INVENTORY.Pages
|
||||
namespace MP.INVE.Pages
|
||||
{
|
||||
public partial class Utils
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@page "/"
|
||||
@namespace MP.INVENTORY.Pages
|
||||
@namespace MP.INVE.Pages
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@namespace MP.INVENTORY.Pages
|
||||
@namespace MP.INVE.Pages
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
|
||||
<!DOCTYPE html>
|
||||
@@ -13,7 +13,7 @@
|
||||
<link rel="stylesheet" href="lib/bootstrap-icons/font/bootstrap-icons.min.css" />
|
||||
<link rel="stylesheet" href="css/site.min.css" />
|
||||
<link rel="stylesheet" href="lib/font-awesome/css/all.min.css" />
|
||||
<link href="MP.INVENTORY.styles.css" rel="stylesheet" />
|
||||
<link href="MP.INVE.styles.css" rel="stylesheet" />
|
||||
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.AspNetCore.Authentication.Negotiate;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using MP.INVENTORY.Components;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVENTORY.Services;
|
||||
using MP.INVE.Components;
|
||||
using MP.INVE.Data;
|
||||
using MP.INVE.Services;
|
||||
using StackExchange.Redis;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"MP.INVENTORY": {
|
||||
"MP.INVE": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# MP.INVENTORY
|
||||
# MP.INVE
|
||||
|
||||

|
||||

|
||||
|
||||
- [MP.INVENTORY](#mpinventory)
|
||||
- [MP.INVE](#mpinve)
|
||||
- [Schema generale](#schema-generale)
|
||||
- [Funzionalita](#funzionalita)
|
||||
- [Use cases](#use-cases)
|
||||
@@ -19,9 +19,9 @@
|
||||
|
||||
# Schema generale
|
||||
|
||||
Di seguito lo schema generale del pacchetto opzionale MP.INVENTORY
|
||||
Di seguito lo schema generale del pacchetto opzionale MP.INVE
|
||||
|
||||

|
||||

|
||||
|
||||
<div style="page-break-after: always; visibility: hidden"></div>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2211.1011</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/MP.INVENTORY.zip</url>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/MP.INVE.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
</item>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using MP.INVENTORY.Data;
|
||||
using MP.INVE.Data;
|
||||
using NLog;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace MP.INVENTORY.Services
|
||||
namespace MP.INVE.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// Classe per chiamare metodi da MP-IO
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<PageTitle>MP.INVENTORY</PageTitle>
|
||||
<PageTitle>MP.INVE</PageTitle>
|
||||
|
||||
<div class="page">
|
||||
<div class="@sideClass">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVENTORY.Data
|
||||
@using MP.INVE.Components
|
||||
@using MP.INVE.Data
|
||||
@inject MpDataService MDService
|
||||
|
||||
<div class="top-row ps-2 navbar navbar-dark">
|
||||
@@ -10,7 +10,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
<a class="navbar-brand" @onclick="() => ToggleCompress()">MP.INVENTORY <i class="fas fa-caret-square-left"></i></a>
|
||||
<a class="navbar-brand" @onclick="() => ToggleCompress()">MP.INVE <i class="fas fa-caret-square-left"></i></a>
|
||||
}
|
||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop
|
||||
@using MP.INVENTORY
|
||||
@using MP.INVENTORY.Shared
|
||||
@using MP.INVENTORY.Components
|
||||
@using MP.INVE
|
||||
@using MP.INVE.Shared
|
||||
@using MP.INVE.Components
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"CodApp": "MP.INVENTORY",
|
||||
"CodApp": "MP.INVE",
|
||||
"ConnectionStrings": {
|
||||
"Mp.Data": "Server=localhost\\SQLEXPRESS;Database=MoonPro; User ID=steamware;Password=viadante16; integrated security=False; MultipleActiveResultSets=True; App=Blazor.ServerApp;",
|
||||
"Redis": "localhost:6379,DefaultDatabase=13,connectTimeout=5000,syncTimeout=5000,asyncTimeout=5000,abortConnect=false,ssl=false"
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"CodApp": "MP.INVENTORY",
|
||||
"CodApp": "MP.INVE",
|
||||
"ConnectionStrings": {
|
||||
"Mp.Data": "Server=SQL2016DEV;Database=MoonPro; User ID=sa;Password=keyhammer16; integrated security=False; MultipleActiveResultSets=True; App=MP.INVENTORY;",
|
||||
"Mp.Data": "Server=SQL2016DEV;Database=MoonPro; User ID=sa;Password=keyhammer16; integrated security=False; MultipleActiveResultSets=True; App=MP.INVE;",
|
||||
"Redis": "localhost:6379,DefaultDatabase=1,connectTimeout=5000,syncTimeout=5000,asyncTimeout=5000,abortConnect=false,ssl=false",
|
||||
"RedisAdmin": "localhost:6379,DefaultDatabase=1,connectTimeout=5000,syncTimeout=5000,asyncTimeout=5000,abortConnect=false,ssl=false,allowAdmin=true"
|
||||
},
|
||||
|
||||
@@ -23,7 +23,7 @@ $manData = Get-Content $FileManIn
|
||||
$manData = $manData -replace "1.0.0.0", $currRelNum
|
||||
$manData = $manData -replace "{{DIRNAME}}", "MP-SPEC"
|
||||
$manData = $manData -replace "{{BRANCHNAME}}", "stable/LAST"
|
||||
$manData = $manData -replace "{{PACKNAME}}", "MP.INVENTORY"
|
||||
$manData = $manData -replace "{{PACKNAME}}", "MP.INVE"
|
||||
Set-Content -Path $FileManOut -Value $manData
|
||||
|
||||
# replace x ChangeLog
|
||||
|
||||
Reference in New Issue
Block a user