dariemcarlosdev / VPKFILEPROCESSORAPP

Blazor Server app that takes a CSV file as input, runs a background job to execute an SSIS package in Azure, and stores the output CSV file in Azure Blob Storage for download.
GNU Affero General Public License v3.0
1 stars 0 forks source link

### Summary of Changes #20

Closed dariemcarlosdev closed 3 weeks ago

dariemcarlosdev commented 3 weeks ago

The code change modifies the format of the outputFileName parameter in the pipeline. Instead of appending "-OUTPUT" to the end of the original fileName, the new format prefixes "OUTPUT-" to the original fileName.

List of Changes

  1. Modification of outputFileName Format:
    • Previous Format: fileName + "-OUTPUT"
    • New Format: "OUTPUT-" + fileName
    • Reference: [Code Change Description]