Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/kotlin/kotlin-linux/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Build Kotlin Package
description: Builds Kotlin package for Linux and Android platforms
runs:
using: composite
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/kotlin/kotlin-macos/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Build macos natives for kotlin
description: Builds macOS native libraries for Kotlin wrapper
runs:
using: composite
steps:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/kotlin/kotlin-windows/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Build windows natives for kotlin
description: Build Windows native libraries for Kotlin wrapper
runs:
using: composite
steps:
Expand All @@ -7,6 +8,12 @@ runs:
with:
name: config.txt

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Install Rust
shell: bash
run: rustup target add x86_64-pc-windows-gnu
Expand Down
6 changes: 0 additions & 6 deletions wrappers/csharp/tests/unit-tests/nugets/iOS/Main.cs

This file was deleted.

9 changes: 9 additions & 0 deletions wrappers/csharp/tests/unit-tests/nugets/iOS/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using UIKit;

namespace iOS;

public class Application
{
static void Main(string[] args)
=> UIApplication.Main(args, null, typeof(AppDelegate));
}
9 changes: 3 additions & 6 deletions wrappers/csharp/tests/unit-tests/nugets/iOS/iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
<RuntimeIdentifier>iossimulator-arm64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
<SelfContained>true</SelfContained>
<MtouchLink>None</MtouchLink>
<UseInterpreter>true</UseInterpreter>
<!--
Enable full trimming in Release mode.
To learn more, see: https://learn.microsoft.com/dotnet/core/deploying/trimming/trimming-options#trimming-granularity
-->
<TrimMode Condition="'$(Configuration)' == 'Release'">full</TrimMode>
<MTouchUseLlvm>false</MTouchUseLlvm>
<RunILLink>false</RunILLink>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading