Skip to content

Commit b2d75d7

Browse files
committed
Update documentation.
1 parent 24923f9 commit b2d75d7

2 files changed

Lines changed: 18 additions & 11 deletions

File tree

src/SSR.Net/Docs/README.MD

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
SSR.Net
22
============
33

4-
SSR.Net makes it possible to Server-Side Render components in React 17, React 18 and Vue 3. It is open for extension, and can support other frameworks.
4+
SSR.Net facilitates Server-Side Rendering (SSR) for React 17, React 18, and Vue 3 using JavaScriptEngineSwitcher.Core.
55

6-
It is based on many of the ideas in ReactJS.Net: https://github.com/reactjs/React.NET
6+
It is open for extension to support other JavaScript frameworks.
77

8-
See examples of how to use the package here: https://github.com/knowit/SSR.Net
8+
It is written in .Net Standard 2.0 to support everything from .Net Framework to .Net 8.
9+
10+
Performance is optimized through proactive JavaScript engine preparation, engine reuse and smart scheduling.
11+
12+
See examples and read more in the documentation on GitHub: https://github.com/knowit/SSR.Net
13+
14+
It is based on many of the ideas in ReactJS.Net: https://github.com/reactjs/React.NET

src/SSR.Net/SSR.Net.csproj

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<PackageId>SSR.Net</PackageId>
5-
<Version>1.0.0</Version>
5+
<Version>1.0.3</Version>
66
<Authors>Øivind Hagen</Authors>
77
<Company>Knowit AS</Company>
88
<Product>SSR.Net</Product>
99
<Title>SSR.Net</Title>
10-
<PackageIcon>Docs/Icon.png</PackageIcon>
10+
<PackageIcon>Docs/Icon.png</PackageIcon>
1111
<PackageLicenseFile>content/Docs/LICENSE</PackageLicenseFile>
1212
<PackageReadmeFile>content/Docs/README.MD</PackageReadmeFile>
1313
<PackageProjectUrl>https://github.com/knowit/SSR.Net</PackageProjectUrl>
1414
<RepositoryUrl>https://github.com/knowit/SSR.Net</RepositoryUrl>
1515
<PackageDescription>
16-
This package facilitates Server-Side Rendering (SSR) for React 17, React 18, and Vue 3 using
17-
JavaScriptEngineSwitcher.Core. It's compatible with .NET Standard 2.0, making it usable across
18-
various .NET environments from .NET Framework to .NET 8. Performance is optimized through proactive
19-
JavaScript engine preparation. Explore further details in the GitHub documentation.
16+
SSR.Net facilitates Server-Side Rendering (SSR) for React 17, React 18, and Vue 3 using JavaScriptEngineSwitcher.Core.
17+
It is open for extension to support other JavaScript frameworks.
18+
It is written in .Net Standard 2.0 to support everything from .Net Framework to .Net 8.
19+
Performance is optimized through proactive JavaScript engine preparation, engine reuse and smart scheduling.
20+
See examples and read more in the documentation on GitHub: https://github.com/knowit/SSR.Net
21+
It is based on many of the ideas in ReactJS.Net: https://github.com/reactjs/React.NET
2022
</PackageDescription>
2123
<PackageTags>ssr; react; reactjs; vue; vuejs; server-side rendering; javascriptengineswitcher; nodejs; javascript; js;</PackageTags>
2224
</PropertyGroup>
@@ -44,7 +46,6 @@
4446
</ItemGroup>
4547

4648
<ItemGroup>
47-
<None Include="Docs\Icon.png" Pack="true" PackagePath="Docs\Icon.png"/>
49+
<None Include="Docs\Icon.png" Pack="true" PackagePath="Docs\Icon.png" />
4850
</ItemGroup>
4951
</Project>
50-

0 commit comments

Comments
 (0)