Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
First Release!
  • Loading branch information
mythz committed Sep 1, 2017
1 parent 957a8d5 commit 8bbdc32
Show file tree
Hide file tree
Showing 37 changed files with 15,335 additions and 2 deletions.
Binary file added AWSSDK.Core.dll
Binary file not shown.
Binary file added AWSSDK.DynamoDBv2.dll
Binary file not shown.
Binary file added AWSSDK.S3.dll
Binary file not shown.
Binary file added AWSSDK.SQS.dll
Binary file not shown.
Binary file added Google.Protobuf.dll
Binary file not shown.
Binary file added Microsoft.Azure.Amqp.dll
Binary file not shown.
Binary file added Microsoft.Azure.Management.ServiceBus.dll
Binary file not shown.
Binary file added Microsoft.Azure.ServiceBus.dll
Binary file not shown.
Binary file added Microsoft.WindowsAzure.Storage.dll
Binary file not shown.
Binary file added MySql.Data.dll
Binary file not shown.
Binary file added Npgsql.dll
Binary file not shown.
7 changes: 7 additions & 0 deletions NuGet.Config
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
31 changes: 29 additions & 2 deletions README.md
@@ -1,2 +1,29 @@
# Web
Binaries for ServiceStack .NET Core 2.0 Web Apps
# Web App Releases

Releases for ServiceStack Web Apps.

## Install

If you have Linux, OSX or [Windows Subsystem for Linux](https://msdn.microsoft.com/en-us/commandline/wsl/install_guide),
from the directory where all your Web Apps are, run:

curl -L https://github.com/NetCoreWebApps/Web/archive/v0.1.tar.gz | tar xz && mv Web-0.1 web

Otherwise for Windows without access to linux tools, download:

- [Web v0.1.zip](https://github.com/NetCoreWebApps/Web/archive/v0.1.zip)

Then copy all contents into the `web` folder next to where all your Web Apps are.

## Usage

To run install [.NET Core 2.0 for your platform](https://www.microsoft.com/net/download/core) then for Linux, OSX and Windows, run:

dotnet web/app.dll ../<app name>/web.settings

Replacing `<app name>` with the app you wish to run.

## Web App Examples

See [templates.servicestack.net/docs/web-apps](http://templates.servicestack.net/docs/web-apps) for examples of different Web Apps and
`web.settings` configuration.
Binary file added ServiceStack.Api.OpenApi.dll
Binary file not shown.
Binary file added ServiceStack.Aws.dll
Binary file not shown.
Binary file added ServiceStack.Azure.dll
Binary file not shown.
Binary file added ServiceStack.Client.dll
Binary file not shown.
Binary file added ServiceStack.Common.dll
Binary file not shown.
Binary file added ServiceStack.Interfaces.dll
Binary file not shown.
Binary file added ServiceStack.OrmLite.MySql.dll
Binary file not shown.
Binary file added ServiceStack.OrmLite.PostgreSQL.dll
Binary file not shown.
Binary file added ServiceStack.OrmLite.SqlServer.dll
Binary file not shown.
Binary file added ServiceStack.OrmLite.Sqlite.dll
Binary file not shown.
Binary file added ServiceStack.OrmLite.dll
Binary file not shown.
Binary file added ServiceStack.Redis.dll
Binary file not shown.
Binary file added ServiceStack.Server.dll
Binary file not shown.
Binary file added ServiceStack.Text.dll
Binary file not shown.
Binary file added ServiceStack.dll
Binary file not shown.
Binary file added System.ServiceModel.Primitives.dll
Binary file not shown.
6,469 changes: 6,469 additions & 0 deletions app.deps.json

Large diffs are not rendered by default.

Binary file added app.dll
Binary file not shown.
Binary file added app.pdb
Binary file not shown.
12 changes: 12 additions & 0 deletions app.runtimeconfig.json
@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "netcoreapp2.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.0.0"
},
"configProperties": {
"System.GC.Server": true
}
}
}

0 comments on commit 8bbdc32

Please sign in to comment.