I'm trying to convert a C# project to JavaScript, as I'm not experienced in C#, and would prefer JavaScript.
For this I'm testing bridge for the convertion, and then later I can optimize the output/compiled-JavaScript.
When running
What to do?
For this I'm testing bridge for the convertion, and then later I can optimize the output/compiled-JavaScript.
When running
bridge build
I'm getting the following error:Building demo1 Bridge.NET Compiler error: exception level: 0 - C# Compilation Failed
(183,13): CS0246: The type or namespace name 'HMACSHA1' could not be found (are you missing a using directive or an assembly reference?)
(183,33): CS0246: The type or namespace name 'HMACSHA1' could not be found (are you missing a using directive or an assembly reference?)
(213,42): CS0234: The type or namespace name 'NumberStyles' does not exist in the namespace 'System.Globalization' (are you missing an assembly reference?)
I've tried running bridge add package xyz
but without any luck.What to do?
Comment