Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/vmPing/bin/Debug/net8.0-windows/vmPing.dll",
"args": [],
"cwd": "${workspaceFolder}/vmPing",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/vmPing.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/vmPing.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/vmPing.sln"
],
"problemMatcher": "$msCompile"
}
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Recent Changes
* When logging status changes to a text file, aliases are now included.
* Lots of minor visual changes:
- On status change alerts, the text for _DOWN_ and _UP_ is now all lowercase _down_ and _up_.
- On popup alerts, an arrow symbol replaces the word "is". For example _127.0.0.1 is down_ becomes _127.0.0.1 🠖 down_
- On popup alerts, an arrow symbol replaces the word "is". For example _127.0.0.1 is down_ becomes _127.0.0.1 🠖 down_
- All references to Popup Notifications have been renamed to Popup Alerts (to be consistent with email alerts and audio alerts).
- Custom styling on the main dropdown menu. Added icons to most menu items.
- Minor style changes and icons added to the alias and favorites windows.
Expand Down Expand Up @@ -175,7 +175,7 @@ Features
* Favorites. Easily save a collections of hosts to be recalled instantly at a later time.
* Aliases. You can assign a friendly display name for any given host.
* Traceroute. For the hostname, enter _T/HOSTNAME_ to perform a traceroute.
* DNS forward and reverse lookups. For the hostname, enter _D/NAME_OR_IP_ to perform a DNS lookup.
* DNS forward and reverse lookups with detailed record data (A/AAAA/CNAME/MX/TXT/NS/SOA) and multi-resolver propagation checks. Use the DNS Lookup menu (Ctrl-D) or enter _D/NAME_OR_IP_ in a probe to run a lookup.
* Specify any number of hosts from the command line to instantly begin pinging when the application opens.
* Specify a file containing a list of hosts to load and instantly ping when the application launches.
* Command line usage:
Expand Down
Loading