CSharpToTypescript2 1.1.8
Install-Package CSharpToTypescript2 -Version 1.1.8
dotnet add package CSharpToTypescript2 --version 1.1.8
<PackageReference Include="CSharpToTypescript2" Version="1.1.8" />
paket add CSharpToTypescript2 --version 1.1.8
#r "nuget: CSharpToTypescript2, 1.1.8"
// Install CSharpToTypescript2 as a Cake Addin
#addin nuget:?package=CSharpToTypescript2&version=1.1.8
// Install CSharpToTypescript2 as a Cake Tool
#tool nuget:?package=CSharpToTypescript2&version=1.1.8
Transpiles dto.cs files into dto.ts files. Including simple calcualtions.
It is based on Roslyn. So, potentially can transpile code of any complexity but currently intended (and tested) only for simple data transfer classes and simple calculations.
It is compatible with dotnet cli and dotnet watch in particular.
As input takes:
1. List of input folders with cs files (your dtos)
2. Output folder
and some other things. See example configuration file.
While the tool is the best of C# to Typescript generators I have seen (TypeLite, Typewriter, etc) it does not produce self sufficient set of dto files. The initial setup is more complex than of mentioned tools in exchange of much greater flexebility.
I will try to provide enough information for it to use but it may be not sufficient. In such a case please consult the working example with the transpiler integrated here: https://github.com/alehro/AspNetCoreSpa
Since the transpiler by itself doesn't have public repo please feel free to post its issues to the demo SPA project: https://github.com/alehro/AspNetCoreSpa/issues
The setup documentation is currently attached to version 1.1.2 here: CSharpToTypescript2/1.1.2
Or the same: https://github.com/alehro/AspNetCoreSpa/blob/master/README_Cs2Ts.md
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
-
.NETCoreApp 2.2
- Microsoft.CodeAnalysis.CSharp (>= 3.3.1)
- Microsoft.CodeAnalysis.CSharp.Workspaces (>= 3.3.1)
- YamlDotNet (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Dependency on enum in different file was not resolving - fixed