-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
So, big remaining issue I think was with Win32 (x86). Name mangling a…
…lgo was removed, but was also not correct to begin with. Cleaned up and fixed. NativeLibrary.GetExport accepts size of arguments again. Added a simple ConsoleApp, which doesn't really build by default, but which can be useful to debug.
- Loading branch information
Showing
7 changed files
with
129 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net481;net6.0</TargetFrameworks> | ||
<LangVersion>11</LangVersion> | ||
<PlatformTarget>x86</PlatformTarget> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\IKVM.Java.Extensions\IKVM.Java.Extensions.csproj" /> | ||
<ProjectReference Include="..\IKVM.Image\IKVM.Image.csproj" /> | ||
<ProjectReference Include="..\IKVM.Tests.Util\IKVM.Tests.Util.csproj" /> | ||
<ProjectReference Include="..\IKVM.Tools.Runner\IKVM.Tools.Runner.csproj" /> | ||
<ProjectReference Include="..\IKVM.Util\IKVM.Util.csproj" /> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)..\..\IKVM.deps.targets" /> | ||
<Import Project="$(MSBuildThisFileDirectory)..\..\IKVM.refs.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using IKVM.Runtime.JNI; | ||
|
||
namespace IKVM.ConsoleApp | ||
{ | ||
public static class Program | ||
{ | ||
|
||
public static void Main(string[] args) | ||
{ | ||
var f = new JNIFrame(); | ||
f.Enter(null); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters