Seiryu

Results 21 comments of Seiryu

@ivanakcheurov This tool was able to achieve code completion and syntax highlight in the terminal https://github.com/waf/CSharpRepl. I really hope dotnet-script can do it too.

The workaround from @marcin-dardzinski is great, but is there a more native way to do it with dotnet 6? Something like `dotnet watch run` or `func watch start`?

A webhook is available by default in a lot of services nowadays. It'd be very useful to be notified by Vimeo if a video was uploaded/changed. We could even pay...

@rubenheymans Azure Media Services is a good product. It gives more control over the process but is more complex to setup. It also came out cheaper (for our project) than...

I'm getting the same error when compiling with net5 on both Windows and Ubuntu. ```xml net5.0 Sql130 ``` Error: ```bash /usr/share/dotnet/sdk/5.0.301/Microsoft.Common.CurrentVersion.targets(4520,5): error MSB4044: The "CopyRefAssembly" task was not given a...

Lol https://github.com/rr-wfm/MSBuild.Sdk.SqlProj/pull/33#issuecomment-671020761

@raulfdm could you share your `package.json`? There are probably lots of versions of this same error. They just don't bubble up properly so all errors look more or less the...

So, I get the error above when I run tests during the docker build step via ```dockerfile RUN npm run test ``` But if I comment out `await setupStrapi();` and...

The dotnet project files have `.csproj` and `.fsproj` extensions for C# and F#. There is also VB but I don't remember the extension.

I solved it by adding this to my serverless.yml ``` plugins: - serverless-plugin-typescript - serverless-offline ... custom: serverlessPluginTypescript: tsConfigFileLocation: './tsconfig.build.json' ``` and running ``` sls offline start --config serverless.yml --reloadHandler...