Script# is a free tool that generates JavaScript by compiling C# source code.

learn more… | top users | synonyms (1)

0
votes
1answer
85 views

TypeScript vs Script# - Serverside access?

Trying to decide between the two for an asp.net mvc single-page application. One thing I can't seem to find out about TypeScript is if can I reference a TypeScript class server side, for example in a ...
1
vote
1answer
25 views

ScriptSharp compilation with NAnt script

We've recently added the excellent script# to our project. Currently we have it so that our VS build simply copies the compiled .js file from the output directory to the scripts directory of our web ...
-1
votes
1answer
152 views

Asm.js support in Script#

Would it be practical to add asm.js support to Script#? Where would effort be required?
0
votes
1answer
112 views

ScriptSharp Class Methods not found

ScriptSharp's produced Javascript can't find my class method "LoadContent()". Where am I going wrong with this? It seems to be putting the method into a prototype, but I'm not sure this is what I ...
1
vote
1answer
105 views

What is the recommended strategy for page specific scripts?

We are in the early stages of introducing Script# to our project and so far we like what we see. However, I am a little confused as to the best strategy for adding scripts to individual pages/views. ...
0
votes
1answer
75 views

Script# Wrapper for Prototypal Inheritance jQuery Plugin

I would like to create a Script# wrapper for existing jQuery plugin. The jQuery plugin implements the "Prototypal Inheritance With The DOM-To-Object Bridge Pattern" that can be found on this link // ...
1
vote
1answer
125 views

When will ScriptSharp 0.8 be the official build?

We are looking at adopting ScriptSharp into our project. We don't want to take on 0.7.5 though if 0.8 is about to become the official version. Can you give some indication on the likely timeline, ...
1
vote
1answer
321 views

ScriptSharp beginner set up

I've been reading for hours about Script#, and after watching the author's speech at MIX11 decided to give it a try. To be honest, I can't say it's a been pleasure. 1) First of all, when I create a ...
0
votes
1answer
112 views

Using Script# in an old project

I have an old project (written by someone else) that makes use of Script#. I've never used this tool before, so this question might seem rudimentary to some. Anyway, I tried to open the solution, ...
0
votes
1answer
103 views

Script# generated javascript file class names are seperated using dollar sign instead of dot '.'

I am using a custom build of Script# which I have downloaded from the Script# website and the output javascript files being generated is having the following example of code: // ...
1
vote
1answer
75 views

Script# and WF Xaml files in the same project, can't compile

We have a VS 2010 MVC3 project, targetting .NET 4.0 (machine has .NET 4.5), the project contains a WF Xaml file and related classes. We needed to access jQueryValidation on the serverside, so we added ...
1
vote
2answers
825 views

TypeScript VS ScriptSharp – What’s the tradeoff’s?

I am about to build a large scale Javascript application and I want to build it in more structured way. Jquery is will use for css effects. The server side will be in c#. Can you share your knowledge ...
0
votes
1answer
55 views

Importing an initialize function

