Skip to content

Tag: linux

specflow.exe – ‘libhostpolicy.so’ not found

I’m trying to run the specflow.exe that comes with the nuget package on Linux, but I am getting the below error: I found the file: How can I make specflow.exe use it? Answer SpecFlow <= 2.4 has no .NET Core support, so you can’t execute the specflow.exe with dotnet specflow.exe. You can try to …

Add SpecFlow tests to .NET Core project in VSCode

I’ve created a .NET Core project and I’m using VSCode on Linux. I installed SpecFlow with dotnet add package SpecFlow but I don’t think there is IDE integration yet. Can I use the SpecFlow nuget package from the command line to create a test? Answer SpecFlow 3.0 will have .NET Core support. …

WebAssembly emsdk installation fails

I want to install EMSDK for WASM compilation but EMSDK installation fails. I’ve already installed Cmake (3.14.0-rc1 also tried 3.5.2 then) on Ubuntu 16. When I run ./emsdk install sdk-incoming-64bit binaryen-master-64bit it fails: Answer You are probably missing make as cmake is complaining that there i…

Linux Find command- exclude find based on file name

I feel like this is a ridiculously easy question but I cannot find a simple regex answer for this. Basically, I am trying to use find to get a list of all files in my system with some exclusions. One of these exclusions is any file that ends in .Foo.cs, or any file named FooInfo.cs. I have successfully exclud…