Skip to content

Commit 5d8ee4f

Browse files
authored
IKVM 8.7, other NuGet upgrades (#84)
* Update README and CONTRIBUTING with project name and Markdown style * Upgrade IKVM to 8.7.0-pre.2 for macOS arm64 support, #81 * Upgrade IKVM to 8.7.1, other NuGet upgrades, fix app name on macOS
1 parent db0b3eb commit 5d8ee4f

File tree

7 files changed

+21
-23
lines changed

7 files changed

+21
-23
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Contributing to JavaParser
1+
# Contributing to JavaToCSharp
22

33
Thank you for your interest in helping this project grow!
4-
Here are some general guidelines to follow when contributing to JavaParser:
4+
Here are some general guidelines to follow when contributing to JavaToCSharp:
55

66
- Please file an issue before submitting a PR, and reference the issue from your PR.
77
The issue should clearly outline the problem or feature request, what benefits it provides, etc.

JavaToCSharp.Tests/JavaToCSharp.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
14-
<PackageReference Include="xunit" Version="2.5.0" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14+
<PackageReference Include="xunit" Version="2.6.2" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>
1919
<PackageReference Include="coverlet.collector" Version="6.0.0">
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
<PrivateAssets>all</PrivateAssets>
2222
</PackageReference>
23-
<PackageReference Include="IKVM" Version="8.6.2" />
23+
<PackageReference Include="IKVM" Version="8.7.1" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

JavaToCSharp/JavaToCSharp.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<None Include="..\.editorconfig" Link=".editorconfig" />
1717
</ItemGroup>
1818
<ItemGroup>
19-
<PackageReference Include="IKVM" Version="8.6.2" />
20-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.7.0" />
21-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
19+
<PackageReference Include="IKVM" Version="8.7.1" />
20+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
21+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
2222
</ItemGroup>
2323
<ItemGroup>
2424
<IkvmReference Include="../Lib/javaparser-core-3.25.4.jar" />

JavaToCSharpCli/JavaToCSharpCli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<WarningsAsErrors>nullable</WarningsAsErrors>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
12+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
1313
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
1414
</ItemGroup>
1515
<ItemGroup>

JavaToCSharpGui/App.axaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
33
x:Class="JavaToCSharpGui.App"
44
xmlns:local="using:JavaToCSharpGui"
5+
Name="Java to C#"
56
RequestedThemeVariant="Default">
67
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
78
<Application.Styles>

JavaToCSharpGui/JavaToCSharpGui.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
</ItemGroup>
1717
<ItemGroup>
1818
<!-- Removes version conflict error -->
19-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.7.0" />
19+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
2020

21-
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
21+
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
2222

23-
<PackageReference Include="Avalonia" Version="11.0.4" />
24-
<PackageReference Include="Avalonia.Desktop" Version="11.0.4" />
25-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.4" />
26-
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.4" />
23+
<PackageReference Include="Avalonia" Version="11.0.5" />
24+
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" />
25+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.5" />
26+
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.5" />
2727
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
28-
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.4" />
28+
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.5" />
2929
<PackageReference Include="Semi.Avalonia" Version="11.0.1" />
3030
</ItemGroup>
3131
<ItemGroup>

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Java to C# Converter
2-
====================
1+
# Java to C# Converter
32

43
[![.NET Build](https://github.com/paulirwin/JavaToCSharp/actions/workflows/build.yml/badge.svg)](https://github.com/paulirwin/JavaToCSharp/actions/workflows/build.yml) [![Nuget](https://img.shields.io/nuget/v/JavaToCSharp)](https://www.nuget.org/packages/JavaToCSharp/)
54

@@ -11,8 +10,7 @@ and [Roslyn](https://github.com/dotnet/roslyn) for C# AST generation.
1110

1211
Pull requests and issue submission welcome.
1312

14-
Getting Started
15-
===============
13+
## Getting Started
1614

1715
Clone the repo, build, and launch the Gui WPF app. Click the "..." button on
1816
the left side to load a Java file, and then click Convert to convert to
@@ -24,7 +22,6 @@ from the command line.
2422

2523
The core library is installable via NuGet at https://www.nuget.org/packages/JavaToCSharp/
2624

27-
License for JavaParser
28-
======================
25+
## License for JavaParser
2926

3027
Licensed under the Apache License available at https://github.com/javaparser/javaparser/blob/master/LICENSE.APACHE

0 commit comments

Comments
 (0)