Skip to content

Commit a4ccb63

Browse files
Merge pull request #1184 from GrahamTheCoder/feature/multi-target-net8
Add info to help get AI agents started faster/cheaper
2 parents bd97bd1 + f510abd commit a4ccb63

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

.openhands/microagents/repo.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# CodeConverter Repository Summary
2+
3+
## Purpose
4+
This repository contains a code conversion tool that translates between C# and Visual Basic .NET (VB.NET). It provides:
5+
- Command line conversion tools
6+
- Visual Studio extension (VSIX)
7+
- Web interface for code conversion
8+
9+
## General Setup
10+
- Primary solution file: `CodeConverter.sln`
11+
- Targets .NET Framework and .NET Core
12+
- Uses GitHub Actions for CI (.github/workflows/dotnet.yml)
13+
- Contains extensive test suite in `Tests/` directory
14+
15+
## Repository Structure
16+
- `CodeConverter/`: Core conversion logic
17+
- `CommandLine/`: CLI tools for conversion
18+
- `Tests/`: Comprehensive test suite
19+
- `Web/`: Web interface components
20+
- `Vsix/`: Visual Studio extension
21+
- `.github/workflows/`: CI/CD pipelines
22+
23+
## CI/CD & Technologies
24+
- GitHub Actions workflow (`dotnet.yml`) runs:
25+
- Build and test on Windows/Linux
26+
- Code analysis
27+
- Test coverage reporting
28+
- Primary technologies:
29+
- .NET (Framework and Core)
30+
- Roslyn compiler
31+
- Visual Studio SDK (for VSIX)

Linux.slnf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"solution": {
3+
"path": "CodeConverter.sln",
4+
"projects": [
5+
"CodeConverter/CodeConverter.csproj",
6+
"CommandLine/CodeConv/CodeConv.csproj",
7+
"CommandLine/CodeConv.NetFramework/CodeConv.NetFramework.csproj",
8+
"Tests/Tests.csproj",
9+
"Web/Web.csproj",
10+
"Func/Func.csproj"
11+
]
12+
}
13+
}

Tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@
4747
<ItemGroup>
4848
<Reference Include="System.Web" />
4949
</ItemGroup>
50-
</Project>
50+
</Project>

0 commit comments

Comments
 (0)