Skip to content

Commit b00f7c5

Browse files
committed
refactor: restructure WebExpress
1 parent 62d4b53 commit b00f7c5

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# WebExpress
44
`WebExpress` is a lightweight web server optimized for use in low-performance environments (e.g. Rasperry PI). By providing
@@ -12,18 +12,18 @@ language (e.g. C#). Some advantages of `WebExpress` are:
1212

1313
The `WebExpress` family includes the following projects:
1414

15-
- [WebExpress](https://github.com/ReneSchwarzer/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
16-
- [WebExpress.WebCore](https://github.com/ReneSchwarzer/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
17-
- [WebExpress.WebUI](https://github.com/ReneSchwarzer/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
18-
- [WebExpress.WebIndex](https://github.com/ReneSchwarzer/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
19-
- [WebExpress.WebApp](https://github.com/ReneSchwarzer/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
15+
- [WebExpress](https://github.com/webexpress-framework/WebExpress#readme) - The web server for `WebExpress` applications and the documentation.
16+
- [WebExpress.WebCore](https://github.com/webexpress-framework/WebExpress.WebCore#readme) - The core for `WebExpress` applications.
17+
- [WebExpress.WebUI](https://github.com/webexpress-framework/WebExpress.WebUI#readme) - Common templates and controls for `WebExpress` applications.
18+
- [WebExpress.WebIndex](https://github.com/webexpress-framework/WebExpress.WebIndex#readme) - Reverse index for `WebExpress` applications.
19+
- [WebExpress.WebApp](https://github.com/webexpress-framework/WebExpress.WebApp#readme) - Business application template for `WebExpress` applications.
2020

2121
`WebExpress` is part of the `WebExpress` family. The project provides a web server for `WebExpress` applications.
2222

2323
To get started with `WebExpress`, use the following links.
2424

25-
- [installation guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/installation_guide.md)
26-
- [development guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/development_guide.md)
25+
- [installation guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/installation_guide.md)
26+
- [development guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/development_guide.md)
2727

2828
# Tutorial
2929
Tutorial of a simple Hello World application for WebExpress. Two projects are created for the tutorial. The `HelloWorld` project contains the functionality and all resources to run as a WebExpress application. The project `HelloWorld.App` is a helper project that is needed for debugging, testing and packaging creation.
@@ -221,7 +221,7 @@ Now you have created a new solution and are ready to proceed with the next steps
221221
app.label=Hello World
222222
app.description=Tutorial of a simple hello world WebExpress application.
223223
app.license.label=License MIT
224-
app.license.uri=https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
224+
app.license.uri=https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
225225
app.version.label={0} version {1} created with {2} version {3}.
226226
227227
homepage.label=Home page
@@ -236,7 +236,7 @@ Now you have created a new solution and are ready to proceed with the next steps
236236
```
237237

238238
## Add the Assets
239-
- Add assets to the `HelloWorld` project. You can get the assets for this tutorial here: https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld/tree/main/src/HelloWorld/Assets/img
239+
- Add assets to the `HelloWorld` project. You can get the assets for this tutorial here: https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld/tree/main/src/HelloWorld/Assets/img
240240
- Add the assets in the `HelloWorld.csproj` project file.
241241
```xml
242242
<ItemGroup>

src/HelloWorld/Internationalization/de

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app.name=HelloWorld
66
app.label=Hello Welt
77
app.description=Tutorial einer einfachen Hallo Welt WebExpress-Anwendudng.
88
app.license.label=Lizenz MIT
9-
app.license.uri=https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
9+
app.license.uri=https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
1010
app.version.label={0} Version {1} erstellt mit {2} Version {3}.
1111

1212
homepage.label=Startseite

src/HelloWorld/Internationalization/en

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app.name=HelloWorld
66
app.label=Hello World
77
app.description=Tutorial of a simple hello world WebExpress application.
88
app.license.label=License MIT
9-
app.license.uri=https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
9+
app.license.uri=https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld/blob/main/LICENSE
1010
app.version.label={0} version {1} created with {2} version {3}.
1111

1212
homepage.label=Home page

src/HelloWorld/WebExpress.Tutorial.HelloWorld.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version>0.0.9.0</Version>
66
<AssemblyVersion>0.0.9.0</AssemblyVersion>
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8-
<RepositoryUrl>https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld.git</RepositoryUrl>
8+
<RepositoryUrl>https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld.git</RepositoryUrl>
99
<EnableDynamicLoading>true</EnableDynamicLoading>
1010
</PropertyGroup>
1111

0 commit comments

Comments
 (0)