Skip to content

Commit

Permalink
Updated for 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianEdwards committed Nov 8, 2013
1 parent b5e2d5c commit bdf3295
Show file tree
Hide file tree
Showing 19 changed files with 83 additions and 882 deletions.
Binary file modified SignalR.StockTicker/.nuget/NuGet.exe
Binary file not shown.
4 changes: 3 additions & 1 deletion SignalR.StockTicker/SignalR.StockTicker.sln
@@ -1,6 +1,8 @@


Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 11 # Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalR.StockTicker", "SignalR.StockTicker\SignalR.StockTicker.csproj", "{F0351CF4-1A9D-4FE1-8B52-7015725AB46D}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalR.StockTicker", "SignalR.StockTicker\SignalR.StockTicker.csproj", "{F0351CF4-1A9D-4FE1-8B52-7015725AB46D}"
EndProject EndProject
Global Global
Expand Down
Expand Up @@ -10,12 +10,10 @@
<description>A simple fake stock ticker sample for ASP.NET SignalR.</description> <description>A simple fake stock ticker sample for ASP.NET SignalR.</description>
<dependencies> <dependencies>
<dependency id="Microsoft.AspNet.SignalR" version="2.0.0" /> <dependency id="Microsoft.AspNet.SignalR" version="2.0.0" />
<dependency id="Microsoft.AspNet.Web.Optimization" version="1.1.1" />
<dependency id="jquery" version="1.10.2" />
<dependency id="jquery.color" version="2.1.2" />
</dependencies> </dependencies>
</metadata> </metadata>
<files> <files>
<file src="..\SignalR.StockTicker\*.*" target="content\SignalR.Sample" /> <file src="..\SignalR.StockTicker\*.*" target="content\SignalR.Sample" />
<file src="readme.txt" target="" />
</files> </files>
</package> </package>
29 changes: 29 additions & 0 deletions SignalR.StockTicker/SignalR.StockTicker/Properties/readme.txt
@@ -0,0 +1,29 @@
Please see http://go.microsoft.com/fwlink/?LinkId=272764 for more information on using SignalR.

Running the SignalR sample in your ASP.NET application
------------------------------------------------------
To enable and run the SignalR sample in your application follow these steps:

1. Create an OWIN startup class in your application if you don't already have one.
NOTE: For more information on OWIN startup visit http://go.microsoft.com/fwlink/?LinkID=316888

2. Call the Microsoft.AspNet.SignalR.StockTicker.Startup.ConfigureSignalR method included
in the sample, e.g.:

using Microsoft.Owin;
using Owin;

[assembly: OwinStartup(typeof(MyWebApplication.Startup), "Configuration")]

namespace MyWebApplication
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
Microsoft.AspNet.SignalR.StockTicker.Startup.ConfigureSignalR(app);
}
}
}

3. Browse to ~/SignalR.StockTicker/StockTicker.html in two browsers and click the Open Market button.

0 comments on commit bdf3295

Please sign in to comment.