Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions JavaToCSharp.Tests/JavaToCSharp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,12 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="IKVM" Version="8.15.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\JavaToCSharp\JavaToCSharp.csproj" />
</ItemGroup>

<ItemGroup>
<IkvmReference Include="../Lib/javaparser-core-3.25.4.jar" />
</ItemGroup>

<ItemGroup>
<None Include="Resources\*.java" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion JavaToCSharp/JavaToCSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="IKVM" Version="8.15.0"/>
<PackageReference Include="IKVM.Maven.Sdk" Version="1.12.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.6.0" />
<PackageReference Include="Nullable.Extended.Analyzer" Version="1.15.6581"/>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.11" />
<PackageReference Include="YamlDotNet" Version="18.1.0" />
</ItemGroup>
<ItemGroup>
<IkvmReference Include="../Lib/javaparser-core-3.25.4.jar"/>
<MavenReference Include="com.github.javaparser:javaparser-core" Version="3.27.0"/>
</ItemGroup>
</Project>
Binary file removed Lib/javaparser-core-3.25.4.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Java to C# converter.
Uses [JavaParser](https://github.com/javaparser/javaparser) to parse the Java source code text,
[IKVM.NET](https://github.com/ikvmnet/ikvm/) to convert the javaparser .jar into a .NET .dll,
[IKVM.NET](https://github.com/ikvmnet/ikvm/) to convert the javaparser .jar (resolved from Maven Central at build time) into a .NET .dll,
and [Roslyn](https://github.com/dotnet/roslyn) for C# AST generation.

Pull requests and issue submission welcome.
Expand Down
Loading