I am trying to create the import project library for Office (http://msdn.microsoft.com/en-us/library/fp142185.aspx) in Script# for some apps that I want to create. One of the functions wants the ...
0
votes
1answer
129 views

Script# 0.8 changes in generated code

I've built the latest script# source from Github and started using it in a project. It looks like the way code is generated has changed. How do I make the compiler go back to the old way of ...
0
votes
2answers
528 views

Targeting HTML5, Haxe NME vs Script#?

I would like to know, which is the wise decision to take when choosing Haxe NME or Script# to work with HTML5? I know there benefits of Haxe over AS3, but what about Script#? whats the limitations vs ...
0
votes
1answer
130 views

ScriptSharp indexer with generics

I have a class that needs a generic indexer, however script# doesn't compile this. [Imported] public class SomeCollection<T> { [IntrinsicProperty] public T this[int index] { ...
0
votes
1answer
96 views

Script sharp # with web workers

How can I use web workers from Script sharp? Web workers need a source file, that will not compile in Script sharp because it is not a class, it's just code. Ideas? Nikhilk?
0
votes
1answer
79 views

Upgrade ScriptSharp from 0.7.4 to 0.7.6 throws “getField is not defined” errors

I just compiled the master branch of ScriptSharp on my machine and upgraded the dlls (mscorlib, Script.jQuery, Script.jQuery.History, Script.Web) and javascript (mscorlib.js) files of my project. I ...
0
votes
1answer
83 views

Multiple inheritance in Script#

I'm trying to make a Script# import library to wrap (parts of) the dojo toolkit--especially the dijit widgets. Unfortunately, dojo uses multiple inheritance, and C# doesn't support that (except for ...
2
votes
2answers
132 views

Post build events in Script#

I'm trying to create post build events to copy the final .js and .debug.js files for my script# projects into the proper directories. I can't use the regular output folder, since I have more than one ...
0
votes
1answer
59 views

How can one attach to errorPlacement as a callback function in Script# using the Script# validate library?

There is no such property errorPlacement within the class jQueryApi.Validation.jQueryValidatorOptions and the class is sealed so I can't extend. Any suggestions? One can find the validation options ...
0
votes
1answer
145 views

Using wheelDelta in onmousewheel event via Script#

I use mouse events in Script# with ElementEvent argument. But I can not find WheelDelta property in this argument for onmousewheel event. How is it possible to use this property?
0
votes
1answer
161 views

How do I overload methods in scriptsharp now that AlternateSignature is gone?

In the past, I've used AlternateSignature to overload methods, but in the current dev version (0.8) how do you overload methods? Is it possible to overload constructors? I'm probably missing ...
2
votes
1answer
100 views

Where is System.GetField?

I have created a ScriptSharp project in Visual Studio Web Express 2012 and version 0.7.6 of ScriptSharp was assumed. I have some classes that uses Type.SetField and Type.GetField but I am receiveing ...
1
vote
1answer
158 views

Pass value to a key in html from a script file

I have an html file where I need to render the app id that will come from a script sharp (.js.cs) file. Do you know how I can set this up? <script type="text/javascript" data-app-id="value" ...
3
votes
1answer
878 views

Equivalent of setTimeout and setInterval function in Script#

How to use setTimeout() and setInterval method in C# with Script#? For example, how to write: setInterval(function(){alert("Hello")},3000); ?
2
votes
2answers
203 views

Read XML string from ScriptSharp

I am trying to convert a XML string to a XML object in order to traverse its attributes and child nodes. Something like this in regular C#: ...
1
vote
1answer
81 views

How to build nuget package from Script# projet

I need to build nuget package for Script# project 1) The package must include js files generated by Script# 2) It would be great to have auto increment for package version 3) It must run on build ...
3
votes
2answers
281 views

Using Script# code with string operations in standart C# .NET project

I added reference of Script# to my standart console application. After that I was trying to invoke some method from there but was getting the following error: I suppose it happened on the following ...
8
votes
2answers
459 views

Offsetting polygons in Javascript

EDIT5: Finally got Angus Johnson's Clipper library implemented in Javascript and selected Sourceforge for host. LIVE DEMO: http://jsclipper.sourceforge.net/5.0.2.1/main_demo.html Download source: ...
1
vote
1answer
242 views

How do I access JavaScript this from ScriptSharp?

I'm trying to do the following. var handler = e => { handle(); item.Unbind("event", this); } item.Bind("event", handler); In JavaScript this would properly work, but ScriptSharp replaces ...
2
votes
1answer
168 views

How to write a function in script# to be called with any object as this, not just with the instance of the class in which it is defined?

I am writing javascript in script#. I would want to write a function that looks like function myFunc() { if(this.value > 100) return true; else return false; } This ...
0
votes
1answer
127 views

How to select the effect for the toggle function

In Javascript, I can do the following to select the effect of the toggle function: $("#myDiv").toggle("blind", null, "fast"); How can I do the same thing in Script#?
-1
votes
1answer
333 views

ScriptSharp: Converting class into JavaScript object on selected metadata

Imagine you have two ScriptSharp classes like the following: public class Person { public int Weight; public Name Name; public int Height; } public class Name { public string ...
0
votes
1answer
355 views

Convert System.Drawing.Graphics to html5 canvas methods via Script# [closed]

Is it possible to convert standart System.Drawing.Graphics methods such as DrawImage, DrawPath and other to html5 canvas methods such as context.drawImage and context.beginPath(); ... ...
0
votes
1answer
200 views

Controlling the function names of C# Properties

I have this code in C# (as an ImportLibrary): [IgnoreNamespace] [Imported] public class MyClass { public object Value { get { return null; } set { } } } and I then ...
1
vote
1answer
431 views

Are there newer manuals / documentation / help files for script#?

While searching the internet for a while, looking for some kind of comprehensive reference material for Script#, I've only been able to find a manual from 2007: ...
2
votes
1answer
471 views

Use Script# to compile code (stand-alone)

I'm trying to compile small fragments of C# into JavaScript using the Script# compiler. But I don't get anything in return, GetStream() in my MemoryStreamSource is not even being called, so I must be ...
1
vote
1answer
212 views

Best option to add generated JS file to the Web project

As far as I know 'DeploymentPath' attribute from the *.csproj file is now obsolete, so what is the best way to add a file to the Web project like ASP.NET MVC? Would a Post-Build step be sufficient? I ...
0
votes
2answers
612 views

Is Script# working with Visual Studio 2012?

I googled around a bit to find an answer but without success. I am working on the framework for a new project which I develop using Visual Studio 2012 (currently the RC). I am so excited by Script# ...
0
votes
1answer
224 views

Adding compilation behavior to ScriptSharp(Script#)

I need to change the script# compiler's code to add an Attribute to use on classes to generate javascript types just like extjs new class system after some crawlings on the source from github i found ...
1
vote
1answer
261 views

Sharing code between C# and Script#: Script# Date class compatibility with C# DateTime

I have a lot of shared business logic code between C# projects and Script#. Since the breaking change in script# core library (when DateTime class became Date) things gone south. Has anyone come up ...
1
vote
1answer
168 views

How to get mouse position in Script#

How do I get the mouse x/y position relative to an element - a canvas element in this case - using Script#, preferrably without using onmousemove events? I cannot seem to find anything in there with ...
0
votes
1answer
640 views

Javascript countdown and timezone and daylight saving time issues

Our team are having big issues with the JQuery countdown and we really need some help. Initially, we had some ScriptSharp code that does this JQueryCountdownOptions opts = new ...
0
votes
1answer
224 views

Document.Ready in Script#

What is the Script# syntax for getting the following output javascript code: $(document).ready(function() { //..my code }); I have tried jQuery.OnDocumentReady but that has two problems: (1) It ...
0
votes
2answers
198 views

Use Ember js on script sharp

I want to write the following line with script sharp: App.SP = SP = Ember.Object.extend({ init: function (lineV, lineH, resourceMethod){... Is this possible? how can I do it?
0
votes
1answer
241 views

Script# fails with 'Type' is Undefined

my first attempt at using Script# is not going well. I have an mvc 4 project created from the Internet template and a script# library in my solution. In the script# library I have a class that ...
1
vote
1answer
257 views

Is it possible to write code in C# and use Script# to share it between .NET assemblies and JavaScript?

I'm investigating using Script# to share some of our C# business logic with the client-side by compiling it to JavaScript. Question is, is it possible to reference a Script# class library from ...
0
votes
1answer
63 views

Why am I getting a MissingMethodException when using a Script# assembly from another .NET assembly?

I'm testing Script# right now and created a simple Script# class library with a single class. The class has a method that does something like this: public static string[] SplitName(string name) { ...
1
vote
1answer
282 views

ScriptSharp - post data as name-value collection

I am trying to post data with Script# using jQuery.AjaxRequest method: jQueryAjaxOptions options = new jQueryAjaxOptions(); options.Url = "/Server/Login.ashx"; options.Data = new ...

1 2 3 4