Skip to content

Commit

Permalink
started porting mvc sample to mvc3 and razor (working on mono so far)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzaadi committed May 5, 2011
1 parent d812ec5 commit 196c2a3
Show file tree
Hide file tree
Showing 29 changed files with 458 additions and 13,005 deletions.
3 changes: 1 addition & 2 deletions Core/Base/Url.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,10 @@ internal string GetStringFromURL(string URL)

LogProvider.LogMessage("Url.GetStringFromURL : Cached result unavailable, fetching url content");

var webClient = new System.Net.WebClient();
string result;
try
{
result = webClient.DownloadString(URL);
result = new System.Net.WebClient().DownloadString(URL);
}
catch (Exception error)
{
Expand Down
Binary file modified Libs/mvc/System.Web.Mvc.dll
Binary file not shown.
8,318 changes: 0 additions & 8,318 deletions Libs/mvc/System.Web.Mvc.xml

This file was deleted.

Binary file removed Libs/ninject/Ninject.Web.Mvc.dll
Binary file not shown.
214 changes: 0 additions & 214 deletions Libs/ninject/Ninject.Web.Mvc.xml

This file was deleted.

Binary file removed Libs/ninject/Ninject.dll
Binary file not shown.
Loading

0 comments on commit 196c2a3

Please sign in to comment.