hxcs icon indicating copy to clipboard operation
hxcs copied to clipboard

Haxe C# support library. Build scripts and support code.

Results 15 hxcs issues
Sort by recently updated
recently updated
newest added

Following the tutorial on the website to create a simple helloworld, I failed, and after looking through the related issues and PRs I finally got it transpiled, but still the...

Hello, guys. I have been working for a while to implement support for dotnet core into the hxcs compiler. So, i have made this pull request to know if you...

https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient?view=net-5.0 I am currently trying to use the http client. Unfortunately it is not available in the haxe context. Also as alternative: cs.system.net.WebRequest WebHeaderCollection is not avaible on net 50...

if you switch to -D net-ver=50 with only a main function you get an error: ``` C:\HaxeToolkit\haxe\std/cs/Pointer.hx:46: characters 8-75 : You need to define 'unsafe' to be able to use...

I hope modify csproj that created by "writeProject()". then call [msbuild](url) `CSharpCompiler::compile` code may like ``` this.data = data; preProcess(); if (!FileSystem.exists("bin")) FileSystem.createDirectory("bin"); findCompiler(); writeProject(); if(**manualCompile**) { return; } ```...

We have business logic on Haxe. Now we try to start new platform - Universal Windows platform. But generated C# contains errors 1>uwp\src\Date.cs(48,55,48,78): error CS0234: The type or namespace name...

I cannot reproduce this locally: ``` > haxe -cs bin/cs/ -lib travix -lib mithril tests.hxml haxelib run hxcs hxcs_build.txt --haxe-version 3407 --feature-level 1 Note: dmcs is deprecated, please use mcs...

after targeting C#, all fields initializations are moved into class's constuctor, and puts after calling constructor of super class. In most of all cases it;s fine, but here is onle...

Why are assemblies currently not compiled with msbuild/xbuild? I've also found that assemblies compiled with csc is different from the one generated with msbuild for some reason. It looks like...

These two small changes allow the user to control which csc compiler gets used by hxcs. 1. Using `-D csharp-compiler=C:/path/to/csc` now works on windows. Before, this resulted in hxcs looking...