1
0
Fork
You've already forked LinePayloadSender
0
LinePayloadSender is a small open-source .NET console app that sends newline-delimited JSON payloads line by line to a configured HTTP endpoint.
  • C# 100%
2026年05月13日 18:34:27 +02:00
LinePayloadSender init 2026年05月13日 18:34:27 +02:00
.gitignore init 2026年05月13日 18:34:27 +02:00
LICENSE.md init 2026年05月13日 18:34:27 +02:00
LinePayloadSender.sln init 2026年05月13日 18:34:27 +02:00
README.md init 2026年05月13日 18:34:27 +02:00

LinePayloadSender

LinePayloadSender is a small open-source .NET console app that sends newline-delimited JSON payloads line by line to a configured HTTP endpoint.

Configuration

The app reads LinePayloadSender/settings.json with these properties:

  • startAt: zero-based line index to start sending from
  • url: target HTTP endpoint
  • filePath: input file path; use default to load the bundled default file

When filePath is default, the app uses data.txt from the build output.

Each non-empty line is sent unchanged as one application/json request body. The sample data is sanitized for public use.

Commands

Create a Windows single-file build:

dotnet publish "LinePayloadSender.csproj" -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true