Skip to content

Commit

Permalink
Update IKVM
Browse files Browse the repository at this point in the history
  • Loading branch information
AliveDevil committed Dec 4, 2024
1 parent 0de1ff9 commit f135a4c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
12 changes: 10 additions & 2 deletions Directory.Build.Java.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@
</PropertyGroup>

<PropertyGroup Label="MSBuild">
<!-- Skip EmittedNoClassDefFoundError & ClassFormatError -->
<NoWarn>IKVMC0101;IKVMC0111;$(NoWarn)</NoWarn>
<!--
Skip expected diagnostics.
Catch authoring/dependency issues in automated Tests.
IKVM0100: Class Not Found
IKVM0101: Class Format Error (not Java 8)
IKVM0105: Missing Class
IKVM0111: Emitted NoClassDefFoundError
-->
<NoWarn>IKVM0100;IKVM0101;IKVM0105;IKVM0111;$(NoWarn)</NoWarn>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Update="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Update="DotNetProjects.Extended.Wpf.Toolkit" Version="5.0.100" />
<PackageReference Update="ExceptionReporter " Version="2.4.2" />
<PackageReference Update="IKVM" Version="8.11.0-dev.50" />
<PackageReference Update="IKVM" Version="8.11.0-dev.186" />
<PackageReference Update="Microsoft.Build.Utilities.Core" Version="17.1.0" />
<PackageReference Update="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.1.0" />
Expand Down
1 change: 1 addition & 0 deletions bonjour/src/main/csharp/Cyberduck.Bonjour.Native.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<ItemGroup>
<PackageReference Include="IKVM" />
<PackageReference Include="Microsoft.CSharp" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"msbuild-sdks": {
"IKVM.NET.Sdk": "8.11.0-dev.50",
"IKVM.NET.Sdk": "8.11.0-dev.186",
"Microsoft.Build.NoTargets": "3.7.56",
"Microsoft.Build.Traversal": "4.1.0"
}
Expand Down

0 comments on commit f135a4c

Please sign in to comment.