Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjpou1/meteorvsctest
test meteor with vscode and debug.writeline
https://github.com/kjpou1/meteorvsctest
Last synced: about 1 month ago
JSON representation
test meteor with vscode and debug.writeline
- Host: GitHub
- URL: https://github.com/kjpou1/meteorvsctest
- Owner: kjpou1
- Created: 2023-02-24T08:24:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T08:59:36.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T13:20:48.120Z (3 months ago)
- Language: C#
- Size: 795 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# meteorvsctest
test meteor with vscode and debug.writeline# created with
```
> dotnet new maui -n meteorvsctest
The template ".NET MAUI App" was created successfully.
```# Add .NET Metero Debugger - launch.json
From Run and Debug click on link `create a launch.json file.`
- Select `.NET Meteor Debugger` from selection list presented# Add code to MauiProgram.cs
``` csharp
Console.WriteLine("console.writeline");
#if DEBUG
Console.WriteLine("console.writeline debug");
#endif
Debug.WriteLine("debug.writeline");
```# debug console mac
![Screenshot](debug%20console%20mac.png)
# debug console android
![Screenshot](debug%20console%20android.png)
# debug console iphone
![Screenshot](debug%20console%20iphone.png)