Migrate repository from GitHub to Gitea

- Update remote URL to git.marketally.com/ironservices
- Update README.md with new clone URL and links
- Update IronGo.csproj with new repository URLs
- Switch SourceLink from GitHub to Gitea package
This commit is contained in:
2025-12-28 09:13:43 +00:00
parent 19680e0c7f
commit c8026a9cdc
2 changed files with 7 additions and 9 deletions

View File

@@ -1,8 +1,7 @@
# IronGo # IronGo
[![NuGet](https://img.shields.io/nuget/v/IronGo.svg)](https://www.nuget.org/packages/IronGo/) [![NuGet](https://img.shields.io/nuget/v/IronGo.svg)](https://www.nuget.org/packages/IronGo/)
[![License](https://img.shields.io/github/license/marketally/IronGo.svg)](LICENSE) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Build Status](https://img.shields.io/github/actions/workflow/status/marketally/IronGo/ci.yml)](https://github.com/marketally/IronGo/actions)
IronGo is a native .NET library for parsing Go source code. It provides a complete Abstract Syntax Tree (AST) representation of Go programs with comprehensive support for Go 1.21+ syntax, including generics. IronGo is a native .NET library for parsing Go source code. It provides a complete Abstract Syntax Tree (AST) representation of Go programs with comprehensive support for Go 1.21+ syntax, including generics.
@@ -287,7 +286,7 @@ The analyzer detects:
```bash ```bash
# Clone the repository # Clone the repository
git clone https://github.com/marketally/IronGo.git git clone https://git.marketally.com/ironservices/IronGo.git
cd IronGo cd IronGo
# Build the solution # Build the solution
@@ -316,9 +315,8 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
## Support ## Support
- **Documentation**: See the [Wiki](https://github.com/marketally/IronGo/wiki) - **Documentation**: See the [Wiki](https://git.marketally.com/ironservices/IronGo/wiki)
- **Issues**: Report bugs on [GitHub Issues](https://github.com/marketally/IronGo/issues) - **Issues**: Report bugs on [Issues](https://git.marketally.com/ironservices/IronGo/issues)
- **Discussions**: Join our [GitHub Discussions](https://github.com/marketally/IronGo/discussions)
## Roadmap ## Roadmap

View File

@@ -15,8 +15,8 @@
<Description>A native .NET library for parsing Go source code. Provides a complete Abstract Syntax Tree (AST) representation with visitor pattern support, JSON serialization, and comprehensive diagnostics.</Description> <Description>A native .NET library for parsing Go source code. Provides a complete Abstract Syntax Tree (AST) representation with visitor pattern support, JSON serialization, and comprehensive diagnostics.</Description>
<PackageTags>go;golang;parser;ast;syntax-tree;antlr;code-analysis;static-analysis</PackageTags> <PackageTags>go;golang;parser;ast;syntax-tree;antlr;code-analysis;static-analysis</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/marketally/IronGo</PackageProjectUrl> <PackageProjectUrl>https://git.marketally.com/ironservices/IronGo</PackageProjectUrl>
<RepositoryUrl>https://github.com/marketally/IronGo</RepositoryUrl> <RepositoryUrl>https://git.marketally.com/ironservices/IronGo</RepositoryUrl>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon> <PackageIcon>icon.png</PackageIcon>
@@ -40,7 +40,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" /> <PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="Antlr4BuildTasks" Version="12.8.0" PrivateAssets="all" /> <PackageReference Include="Antlr4BuildTasks" Version="12.8.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> <PackageReference Include="Microsoft.SourceLink.Gitea" Version="8.0.0" PrivateAssets="All" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>