forked from SignalR/SignalR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made changes as per code review feedback
- Loading branch information
Showing
23 changed files
with
134 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
samples/Microsoft.AspNet.SignalR.Client.Android.Samples/Properties/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="Microsoft.AspNet.SignalR.Client.Android.Samples"> | ||
<uses-sdk /> | ||
<application android:label="Microsoft.AspNet.SignalR.Client.Android.Samples"> | ||
</application> | ||
<application android:label="Microsoft.AspNet.SignalR.Client.Android.Samples"></application> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
</manifest> |
20 changes: 10 additions & 10 deletions
20
samples/Microsoft.AspNet.SignalR.Client.Android.Samples/Resources/Resource.designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ASP.NET SignalR | ||
Async signaling library for .NET to help build real-time, multi-user interactive web applications | ||
|
||
## What can it be used for? | ||
Pushing data from the server to the client (not just browser clients) has always been a tough problem. SignalR makes | ||
it dead easy and handles all the heavy lifting for you. | ||
|
||
## Documentation | ||
See the [documentation](https://github.com/SignalR/SignalR/wiki) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# ASP.NET SignalR | ||
Async signaling library for .NET to help build real-time, multi-user interactive web applications | ||
|
||
## What can it be used for? | ||
Pushing data from the server to the client (not just browser clients) has always been a tough problem. SignalR makes | ||
it dead easy and handles all the heavy lifting for you. | ||
|
||
## Documentation | ||
See the [documentation](https://github.com/SignalR/SignalR/wiki) | ||
|
||
## How to install and use the SignalR Xamarin component? | ||
|
||
Right click on the Components folder in your project and click on Edit Components. Search for the SignalR component and install it. | ||
|
||
## Get a sample on NuGet, straight into your app! | ||
|
||
Install-Package Microsoft.AspNet.SignalR.Sample | ||
|
||
## LICENSE | ||
[Apache 2.0 License](https://github.com/SignalR/SignalR/blob/master/LICENSE.md) | ||
|
||
## Building the source | ||
|
||
``` | ||
git clone [email protected]:SignalR/SignalR.git (or https if you use https) | ||
``` | ||
|
||
### Windows | ||
After cloning the repository, run `build.cmd`. | ||
|
||
If the ASP.NET samples csproj won't load when opening the solution in Visual Studio then | ||
download [Web Platform Installer](http://www.microsoft.com/web/downloads/platform.aspx) and install IIS Express. | ||
|
||
### Mono | ||
After cloning the repository, run `make`. | ||
|
||
**NOTE:** Run `make tests` to run the unit tests. After running them it'll probably hang. If it does hang | ||
use `Ctrl+C` to break out (We're still working on this). | ||
|
||
Open Microsoft.AspNet.SignalR.Mono.sln to do development. | ||
|
||
## Continuous Integration | ||
|
||
We have a CI Server (http://ci.signalr.net/) | ||
|
||
We generate packages from our ci builds to this feed http://www.myget.org/F/signalr/. If you want to live on the bleeding | ||
edge and don't want to clone the source. You can try things out this way. | ||
|
||
## Questions? | ||
The SignalR team hangs out in the [signalr](http://jabbr.net/#/rooms/signalr) room at on [JabbR](http://jabbr.net/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); you | ||
may not use this file except in compliance with the License. You may | ||
obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
implied. See the License for the specific language governing permissions | ||
and limitations under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.