Skip to content

This repository contains the source of CSHTML5. More information is available at: www.cshtml5.com - Read README.md for the instructions on how to build the source code and how to test it.

License

cshtml5/CSHTML5

 
 

Repository files navigation

This repository contains the source code of the 2 following products, which share most of their code:

  • OpenSilver (www.opensilver.net) → It compiles C#/XAML/.NET to WebAssembly/HTML/CSS (Free, Open Source, MIT Licensed)
  • CSHTML5 (www.cshtml5.com) → It compiles C#/XAML/.NET to JavaScript/HTML/CSS (Dual Licensed)

The main branches are:

  • develop: this branch is where day to day development occurs
  • master: this branch corresponds to the version of the packages that are on Nuget.org

How to download the software and get started?

Read the "Getting Started" page of the OpenSilver documentation for a step-by-step tutorial.

Basically, you should download the .VSIX file (the extension for Microsoft Visual Studio) which installs the Project Templates:

Then, launch Visual Studio, click "Create a new project", and choose one of the installed templates.

After creating the project, you may then want to update the NuGet package to reference the very latest version (note: in the NuGet Package Manager, be sure to check the option "include pre-releases", otherwise you may not see the latest package version).

How to build the source code in this repository?

  1. Update Visual Studio: Make sure you are using the very latest version of Visual Studio 2019. To check for updates, please launch the Visual Studio Installer from your Start Menu.

  2. Clone the repo: Clone this repository locally or download it as a ZIP archive and extract it on your machine

  3. Run the restoration .BAT: Execute the .BAT file "restore-packages-opensilver.bat" (or "restore-packages-cshtml5.bat" depending on whether you are using OpenSilver or CSHTML5)

  4. (Optional) Update OpenSilver compiler assemblies: OpenSilver has a dependency on an older version of OpenSilver to convert xaml files to C#, which is retrieved by the restore batch file (from 3.). Due to continous updates, this restored version can sometimes have outdated OpenSilver compiler assemblies which might cause unexpected compilation or runtime errors. To fix this, you should rebuild the Compiler.OpenSilver project and replace the assemblies "OpenSilver.Compiler.dll", "OpenSilver.Compiler.Common.dll" in the "src/packages/OpenSilver./tools/" (or "src/packages/OpenSilver.UWPCompatible./tools/" if you are working with the UWP configuration) folder.

  5. Delete bin/obj: Make sure to remove the "bin" and "obj" folders, if any. They can cause issues when building using the ".bat" files.

  6. Launch Developer Command Prompt: Open the "Developer Command Prompt for VS 2019" (or newer) from your Start Menu

  7. Run the compilation .BAT: Launch the file "build-nuget-package-OpenSilver-private.bat" (or "build-nuget-package-CSHTML5-private.bat" depending on whether you are using OpenSilver or CSHTML5) and enter today's date or any other unique identifier to use for the version number (eg. 2021-10-12)

For convenience, instead of building the whole packages as instructed above, you can alternatively build only the Runtime DLL, To do so, open the solution file "OpenSilver.sln" or "CSHTML5.sln" (depending on whether you are using OpenSilver or CSHTML5), choose the appropriate "Solution Configuration" (see below)

Note: while rarely needed, there is also a .BAT file for building the Simulator package

What are those solution configurations?

    OpenSilver configurations:

  • SL: Uses the Silverlight-like dialect of XAML.
  • UWP: Uses the UWP-like dialect of XAML.

    CSHTML5 configurations:

  • Debug: Uses the UWP-like dialect of XAML.
  • Migration: Uses the Silverlight-like dialect of XAML.

Note: the legacy "WorkInProgress" configurations have been removed as the unimplemented members have been merged into the current configurations.

What if I get a compilation error with the code in this repository?

If you get a compilation error, it may be that a Visual Studio workload needs to be installed. To find out, please open the solution "OpenSilver.sln" or "CSHTML5.sln" and attempt to compile it with the Visual Studio IDE (2019 or newer).

If you are compiling using the Command Prompt, please double-check that you are using the "Developer Command Prompt", not the standard Command Prompt, and that the current directory is set to the "build" directory of this repository, because some paths in the .BAT files may be relative to the current directory.

If you still encounter any issues, please contact:

About

This repository contains the source of CSHTML5. More information is available at: www.cshtml5.com - Read README.md for the instructions on how to build the source code and how to test it.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 97.2%
  • JavaScript 1.9%
  • Rich Text Format 0.3%
  • Visual Basic .NET 0.2%
  • HTML 0.1%
  • Batchfile 0.1%
  • Other 0.2%