Added instructions to manually download the dependencies

This commit is contained in:
Jan Tattermusch 2015-04-16 12:24:52 -07:00
parent 6b7f0172b9
commit 4e80fe15ed
2 changed files with 16 additions and 0 deletions

3
csharp/.gitignore vendored
View File

@ -26,6 +26,8 @@ mono/protoc
build_output
build_temp
build/msbuild*.log
lib/Microsoft.Silverlight.Testing
lib/NUnit
#
# Untracked files
@ -38,3 +40,4 @@ mono/TestResult.xml
mono/.libs
mono/*.exe
mono/*.dll
lib/protoc.exe

13
csharp/lib/README.md Normal file
View File

@ -0,0 +1,13 @@
This directory used to contain the binary dependencies, but they were removed during a cleanup associated with importing the project
into google/protobuf repository. Before we figure a better way to manage the dependencies, you will have to manually download the dependencies
to be able to build the test projects:
1. Download https://github.com/jskeet/protobuf-csharp-port/archive/2.4.1.555.zip
2. Open the archive and copy following files into this directory:
* `lib/Microsoft.Silverlight.Testing/`
* `lib/NUnit/`
* `lib/proto.exe`
After that, you should be able to fully build the C# protobufs Visual Studio solutions.
TODO(jtattermusch): the way we pull in dependencies needs to change