diff --git a/DevApp/README.md b/DevApp/README.md index e47e94be..51750f9d 100644 --- a/DevApp/README.md +++ b/DevApp/README.md @@ -4,13 +4,12 @@ This repo contains the library's source code, full documentation, and live demo's source code. To run the repo: -- Get [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet-core/3.0). +- Get [.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0). - Get [Node.js](https://nodejs.org/en/). - On a VS Code terminal: ``` cd DevApp npm i -dotnet build -dotnet watch run +dotnet watch ``` diff --git a/DevApp/dist/LICENSE.md b/DevApp/dist/LICENSE.md index 57bf315c..f75ed78a 100644 --- a/DevApp/dist/LICENSE.md +++ b/DevApp/dist/LICENSE.md @@ -1,4 +1,4 @@ -Copyright 2015-2021 Dicky Suryadi +Copyright 2015-2022 Dicky Suryadi Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/DevApp/dist/README.md b/DevApp/dist/README.md index 16dcaf75..dc250bac 100644 --- a/DevApp/dist/README.md +++ b/DevApp/dist/README.md @@ -8,9 +8,11 @@ DotNetify is a free, open source project that lets you create real-time, reactiv ## What's New -- **v5.0: Scale-out, Vue 3.x support** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0). -- v4.1: Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1). -- v4.0: Typescript support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.0). +- **Minimal API** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.3). +- Scale-out, Vue 3.x support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0). +- Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1). + +**DotNetify.Postgres: [Real-time Web Updates From Your PostgreSQL Database](https://dsuryd.github.io/dotNetify/realtime-postgres/)** ## Features @@ -31,8 +33,6 @@ DotNetify is a free, open source project that lets you create real-time, reactiv Documentation and live demo can be found at [https://dotnetify.net](https://dotnetify.net). -[Usage with .NET Core 3.x](https://github.com/dsuryd/dotNetify/issues/159#issuecomment-547691063) - ## Code Examples - React example: [dotnetify-react-demo](https://github.com/dsuryd/dotnetify-react-demo). diff --git a/DevApp/dist/package.json b/DevApp/dist/package.json index a5ff0b6c..8fd56d69 100644 --- a/DevApp/dist/package.json +++ b/DevApp/dist/package.json @@ -1,6 +1,6 @@ { "name": "dotnetify", - "version": "5.2.2", + "version": "5.3.0", "description": "Simple, lightweight, yet powerful way to build realtime .NET web apps.", "main": "index.js", "types": "dist/typings/index.d.ts", @@ -42,4 +42,4 @@ "url": "https://github.com/dsuryd/dotNetify/issues" }, "homepage": "https://github.com/dsuryd/dotNetify" -} +} \ No newline at end of file diff --git a/DotNetify.sln b/DotNetify.sln index 4dc77e32..20010e0c 100644 --- a/DotNetify.sln +++ b/DotNetify.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30128.74 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetifyLib.Core", "DotNetifyLib.Core\DotNetifyLib.Core.csproj", "{BAD3F752-EC12-452C-A569-01F3F150290D}" EndProject @@ -13,6 +13,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevApp.ViewModels", "DevApp EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests", "UnitTests\UnitTests.csproj", "{8834522B-03B1-4C34-98CA-15B8022F1E08}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_License_Readme", "_License_Readme", "{11E35105-5C1D-4C10-8852-296DBEBD590D}" + ProjectSection(SolutionItems) = preProject + LICENSE.md = LICENSE.md + README.md = README.md + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Android = Debug|Android diff --git a/DotNetifyLib.Core/DotNetifyLib.Core.csproj b/DotNetifyLib.Core/DotNetifyLib.Core.csproj index 69895503..86d18eb3 100644 --- a/DotNetifyLib.Core/DotNetifyLib.Core.csproj +++ b/DotNetifyLib.Core/DotNetifyLib.Core.csproj @@ -8,7 +8,7 @@ false false false - 5.2.0 + 5.3.0 True Simple, lightweight, yet powerful way to build reactive, real-time web apps. Library for .NET Core. Dicky Suryadi diff --git a/DotNetifyLib.SignalR/DotNetifyLib.SignalR.csproj b/DotNetifyLib.SignalR/DotNetifyLib.SignalR.csproj index 4d7806e8..ca9544cb 100644 --- a/DotNetifyLib.SignalR/DotNetifyLib.SignalR.csproj +++ b/DotNetifyLib.SignalR/DotNetifyLib.SignalR.csproj @@ -9,7 +9,7 @@ false false false - 5.2.0 + 5.3.0 True Dicky Suryadi Simple, lightweight, yet powerful way to build reactive, real-time web apps. SignalR hub for ASP.NET Core. diff --git a/README.md b/README.md index 2772def5..dc250bac 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,9 @@ DotNetify is a free, open source project that lets you create real-time, reactiv ## What's New -- **v5.x: [Scale-out, Vue 3.x support](https://github.com/dsuryd/dotNetify/releases)**. -- v4.x: [Async view model](https://github.com/dsuryd/dotNetify/releases/tag/v4.1), [Typescript support](https://github.com/dsuryd/dotNetify/releases/tag/v4.0). +- **Minimal API** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.3). +- Scale-out, Vue 3.x support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0). +- Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1). **DotNetify.Postgres: [Real-time Web Updates From Your PostgreSQL Database](https://dsuryd.github.io/dotNetify/realtime-postgres/)**