AutoPoint 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global AutoPoint --version 1.0.3
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local AutoPoint --version 1.0.3
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=AutoPoint&version=1.0.3
                    
nuke :add-package AutoPoint --version 1.0.3
                    

<p align="center"> <img src="https://github.com/user-attachments/assets/f516f36e-e9e1-4c35-bea9-4b5b9f671e94" width="200" height="200" /> </p>

Build and Publish Nuget Nuget GitHub last commit (branch) GitHub commit activity (branch) Static Badge Static Badge Static Badge

AutoPoint

This is a project to make it easier to syncronize API endpoints across multiple languages. Say you have a API and a frontend in two different languages, making sure that the frontend is pointing to the correct endpoints, especially when renaming things, can be quite difficult. This project tries to make it more static, by generating a static reference file in each language based on an API definition.

As an example, take the definition:

{
  "Includes": [],
  "Branch": {
    "name": "simple",
    "Nodes": [
    ]
  }
}

If you then write into a terminal the following

autopoint -t api.json -p CSharpProducer

It will output a generated C# file with the static names as follows:

// This document is auto generated!
public static class simple {
	public const string Name = "simple";
}

The currently available producers are:

  • CSharpProducer, to make C# code
  • JavaScriptProducer, to make JS code
  • TypeScriptProducer, to make TS code

This package is available as a tool on the NuGet Package Manager, so you can install it by writing dotnet tool install AutoPoint in a terminal.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
1.1.0 232 12/4/2025
1.0.4 194 1/22/2025
1.0.3 171 1/21/2025
1.0.2 188 10/12/2024
1.0.1 221 8/22/2024
1.0.0 219 8/22/2024