Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make it easier to build the source under Linux #85

Merged
merged 1 commit into from Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 2 additions & 9 deletions .gitignore
Expand Up @@ -59,18 +59,11 @@ _ReSharper*
*.ncrunch*
.*crunch*.local.xml

# Paket - dependency management for .NET and Mono projects
.paket/paket.bootstrapper.run
paket-files

# FAKE - F# Make
.fake/

# NuGet Packages Directory
NuGetPackages
packages

# Installshield output folder
# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
Expand Down Expand Up @@ -114,4 +107,4 @@ Generated_Code #added for RIA/Silverlight projects
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
*.vs
*.vs
265 changes: 0 additions & 265 deletions .paket/Paket.Restore.targets

This file was deleted.

Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
Binary file removed .paket/paket.exe
Binary file not shown.
72 changes: 0 additions & 72 deletions .paket/paket.targets

This file was deleted.

9 changes: 2 additions & 7 deletions src/BitcoinLib.sln → BitcoinLib.sln
Expand Up @@ -3,14 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2003
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{8C09BFEC-8BFA-42B3-88B2-47F5010CA418}"
ProjectSection(SolutionItems) = preProject
..\paket.dependencies = ..\paket.dependencies
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BitcoinLib", "src\BitcoinLib\BitcoinLib.csproj", "{B853E315-7103-4CBA-8873-D5202019F267}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BitcoinLib", "BitcoinLib\BitcoinLib.csproj", "{B853E315-7103-4CBA-8873-D5202019F267}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoClient", "..\demo\DemoClient.csproj", "{56F54485-7B42-4E41-95D3-1998EA614695}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoClient", "demo\DemoClient.csproj", "{56F54485-7B42-4E41-95D3-1998EA614695}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
9 changes: 0 additions & 9 deletions README.md
Expand Up @@ -49,12 +49,6 @@ From version 1.4.0, BitcoinLib follows [Semantic Versioning 2.0.0](http://semver
To build BitcoinLib from source, you will need either the
[.NET Core SDK or Visual Studio](https://www.microsoft.com/net/download/).

### Linux-specific

If you are using Linux you will also need Mono installed
(in order to run Paket). The full install sequence (for Ubuntu)
will be something like [this](https://github.com/hedgehogqa/fsharp-hedgehog/pull/153#issuecomment-364325504).

### Building & running tests

With Visual Studio you can build BitcoinLib and run the tests
Expand All @@ -65,9 +59,6 @@ tool you can execute:
dotnet build src/BitcoinLib.sln
```

The first time you run it, this will use Paket to restore all
the packages, and then build the code.

## Instructions for Bitcoin

- Locate your `bitcoin.conf` file (in Windows it's under: `%AppData%\Roaming\Bitcoin`, if it's not there just go ahead and create it) and add these lines:
Expand Down