Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f135a4c

Browse files
committedDec 4, 2024·
Update IKVM
1 parent 0de1ff9 commit f135a4c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed
 

‎Directory.Build.Java.props

+10-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,16 @@
88
</PropertyGroup>
99

1010
<PropertyGroup Label="MSBuild">
11-
<!-- Skip EmittedNoClassDefFoundError & ClassFormatError -->
12-
<NoWarn>IKVMC0101;IKVMC0111;$(NoWarn)</NoWarn>
11+
<!--
12+
Skip expected diagnostics.
13+
Catch authoring/dependency issues in automated Tests.
14+
15+
IKVM0100: Class Not Found
16+
IKVM0101: Class Format Error (not Java 8)
17+
IKVM0105: Missing Class
18+
IKVM0111: Emitted NoClassDefFoundError
19+
-->
20+
<NoWarn>IKVM0100;IKVM0101;IKVM0105;IKVM0111;$(NoWarn)</NoWarn>
1321
</PropertyGroup>
1422

1523
</Project>

‎Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReference Update="CommunityToolkit.Mvvm" Version="8.2.2" />
2020
<PackageReference Update="DotNetProjects.Extended.Wpf.Toolkit" Version="5.0.100" />
2121
<PackageReference Update="ExceptionReporter " Version="2.4.2" />
22-
<PackageReference Update="IKVM" Version="8.11.0-dev.50" />
22+
<PackageReference Update="IKVM" Version="8.11.0-dev.186" />
2323
<PackageReference Update="Microsoft.Build.Utilities.Core" Version="17.1.0" />
2424
<PackageReference Update="Microsoft.CSharp" Version="4.7.0" />
2525
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.1.0" />

‎bonjour/src/main/csharp/Cyberduck.Bonjour.Native.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="IKVM" />
17+
<PackageReference Include="Microsoft.CSharp" />
1718
</ItemGroup>
1819

1920
<ItemGroup>

‎global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"msbuild-sdks": {
3-
"IKVM.NET.Sdk": "8.11.0-dev.50",
3+
"IKVM.NET.Sdk": "8.11.0-dev.186",
44
"Microsoft.Build.NoTargets": "3.7.56",
55
"Microsoft.Build.Traversal": "4.1.0"
66
}

0 commit comments

Comments
 (0)
Please sign in to comment.