LinqPadless icon indicating copy to clipboard operation
LinqPadless copied to clipboard

LINQPad Queries without LINQPad

Results 8 LinqPadless issues
Sort by recently updated
recently updated
newest added

To repro, create a new query and add nuget package Microsoft.CodeAnalysis which is 2.0.0, add following code: var workspace = new AdhocWorkspace(); Add missing namespace imports and ensure it works...

bug

This PR explores adding support for running plain text scripts as LINQPad's `lprun` does and as described in the **Plain Text Scripts** section of [LINQPad Command-Line and Scripting](https://www.linqpad.net/LPRun.aspx): > ###...

According to @albahari in a [post](https://forum.linqpad.net/discussion/comment/441/#Comment_441) to a [thread](https://forum.linqpad.net/discussion/189/cannot-access-non-static-member-of-outer-type-linqpad-user-typeddatacontext) in the [LINQPad Forum](https://forum.linqpad.net/): > Normally, anything types that you define end up as nested types, because LINQPad wraps everything that...

enhancement

It seems that #29 has more ramifications with respect to entry-point `Main`. If `Main` is in a class in a namespace: ```c# public static void Print(MethodBase method) => Console.WriteLine($"{method.DeclaringType.FullName}::{method.Name}"); namespace...

I have a script that need to access the clipboard. After compiling with lpless when I try to run executable it complains that to access clipboard it need STAthread. When...

bug
help wanted

Suppose the following LINQPad _program_ query: ``` void Main(string[] args) { } // Define other methods and classes here ``` When run through `lpless`, the compiled program fails to build...

bug

## What steps will reproduce the problem? Create an empty LINQPad query file named `Empty.linq` then compile and run it as follows from a Windows Command Prompt (assuming current directory...

hold

LINQPad allows non-assembly to be referenced and later used as an ordinary by getting its path via `Util.GetFullPath`. LINQPadless assumes that all references are assemblies and passed them on to...

bug