Weihan Li
Weihan Li
Add support for common used snippets for example: ``` c# dotnet-exec 'Guid.NewGuid()' ``` ``` c# dotnet-exec snip set new-guid `Guid.NewGuid()` dotnet-exec snip new-guid ```
Support executing xunit test cases ``` sh dotnet-exec test XxTest.cs ```
``` sh dotnet-exec "https://github.com/WeihanLi/SamplesInPractice/blob/56dda58920fa9921dad50fde4a8333581541cbd2/BalabalaSample/CorrelationIdSample.cs" --project "https://github.com/WeihanLi/SamplesInPractice/blob/56dda58920fa9921dad50fde4a8333581541cbd2/BalabalaSample/BalabalaSample.csproj" --wide false --debug ``` ``` text fail: dotnet-exec[0] Compile error: (24,40): error CS1929: 'ILoggingBuilder' does not contain a definition for 'AddSerilog' and the best...
Simple REPL likes [`csharprepl`](https://github.com/waf/CSharpRepl)
### Testing spec - environment - collection(request collection) - group(request group in a collection) - request(specific request) - variable ```yaml collectionName: testCollection variables: - name: value preScript: | $request.headers.add("apiKey", "test")...
See https://devblogs.microsoft.com/visualstudio/safely-use-secrets-in-http-requests-in-visual-studio-2022/ env: - env file - user env file - custom config provider variable - dotenv - processEnv contributes to #64
## Add `execute` subcommand ### http #64 ``` sh # execute http request dotnet-http exec demo.http ``` ### curl #51 ``` sh dotnet-http exec `curl text` -t curl ``` ###...
**Is your feature request related to a problem? Please describe.** Similar to #51 , sometimes we may wanna generate request from a har file **Describe alternatives you've considered** ``` sh...
See details Usage examples: ``` sh # Create session named user1 http --session=user1 -a user1:password pie.dev/get X-Foo:Bar # Refer to the session by its name http --session=user1 pie.dev/get # To...
**Is your feature request related to a problem? Please describe.** It would be great to support **Describe the solution you'd like** - Parse curl request - Generate the httpie request...