bonesoul / hypepool

:rocket: :zap: :sparkles: next-gen mining pool server software
Other
118 stars 68 forks source link

build problem #75

Open flybot1565 opened 5 years ago

flybot1565 commented 5 years ago

dotnet --version 2.1.402

nodejs -v v8.12.0

npm install -g grunt-cli && npm install git clone git@github.com:bonesoul/hypepool.git dotnet build hypepool.sln

error:

Utils/Helpers/Time/FastClock.cs(29,34): error CS0234: The type or namespace name 'Exporters' does not exist in the namespace 'BenchmarkDotNet.Attributes' (are you missing an assembly reference?) [/home/ob/hypepool/src/Tests/Hypepool.Benchmarks/Hypepool.Benchmarks.csproj] Utils/Helpers/Time/FastClock.cs(30,34): error CS0234: The type or namespace name 'Jobs' does not exist in the namespace 'BenchmarkDotNet.Attributes' (are you missing an assembly reference?) [/home/ob/hypepool/src/Tests/Hypepool.Benchmarks/Hypepool.Benchmarks.csproj]

Build FAILED.

Utils/Helpers/Time/FastClock.cs(29,34): error CS0234: The type or namespace name 'Exporters' does not exist in the namespace 'BenchmarkDotNet.Attributes' (are you missing an assembly reference?) [/home/ob/hypepool/src/Tests/Hypepool.Benchmarks/Hypepool.Benchmarks.csproj] Utils/Helpers/Time/FastClock.cs(30,34): error CS0234: The type or namespace name 'Jobs' does not exist in the namespace 'BenchmarkDotNet.Attributes' (are you missing an assembly reference?) [/home/ob/hypepool/src/Tests/Hypepool.Benchmarks/Hypepool.Benchmarks.csproj] 0 Warning(s) 2 Error(s)

Can you help with this ?

EarlVadim commented 5 years ago

I have the same problem. U16.04 $ dotnet --version 2.2.101 $ nodejs -v v8.15.0

s4m4hdi commented 5 years ago

You can comment out the lines of code in FastClock.cs causing the problem to get it working , appears to build ok.

using BenchmarkDotNet.Attributes; //using BenchmarkDotNet.Attributes.Exporters; //using BenchmarkDotNet.Attributes.Jobs;

s4m4hdi commented 5 years ago

Did'nt find any docs on how to configure this thing. Looks like the code is being developed to take a settings.yaml file and currently the settings are hardcoded. This project looks abandonded to me.

bitcoinbrisbane commented 4 years ago

Did'nt find any docs on how to configure this thing. Looks like the code is being developed to take a settings.yaml file and currently the settings are hardcoded. This project looks abandonded to me.

Seems like it. Im going to fork it and see if I can get it working.