What steps will reproduce the problem?
1. Downloaded last version (svn)
2. Open solution in VS2010
3. Rebuild solution
4. Error in GEServer.cs (line 227)
Argument 1: cannot convert from 'string' to 'System.Uri'
What is the expected output? What do you see instead?
expected: ========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========
actual: ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
What version of the product are you using? On what operating system?
Visual Studio 2010 Professional on Windows 7 32-bit
Please provide any additional information below.
build succeeded replacing original line 227:
string filePath = TranslatePath(request.Uri);
with
string filePath = TranslatePath(new Uri(request.Uri));
Original issue reported on code.google.com by luca.pel...@gmail.com on 4 Sep 2014 at 5:38
Original issue reported on code.google.com by
luca.pel...@gmail.com
on 4 Sep 2014 at 5:38