You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://dev.azure.com/FritzAndFriends/BlazorWebFormsComponents/_build/latest?definitionId=14)[](https://gitter.im/BlazorWebFormsComponents/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -14,6 +14,8 @@ This is not for everyone, not everyone needs to migrate their application. They
14
14
15
15
[Strategies for your migration and steps ahead](docs/Migration/README.md) are available as part of this repository.
16
16
17
+
Portions of the [original .NET Framework](https://github.com/microsoft/referencesource) are contributed to this project under their MIT license.
18
+
17
19
## Blazor Components for Controls
18
20
19
21
There are a significant number of controls in ASP.NET Web Forms, and we will focus on creating components in the following order:
@@ -47,3 +49,11 @@ There are a significant number of controls in ASP.NET Web Forms, and we will foc
47
49
- PasswordRecovery
48
50
49
51
We will NOT be converting any DataSource objects, Wizard components, skins or themes. Once this first collection of 23 controls is written, we can consider additional features like modern tag formatting.
52
+
53
+
## Compiling the project
54
+
55
+
There are three different types of .NET projects in this repository: .NET Framework, .NET Core, and .NET Standard. The sample projects are in the `/samples` folder, while the unit test project is next to the component library in the `/src` folder. From the root of the repository, you should be able to execute:
56
+
57
+
`dotnet restore` to restore packages
58
+
59
+
`dotnet run --project samples/AfterBlazorServerSide` to start the Blazor Server-Side samples
0 commit comments