https://github.com/sublimetext/linqpad
Syntax highlighting and build system for LINQPad scripts
https://github.com/sublimetext/linqpad
build-system linqpad sublime-text syntax-highlighting
Last synced: 3 months ago
JSON representation
Syntax highlighting and build system for LINQPad scripts
- Host: GitHub
- URL: https://github.com/sublimetext/linqpad
- Owner: SublimeText
- License: mit
- Created: 2016-03-02T14:07:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-07T14:20:12.000Z (over 6 years ago)
- Last Synced: 2025-01-01T11:22:13.463Z (5 months ago)
- Topics: build-system, linqpad, sublime-text, syntax-highlighting
- Size: 20.5 KB
- Stars: 5
- Watchers: 8
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LINQPad
Syntax highlighting and build system for LINQPad (`.linq`) scripts.## Build System
If you have LINQPad installed (i.e. you are on Windows), and `lprun` is available on your path, you can use the Sublime Text build system to execute your linq script using [`lprun`](https://www.linqpad.net/lprun.aspx), and the output will appear in the build results panel.
There are 3 build variants:
- `lprun` - which will output results in text mode. Lists and non-basic objects are formatted as JSON.
- `Output CSV` - which will render simple lists in Excel-friendly CSV.
- `Compile Only` - which will check your script for errors/warnings only and not execute any code.## Installation
The recommended way to install the LINQPad syntax highlighting and build system for Sublime Text is via [Package Control](https://packagecontrol.io/packages/LinqPad). Package Control will install the plugin on your system and keep it up to date.
1. [Ensure Package Control is installed.](https://packagecontrol.io/installation)
1. In Sublime Text, open the `Preferences` menu, and select `Package Control`.
1. Select `Package Control: Install Package`.
1. Start typing `LinqPad`. When you see it, select it.
1. Wait for it to install.
1. Re-open any open linq files, or set their syntax to linq manually.
1. Enjoy!