diff --git a/.gitignore b/.gitignore index 2594e0b..24bb2ad 100644 --- a/.gitignore +++ b/.gitignore @@ -736,3 +736,4 @@ Temporary Items MyLib.Generated/Hello.cs MyLib.Generated/Hello.h +beyondnetgen.*.config.json diff --git a/MyLib.Generated/MainDummy.cs b/MyLib.Generated/MainDummy.cs deleted file mode 100644 index ebdddd0..0000000 --- a/MyLib.Generated/MainDummy.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace __MainDummyNamespace; - -// TODO: This is a temporary workaround to allow the .NET compiler to generate an iOS native dylib -public static class __MainDummyClass -{ - public static void Main() { } -} diff --git a/MyLib.Generated/build-android-arm64.sh b/MyLib.Generated/build-android-arm64.sh deleted file mode 100755 index 34f7059..0000000 --- a/MyLib.Generated/build-android-arm64.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env sh - -dotnet publish -r linux-bionic-arm64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:RemoveSections=true diff --git a/MyLib.Generated/build-android-x64.sh b/MyLib.Generated/build-android-x64.sh deleted file mode 100755 index 8250d62..0000000 --- a/MyLib.Generated/build-android-x64.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env sh - -dotnet publish -r linux-bionic-x64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:RemoveSections=true diff --git a/MyLib.Generated/build-ios-arm64.sh b/MyLib.Generated/build-ios-arm64.sh deleted file mode 100755 index 2796c05..0000000 --- a/MyLib.Generated/build-ios-arm64.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env sh - -dotnet publish -r ios-arm64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:OutputType=Library diff --git a/MyLib.Generated/build-ios-x64.sh b/MyLib.Generated/build-ios-x64.sh deleted file mode 100755 index 12b3492..0000000 --- a/MyLib.Generated/build-ios-x64.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env sh - -dotnet publish -r ios-x64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:OutputType=Library diff --git a/MyLib.Managed/publish.sh b/MyLib.Managed/publish.sh deleted file mode 100755 index 3391e53..0000000 --- a/MyLib.Managed/publish.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env sh - -set -e - -OUTPUT_PRODUCT_NAME="MyLib.Managed" - -DOTNET_PATH=`which dotnet` - -VERBOSITY_LEVEL="normal" - -echo "Building ${OUTPUT_PRODUCT_NAME}" -${DOTNET_PATH} publish -v "${VERBOSITY_LEVEL}" /p:Configuration=Release diff --git a/README.md b/README.md index de341de..e7b35e6 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,57 @@ # CSharp to Flutter +## Requirements + +All the following tools must be in your `PATH` : + +* All platforms + + [Bash >= 4.0](https://www.gnu.org/software/bash/) + + [BeyondNetGen](https://github.com/royalapplications/beyondnet) + + [Android NDK](https://developer.android.com/ndk/downloads) if you want to build for Android +* MacOS + + [XCode](https://developer.apple.com/xcode/) if you want to build for iOS + ## Quick start Simply run the build script ```bash -./build.sh +./build.sh -i MyLib.Managed +``` + +More advanced usage: + +> Context: You want to build a library named `AwesomeFeature` for Android only, and you have the Android NDK installed in `$ANDROID_NDK_ROOT` but not in `$ANDROID_NDK_HOME`. + +```bash +./build.sh -i AwesomeFeature --ndk $ANDROID_NDK_ROOT --no-ios +``` + +[![session recording](./demo.png)](./demo.cast) + +## Usage + +```shell-session +Usage: ./build.sh [options] +Options: + -h, --help Print this help and exit + -i Input project name (required) + -g Generated project name (default: .Generated) + -o Output folder name (default: libs) + --ndk Android NDK path (default: ANDROID_NDK_HOME environment variable) + --no-android Disable Android build (default: false) + --no-ios Disable iOS build (default: false) ``` ## What is this? This script: -- Run `dotnet publish` on the CoreRT managed library to get intermediate dlls -- Run `beyondnetgen` to generate the C header file and the *unmanaged* csharp code -- Run `dotnet publish` on the *unmanaged* csharp code for the target platforms. -- Copy the header file and the libs to the flutter project -- Run `ffigen` to generate the dart bindings against the header file +* Run `dotnet publish` on the CoreRT managed library to get intermediate dlls +* Copy configuration files templates +* Android: + * Run `beyondnetgen` to generate the C header file and the *unmanaged* csharp code + * Build a complete intermediate csproject with the *unmanaged* csharp code and the generated header file + * Run `dotnet publish` on the *unmanaged* csharp code for the target platforms. +* iOS: + * Run `beyondnetgen` and follow full process to get xframework +* Copy the generated files to the output folder diff --git a/MyLib.Generated/android_fake_clang.cmd b/android_fake_clang.cmd similarity index 74% rename from MyLib.Generated/android_fake_clang.cmd rename to android_fake_clang.cmd index 52ccb40..75d5eca 100755 --- a/MyLib.Generated/android_fake_clang.cmd +++ b/android_fake_clang.cmd @@ -3,7 +3,7 @@ SETLOCAL ENABLEDELAYEDEXPANSION SET "rawArgs=%*" IF NOT DEFINED RealCppCompilerAndLinker ( - SET "RealCppCompilerAndLinker=%ANDROID_NDK_ROOT%\toolchains\llvm\prebuilt\windows-x86_64\bin\clang.exe" + SET "RealCppCompilerAndLinker=%ANDROID_NDK_HOME%\toolchains\llvm\prebuilt\windows-x86_64\bin\clang.exe" ) "%RealCppCompilerAndLinker%" !rawArgs! diff --git a/MyLib.Generated/android_fake_clang.command b/android_fake_clang.command similarity index 68% rename from MyLib.Generated/android_fake_clang.command rename to android_fake_clang.command index 74f423b..9cb1344 100755 --- a/MyLib.Generated/android_fake_clang.command +++ b/android_fake_clang.command @@ -1,6 +1,6 @@ #!/bin/bash rawArgs="$@" if [[ -z "${RealCppCompilerAndLinker}" ]]; then - RealCppCompilerAndLinker=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang + RealCppCompilerAndLinker=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang fi $RealCppCompilerAndLinker $rawArgs diff --git a/MyLib.Generated/android_fake_clang.sh b/android_fake_clang.sh similarity index 51% rename from MyLib.Generated/android_fake_clang.sh rename to android_fake_clang.sh index 07346ff..6369ded 100755 --- a/MyLib.Generated/android_fake_clang.sh +++ b/android_fake_clang.sh @@ -1,6 +1,6 @@ #!/bin/bash rawArgs="$@" if [[ -z "${RealCppCompilerAndLinker}" ]]; then - RealCppCompilerAndLinker=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin/clang + RealCppCompilerAndLinker=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin/clang fi -$RealCppCompilerAndLinker $rawArgs \ No newline at end of file +$RealCppCompilerAndLinker $rawArgs diff --git a/build.sh b/build.sh index 99fc607..ed15deb 100755 --- a/build.sh +++ b/build.sh @@ -1,51 +1,316 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash -# get script directory +## INIT + +# Get script directory script_dir="$(cd "$(dirname "$0")" && pwd)" -# change working directory to script directory +# Change working directory to script directory cd $script_dir -# clean previous build -rm -rf ./MyLib.Managed/bin -rm -rf ./MyLib.Managed/obj -rm -rf ./MyLib.Generated/bin -rm -rf ./MyLib.Generated/obj - -# set up log file +# Set up log file log_file="$script_dir/build.log" rm -f $log_file -cd ./MyLib.Managed -./publish.sh 2>&1 | tee -a $log_file +## FUNCTIONS -cd ../ -beyondnetgen beyondnetgen.config.json 2>&1 | tee -a $log_file +# Function to print usage instructions +help() { + echo "Usage: $0 [options]" + echo "Options:" + echo " -h, --help Print this help and exit" + echo " -i Input project name (required)" + echo " -g Generated project name (default: .Generated)" + echo " -o Output folder name (default: libs)" + echo " --ndk Android NDK path (default: ANDROID_NDK_HOME environment variable)" + echo " --no-android Disable Android build (default: false)" + echo " --no-ios Disable iOS build (default: false)" +} -cd ./MyLib.Generated +# Function to log a message to the console and log file +log() { + echo "$1" + echo "$1" >>$log_file +} -./build-android-arm64.sh 2>&1 | tee -a $log_file +# Function to run a command and log the output +run() { + eval $1 2>&1 | tee -a $log_file +} -# Create the directory if it doesn't exist -mkdir -p ../flutter_example/android/app/src/main/jniLibs/arm64-v8a +# Function to check if a command exists +command_exists() { + command -v "$1" >/dev/null 2>&1 +} -# Copy the generated library to the Android project -cp ./bin/Release/net8.0/linux-bionic-arm64/native/MyLib.Generated.so \ - ../flutter_example/android/app/src/main/jniLibs/arm64-v8a/libMyLib.so +# Function to replace INPUT_PROJECT_NAME and GENERATED_PROJECT_NAME +# by the actual project names in the passed file +replace_project_names() { + sed -i '' "s/INPUT_PROJECT_NAME/$input_project_name/g" $1 + sed -i '' "s/GENERATED_PROJECT_NAME/$generated_project_name/g" $1 +} -./build-android-x64.sh 2>&1 | tee -a $log_file +# Function to ask for confirmation before continuing +# $1: message +ask_confirmation() { + read -p "$1 (y/n) " -n 1 -r + echo + if [[ ! $REPLY =~ ^[Yy]$ ]]; then + exit 1 + fi +} -# Create the directory if it doesn't exist -mkdir -p ../flutter_example/android/app/src/main/jniLibs/x86_64 +# Function to build the Android libraries +build_android() { + cd $script_dir -# Copy the generated library to the Android project -cp ./bin/Release/net8.0/linux-bionic-x64/native/MyLib.Generated.so \ - ../flutter_example/android/app/src/main/jniLibs/x86_64/libMyLib.so + # Copy template beyondnetgen.android.config.json + cp template.beyondnetgen.android.config.json beyondnetgen.android.config.json + replace_project_names beyondnetgen.android.config.json -cp Hello.h ../flutter_example/Hello.h + # Generate project + log "Generating Android project" + run "beyondnetgen beyondnetgen.android.config.json" -cd ../flutter_example -dart run ffigen --config ffigen.yaml 2>&1 | tee -a $log_file + # Copy android_fake_clang.* to generated project + cp android_fake_clang.* "$generated_project_dir/" -echo "Build completed. See $log_file for details." + # Copy template csproj + cp template.csproj "$generated_project_dir/$generated_project_name.csproj" + replace_project_names "$generated_project_dir/$generated_project_name.csproj" + + cd $generated_project_dir + + declare -A abis + abis["arm64"]="arm64-v8a" + abis["x64"]="x86_64" + + # Build for each architecture + for arch in "${!abis[@]}"; do + log "Building Android library for $arch" + + run "dotnet publish -r linux-bionic-$arch -v normal -c Release -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:RemoveSections=true" + + # Copy the generated library to the output directory + mkdir -p $output_dir/${abis[$arch]} + cp $generated_project_dir/bin/Release/net8.0/linux-bionic-$arch/native/$generated_project_name.so $output_dir/${abis[$arch]}/lib$input_project_name.so + done + + # Copy the generated headers to the output directory + log "Copying header to output directory" + cp "$generated_project_dir/Generated.h" "$output_dir/$input_project_name.h" +} + +# Function to build the iOS libraries +build_ios() { + cd $script_dir + + # Copy template beyondnetgen.ios.config.json + cp template.beyondnetgen.ios.config.json beyondnetgen.ios.config.json + replace_project_names beyondnetgen.ios.config.json + + # Generate project + log "Generating iOS project" + run "beyondnetgen beyondnetgen.ios.config.json" + + # Copy $input_project_dir/bin/Release/net8.0/*.xcframework to output directory + log "Copying iOS libraries to output directory" + cp $input_project_dir/bin/Release/net8.0/*.xcframework $output_dir + + # Copy the generated headers to the output directory + log "Copying header to output directory" + cp "$generated_project_dir/Generated.h" "$output_dir/$input_project_name.h" +} + +## ARGUMENTS + +# Set default values +WANT_TO_BUILD_ANDROID=true +WANT_TO_BUILD_IOS=true + +# Check for arguments +if [ $# -eq 0 ]; then + log "No arguments supplied" + help + exit 1 +fi + +# Parse arguments +while [ "$1" != "" ]; do + case $1 in + -h | --help) + help + exit 0 + ;; + -i) + shift + input_project_name=$1 + ;; + -g) + shift + generated_project_name=$1 + ;; + -o) + shift + output=$1 + ;; + --ndk) + shift + export ANDROID_NDK_HOME=$1 + ;; + --no-android) + WANT_TO_BUILD_ANDROID=false + ;; + --no-ios) + WANT_TO_BUILD_IOS=false + ;; + *) + log "Unknown argument: $1" + help + exit 1 + ;; + esac + shift +done + +# Check for required arguments +if [ -z "$input_project_name" ]; then + log "Input project name is required" + help + exit 1 +fi + +# Set default values +if [ -z "$generated_project_name" ]; then + generated_project_name="$input_project_name.Generated" +fi + +if [ -z "$output" ]; then + output="libs" +fi + +input_project_dir="$script_dir/$input_project_name" +generated_project_dir="$script_dir/$generated_project_name" +output_dir="$script_dir/$output" + +## PREREQUISITES CHECK + +# Check for bash >= 4.0 +if [ "${BASH_VERSINFO:-0}" -lt 4 ]; then + log "bash >= 4.0 is required. Aborting." + exit 1 +fi + +# Check for dotnet +command_exists dotnet || { + log "dotnet is required but it's not installed or not in PATH. Aborting." + exit 1 +} + +# Check if dotnet is in version 8.0 or higher +dotnet_version=$(dotnet --version) + +if [[ $dotnet_version =~ ^8\. ]]; then + log "dotnet version $dotnet_version is supported" +else + log "dotnet version $dotnet_version is not supported. Aborting." + exit 1 +fi + +# Check for beyondnetgen +command_exists beyondnetgen || { + log "beyondnetgen is required but it's not installed or not in PATH. Aborting." + exit 1 +} + +# Check if host is macos, if so, check for xcode, and set BUILD_IOS to true +ostype=$(uname -s) +log "Host OS: $ostype" +if [ "$ostype" == "Darwin" ]; then + if [ "$WANT_TO_BUILD_IOS" = false ]; then + log "Disabling iOS build." + BUILD_IOS=false + else + command_exists xcodebuild || { + log "Xcode is not installed or not in PATH. Disabling iOS build." + BUILD_IOS=false + } + + log "Xcode detected. Enabling iOS build." + BUILD_IOS=true + fi +else + BUILD_IOS=false +fi + +# Check for ANDROID_NDK_HOME +if [ "$ANDROID_NDK_HOME" ] && [ "$WANT_TO_BUILD_ANDROID" = true ]; then + log "ANDROID_NDK_HOME is set to $ANDROID_NDK_HOME. Enabling Android build." + BUILD_ANDROID=true +else + BUILD_ANDROID=false + if [ -z "$ANDROID_NDK_HOME" ]; then + log "ANDROID_NDK_HOME is not set. Disabling Android build." + else + log "Disabling Android build." + fi +fi + +# Check if BUILD_IOS or BUILD_ANDROID is true +if [ "$BUILD_IOS" = false ] && [ "$BUILD_ANDROID" = false ]; then + log "Neither iOS nor Android build is enabled. Aborting." + exit 1 +fi + +## CONFIG + +cd $script_dir + +# Copy template beyondnetgen.*.config.json +cp template.beyondnetgen.android.config.json beyondnetgen.android.config.json +replace_project_names beyondnetgen.android.config.json + +cp template.beyondnetgen.ios.config.json beyondnetgen.ios.config.json +replace_project_names beyondnetgen.ios.config.json + +# Check if output_dir exists, if not, create it +if [ ! -d "$output_dir" ]; then + log "Creating output directory $output_dir" + mkdir -p $output_dir +fi + +## BUILD + +# Clean previous build +log "Cleaning previous build..." + +# Ask for confirmation +ask_confirmation "Will delete: $generated_project_dir, $output_dir, $input_project_dir/obj $input_project_dir/bin. Continue?" + +rm -r $generated_project_dir +rm -r "$input_project_dir/obj" +rm -r "$input_project_dir/bin" + +# Build input project +log "Building input project" +cd $input_project_dir +run "dotnet publish -v normal -c Release" + +# Build Android libraries +if [ "$BUILD_ANDROID" = true ]; then + build_android +fi + +# Build iOS libraries +if [ "$BUILD_IOS" = true ]; then + build_ios +fi + +# Check last command exit code +if [ $? -ne 0 ]; then + log "Build failed. See $log_file for details." + exit 1 +else + log "Finished building. See $log_file for details." +fi diff --git a/demo.cast b/demo.cast new file mode 100644 index 0000000..f194f8f --- /dev/null +++ b/demo.cast @@ -0,0 +1,490 @@ +{"version": 2, "width": 152, "height": 46, "timestamp": 1699543091, "env": {"SHELL": "/usr/local/bin/fish", "TERM": "xterm-256color"}} +[0.017888, "o", "\u001b[?2004hbash-5.2$ "] +[1.942157, "o", "l"] +[2.060504, "o", "s"] +[2.16849, "o", " "] +[2.240529, "o", "-"] +[2.82196, "o", "l"] +[2.906019, "o", "a"] +[3.35879, "o", "\r\n\u001b[?2004l\r"] +[3.364684, "o", "total 128\r\n"] +[3.365288, "o", "drwxr-xr-x@ 13 hpcl staff 416 9 nov 16:14 .\r\ndrwxr-xr-x@ 11 hpcl staff 352 9 nov 14:30 ..\r\ndrwxr-xr-x@ 15 hpcl staff 480 9 nov 16:04 .git\r\n-rw-r--r--@ 1 hpcl staff 14753 9 nov 15:48 .gitignore\r\n"] +[3.365408, "o", "drwxr-xr-x@ 6 hpcl staff 192 9 nov 15:48 MyLib.Managed\r\n-rw-r--r--@ 1 hpcl staff 1799 9 nov 16:01 README.md\r\n-rwxr-xr-x@ 1 hpcl staff 252 9 nov 14:57 android_fake_clang.cmd\r\n-rwxr-xr-x@ 1 hpcl staff 206 9 nov 14:57 android_fake_clang.command\r\n-rwxr-xr-x@ 1 hpcl staff 205 9 nov 14:57 android_fake_clang.sh\r\n-rwxr-xr-x@ 1 hpcl staff 7840 9 nov 15:54 build.sh\r\n-rw-r--r--@ 1 hpcl staff 9454 9 nov 14:54 template.beyondnetgen.android.config.json\r\n-rw-r--r-- 1 hpcl staff 260 9 nov 14:54 template.beyondnetgen.ios.config.json\r\n-rw-r--r-- 1 hpcl staff 4781 9 nov 14:34 template.csproj\r\n"] +[3.365787, "o", "\u001b[?2004h"] +[3.365809, "o", "bash-5.2$ "] +[5.680952, "o", "d"] +[5.886002, "o", "o"] +[6.092422, "o", "t"] +[6.296848, "o", "n"] +[6.457064, "o", "e"] +[6.541103, "o", "t"] +[7.641347, "o", " "] +[8.635024, "o", "n"] +[8.768639, "o", "e"] +[9.62124, "o", "w"] +[10.663852, "o", " "] +[10.870048, "o", "c"] +[11.02954, "o", "l"] +[11.116845, "o", "a"] +[11.196927, "o", "s"] +[11.381354, "o", "s"] +[11.658215, "o", "l"] +[11.745813, "o", "i"] +[12.096979, "o", "b"] +[12.412286, "o", " "] +[12.907709, "o", "-"] +[13.249866, "o", "o"] +[13.418696, "o", " "] +[13.627962, "o", "A"] +[14.204802, "o", "w"] +[14.774508, "o", "e"] +[15.025509, "o", "s"] +[15.135529, "o", "o"] +[15.356051, "o", "m"] +[15.46173, "o", "e"] +[16.035512, "o", "F"] +[16.244294, "o", "e"] +[16.308489, "o", "a"] +[16.510355, "o", "t"] +[16.636745, "o", "u"] +[16.743128, "o", "r"] +[16.819209, "o", "e"] +[17.037221, "o", "\r\n\u001b[?2004l\r"] +[17.177263, "o", "\u001b[?1h\u001b="] +[17.509617, "o", "Le modèle « Bibliothèque de classe » a bien été créé.\r\n"] +[17.509733, "o", "\r\nTraitement des actions postérieures à la création en cours... Merci de patienter.\r\n"] +[17.510248, "o", "Restauration de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj :\r\n"] +[17.823195, "o", " Identification des projets à restaurer...\r\n"] +[18.24298, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj (en 165 ms).\r\n"] +[18.255054, "o", "Restauration réussie.\r\n"] +[18.25509, "o", "\r\n"] +[18.25637, "o", "\r\n"] +[18.275702, "o", "\u001b[?2004hbash-5.2$ "] +[19.553283, "o", "l"] +[19.671263, "o", "s"] +[19.784809, "o", " "] +[19.869314, "o", "-"] +[20.112543, "o", "l"] +[20.238964, "o", "a"] +[20.665103, "o", "\r\n\u001b[?2004l\r"] +[20.670593, "o", "total 128\r\n"] +[20.671014, "o", "drwxr-xr-x@ 14 hpcl staff 448 9 nov 16:18 .\r\ndrwxr-xr-x@ 11 hpcl staff 352 9 nov 14:30 ..\r\ndrwxr-xr-x@ 15 hpcl staff 480 9 nov 16:04 .git\r\n"] +[20.671037, "o", "-rw-r--r--@ 1 hpcl staff 14753 9 nov 15:48 .gitignore\r\ndrwxr-xr-x@ 5 hpcl staff 160 9 nov 16:18 AwesomeFeature\r\ndrwxr-xr-x@ 6 hpcl staff 192 9 nov 15:48 MyLib.Managed\r\n-rw-r--r--@ 1 hpcl staff 1799 9 nov 16:01 README.md\r\n-rwxr-xr-x@ 1 hpcl staff 252 9 nov 14:57 android_fake_clang.cmd\r\n-rwxr-xr-x@ 1 hpcl staff 206 9 nov 14:57 android_fake_clang.command\r\n-rwxr-xr-x@ 1 hpcl staff 205 9 nov 14:57 android_fake_clang.sh\r\n-rwxr-xr-x@ 1 hpcl staff 7840 9 nov 15:54 build.sh\r\n"] +[20.671049, "o", "-rw-r--r--@ 1 hpcl staff 9454 9 nov 14:54 template.beyondnetgen.android.config.json\r\n-rw-r--r-- 1 hpcl staff 260 9 nov 14:54 template.beyondnetgen.ios.config.json\r\n-rw-r--r-- 1 hpcl staff 4781 9 nov 14:34 template.csproj\r\n"] +[20.671554, "o", "\u001b[?2004h"] +[20.671647, "o", "bash-5.2$ "] +[23.639032, "o", "."] +[23.714831, "o", "/"] +[24.049196, "o", "b"] +[24.133256, "o", "u"] +[24.199197, "o", "i"] +[24.445932, "o", "l"] +[24.564538, "o", "d"] +[24.971147, "o", "."] +[25.197215, "o", "s"] +[25.398319, "o", "h"] +[25.817694, "o", " "] +[26.252478, "o", "-"] +[26.578923, "o", "i"] +[27.031544, "o", " "] +[27.210971, "o", "A"] +[27.483979, "o", "w"] +[27.752044, "o", "e"] +[28.371987, "o", "s"] +[28.532539, "o", "o"] +[28.811006, "o", "m"] +[28.929012, "o", "e"] +[30.249169, "o", "F"] +[30.512499, "o", "e"] +[30.596195, "o", "a"] +[30.801291, "o", "t"] +[30.961064, "o", "u"] +[31.086963, "o", "r"] +[31.170995, "o", "e"] +[31.391949, "o", " "] +[31.815502, "o", "-"] +[31.93327, "o", "-"] +[32.368165, "o", "n"] +[32.873014, "o", "d"] +[32.983932, "o", "k"] +[33.315284, "o", " "] +[33.871546, "o", "$"] +[34.256136, "o", "A"] +[34.457902, "o", "N"] +[34.58417, "o", "D"] +[34.827826, "o", "R"] +[34.915294, "o", "O"] +[35.004882, "o", "I"] +[35.128897, "o", "D"] +[36.423265, "o", "_"] +[36.875022, "o", "N"] +[37.461832, "o", "D"] +[37.671178, "o", "K"] +[38.524234, "o", "_"] +[38.801084, "o", "R"] +[39.003377, "o", "O"] +[39.138025, "o", "O"] +[39.311796, "o", "T"] +[40.184335, "o", " "] +[40.442903, "o", "-"] +[40.580851, "o", "-"] +[41.021105, "o", "n"] +[41.566055, "o", "o"] +[41.984114, "o", "-"] +[42.488167, "o", "i"] +[42.537073, "o", "o"] +[42.697145, "o", "s"] +[43.257246, "o", "\r\n\u001b[?2004l\r"] +[43.422216, "o", "dotnet version 8.0.100-rc.2.23502.2 is supported\r\n"] +[43.42559, "o", "Host OS: Darwin\r\n"] +[43.42573, "o", "Disabling iOS build.\r\n"] +[43.425852, "o", "ANDROID_NDK_HOME is set to /Users/hpcl/Library/Android/sdk/ndk/26.1.10909125. Enabling Android build.\r\n"] +[43.450762, "o", "Creating output directory /Users/hpcl/Work/clients/intuidoc/csharp-flutter/libs\r\n"] +[43.454389, "o", "Cleaning previous build...\r\n"] +[43.454606, "o", "Will delete: /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated, /Users/hpcl/Work/clients/intuidoc/csharp-flutter/libs, /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin. Continue? (y/n) "] +[45.710112, "o", "y"] +[45.710265, "o", "\r\n"] +[45.713828, "o", "rm: /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated: No such file or directory\r\n"] +[45.723387, "o", "rm: /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin: No such file or directory\r\n"] +[45.723877, "o", "Building input project\r\n"] +[45.915521, "o", "Version MSBuild 17.8.0+6cdef4241 pour .NET\r\n"] +[45.993194, "o", "La génération a démarré 09/11/2023 16:18:57.\r\n"] +[46.375092, "o", " 1>"] +[46.37599, "o", "Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" sur le nœud 1 (Restore cible(s)).\r\n"] +[46.376907, "o", " 1>"] +[46.37698, "o", "_GetAllRestoreProjectPathItems:\r\n Identification des projets à restaurer...\r\n"] +[46.54012, "o", " Restore:\r\n X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/codesignctl.pem'.\r\n"] +[46.558217, "o", " X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/timestampctl.pem'.\r\n"] +[46.636533, "o", " Restauration des packages pour /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj...\r\n"] +[46.694092, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/index.json\r\n"] +[46.724679, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/vulnerability.base.json\r\n"] +[46.739499, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/vulnerability.update.json\r\n"] +[46.767083, "o", " Génération du fichier MSBuild /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/AwesomeFeature.csproj.nuget.g.props.\r\n"] +[46.770112, "o", " Génération du fichier MSBuild /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/AwesomeFeature.csproj.nuget.g.targets.\r\n"] +[46.770622, "o", " Écriture du fichier des composants sur le disque. Chemin : /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/project.assets.json\r\n"] +[46.778122, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj (en 152 ms).\r\n"] +[46.781098, "o", " \r\n Fichiers de configuration NuGet utilisés :\r\n /Users/hpcl/.nuget/NuGet/NuGet.Config\r\n \r\n Flux utilisés :\r\n https://api.nuget.org/v3/index.json\r\n"] +[46.783653, "o", " 1>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" terminée (Restore cible(s)).\r\n"] +[46.824113, "o", " 1:7>Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" sur le nœud 1 (Publish cible(s)).\r\n"] +[46.824417, "o", " 1>_CheckForNETCoreSdkIsPreview:\r\n /usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: vous utilisez une version d'aperçu de .NET. Voir : https://aka.ms/dotnet-support-policy [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj]\r\n"] +[46.843848, "o", " PrepareForBuild:\r\n"] +[46.843895, "o", " Création du répertoire \"bin/Release/net8.0/\".\r\n"] +[46.844123, "o", " Création du répertoire \"obj/Release/net8.0/\".\r\n"] +[46.844334, "o", " Création du répertoire \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/refint/\".\r\n"] +[46.844527, "o", " Création du répertoire \"obj/Release/net8.0/ref\".\r\n"] +[47.158821, "o", " _GenerateSourceLinkFile:\r\n Source Link est vide, le fichier 'obj/Release/net8.0/AwesomeFeature.sourcelink.json' n’existe pas.\r\n"] +[47.166516, "o", " CoreCompile:\r\n"] +[47.166635, "o", " /usr/local/share/dotnet/dotnet exec \"/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Roslyn/bincore/csc.dll\" /noconfig /unsafe- /checked- /nowarn:1701,1702,1701,1702 /fullpaths /nostdlib+ /errorreport:prompt /warn:8 /define:TRACE;RELEASE;NET;NET8_0;NETCOREAPP;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER /highentropyva+ /nullable:enable /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.CSharp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.VisualBasic.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.VisualBasic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsof"] +[47.166671, "o", "t.Win32.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.Win32.Registry.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/mscorlib.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/netstandard.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.AppContext.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Buffers.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Concurrent.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Immutable.dll /reference:/usr/local/share/dotnet/p"] +[47.166764, "o", "acks/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.NonGeneric.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Specialized.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.Annotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.DataAnnotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.EventBasedAsync.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.TypeConv"] +[47.166857, "o", "erter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Configuration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Console.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.Common.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.DataSetExtensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Contracts.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Debug.dll /reference:/usr/local/share/dotnet/packs/Mi"] +[47.166964, "o", "crosoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.DiagnosticSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.FileVersionInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Process.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.StackTrace.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tools.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.TraceSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tracing.dll /refe"] +[47.167038, "o", "rence:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Dynamic.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Asn1.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Tar.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Calendars.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore."] +[47.167112, "o", "App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.Brotli.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.ZipFile.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App."] +[47.167184, "o", "Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.DriveInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Watcher.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.IsolatedStorage.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.MemoryMappedFiles.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.UnmanagedMemoryStream.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETC"] +[47.16724, "o", "ore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Expressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Queryable.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Memory.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Http.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Http.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.HttpListener.dll /refe"] +[47.167306, "o", "rence:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Mail.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NameResolution.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NetworkInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Ping.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Quic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Requests.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETC"] +[47.167362, "o", "ore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.ServicePoint.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Sockets.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebClient.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebHeaderCollection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.Client.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref"] +[47.167406, "o", "/net8.0/System.Numerics.Vectors.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ObjectModel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.DispatchProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.ILGeneration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.Lightweight.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref"] +[47.167419, "o", "/net8.0/System.Reflection.Metadata.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/r"] +[47.167544, "o", "ef/net8.0/System.Reflection.TypeExtensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Reader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.ResourceManager.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Writer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8."] +[47.167607, "o", "0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Handles.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Intrinsics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Loader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.dll /reference:/usr/local/share/dotnet/pac"] +[47.167669, "o", "ks/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Formatters.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Claims.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Algorithms.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cr"] +[47.167749, "o", "yptography.Cng.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Csp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.OpenSsl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.X509Certificates.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore."] +[47.167836, "o", "App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.SecureString.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceModel.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceProcess.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.CodePages.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCo"] +[47.167907, "o", "re.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encodings.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.RegularExpressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Channels.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Overlapped.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Dataflow.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0"] +[47.167986, "o", "-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Thread.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.ThreadPool.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Timer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.Local.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ValueTuple.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479"] +[47.168068, "o", ".6/ref/net8.0/System.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Web.HttpUtility.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.ReaderWriter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Serialization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlDocument.dll /reference:/usr/local/share/d"] +[47.168139, "o", "otnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlSerializer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.XDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/WindowsBase.dll /debug- /debug:portable /filealign:512 /optimize+ /out:obj/Release/net8.0/AwesomeFeature.dll /refout:obj/Release/net8.0/refint/AwesomeFeature.dll /target:library /warnaserror- /utf8output /deterministic+ /langversion:12.0 /embed:obj/Release/net8.0/AwesomeFeature.GlobalUsings.g.cs /embed:\"obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" /embed:obj/Release/net8.0/AwesomeFeature.AssemblyInfo.cs /analyzerconfig:obj/Release/net8.0/AwesomeFeature.GeneratedMSBuildEditorConfig.editorconfig /analyzerconfig:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502."] +[47.168199, "o", "2/Sdks/Microsoft.NET.Sdk/analyzers/build/config/analysislevel_8_default.globalconfig /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAnalysis.CSharp.NetAnalyzers.dll /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAnalysis.NetAnalyzers.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.ComInterfaceGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.LibraryImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.SourceGeneration.dll /analyzer:/usr/local/share/dotnet/packs/Microso"] +[47.168249, "o", "ft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/System.Text.Json.SourceGeneration.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/System.Text.RegularExpressions.Generator.dll Class1.cs obj/Release/net8.0/AwesomeFeature.GlobalUsings.g.cs \"obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" obj/Release/net8.0/AwesomeFeature.AssemblyInfo.cs /warnaserror+:NU1605,SYSLIB0011\r\n"] +[49.328192, "o", " CompilerServer: server - server processed compilation - 0e33e2ea-5c0e-43cb-91dd-c91351f70336\r\n"] +[49.355121, "o", " CopyFilesToOutputDirectory:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/AwesomeFeature.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\".\r\n"] +[49.356958, "o", " Copie de l’assembly de référence de «obj/Release/net8.0/refint/AwesomeFeature.dll» vers «/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/ref/AwesomeFeature.dll».\r\n"] +[49.357715, "o", " AwesomeFeature -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\r\n"] +[49.35907, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.pdb\".\r\n"] +[49.368779, "o", " PrepareForPublish:\r\n Création du répertoire \"bin/Release/net8.0/publish/\".\r\n"] +[49.394389, "o", " _CopyResolvedFilesToPublishPreserveNewest:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.deps.json\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/publish/AwesomeFeature.deps.json\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/AwesomeFeature.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/publish/AwesomeFeature.dll\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/publish/AwesomeFeature.pdb\".\r\n"] +[49.397159, "o", " Publish:\r\n AwesomeFeature -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/publish/\r\n"] +[49.398628, "o", " 1>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" terminée (Publish cible(s)).\r\n"] +[49.401854, "o", "\r\n"] +[49.40192, "o", "La génération a réussi.\r\n"] +[49.402068, "o", " 0 Avertissement(s)\r\n 0 Erreur(s)\r\n"] +[49.402665, "o", "\r\nTemps écoulé 00:00:03.41\r\n"] +[49.442509, "o", "Generating Android project\r\n"] +[49.53066, "o", "[Info] Loading assembly from \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\"\r\n"] +[49.551029, "o", "[Info] Collecting types in assembly\r\n"] +[49.557413, "o", "[Info] Generating C# Code\r\n"] +[49.594499, "o", "[Info] Generating C Code\r\n"] +[49.605532, "o", "[Info] Generating Swift Code\r\n"] +[49.641789, "o", "[Info] Writing generated C# code to \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs\"\r\n"] +[49.642311, "o", "[Info] Writing generated C code to \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.h\"\r\n"] +[49.663495, "o", "Building Android library for x64\r\n"] +[49.865639, "o", "Version MSBuild 17.8.0+6cdef4241 pour .NET\r\n"] +[49.938182, "o", "La génération a démarré 09/11/2023 16:19:01.\r\n"] +[50.326564, "o", " 1>Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" sur le nœud 1 (Restore cible(s)).\r\n 1>_GetAllRestoreProjectPathItems:\r\n Identification des projets à restaurer...\r\n"] +[50.573766, "o", " Restore:\r\n X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/codesignctl.pem'.\r\n"] +[50.590131, "o", " X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/timestampctl.pem'.\r\n"] +[50.675696, "o", " Restauration des packages pour /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj...\r\n"] +[50.685904, "o", " Restauration des packages pour /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj...\r\n"] +[50.971234, "o", " GET https://api.nuget.org/v3/vulnerabilities/index.json\r\n"] +[50.976044, "o", " OK https://api.nuget.org/v3/vulnerabilities/index.json 4 ms\r\n"] +[51.012532, "o", " GET https://api.nuget.org/v3/vulnerabilities/vulnerability.base.json\r\n"] +[51.013596, "o", " GET https://api.nuget.org/v3/vulnerabilities/vulnerability.update.json\r\n"] +[51.017911, "o", " OK https://api.nuget.org/v3/vulnerabilities/vulnerability.base.json 5 ms\r\n"] +[51.033835, "o", " OK https://api.nuget.org/v3/vulnerabilities/vulnerability.update.json 20 ms\r\n"] +[51.0675, "o", " Écriture du fichier des composants sur le disque. Chemin : /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/project.assets.json\r\n"] +[51.079092, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj (en 424 ms).\r\n"] +[51.139404, "o", " Génération du fichier MSBuild /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/AwesomeFeature.Generated.csproj.nuget.g.props.\r\n"] +[51.141572, "o", " Génération du fichier MSBuild /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/AwesomeFeature.Generated.csproj.nuget.g.targets.\r\n"] +[51.141917, "o", " Écriture du fichier des composants sur le disque. Chemin : /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/project.assets.json\r\n"] +[51.145554, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj (en 499 ms).\r\n"] +[51.146772, "o", " \r\n Fichiers de configuration NuGet utilisés :\r\n /Users/hpcl/.nuget/NuGet/NuGet.Config\r\n \r\n Flux utilisés :\r\n https://api.nuget.org/v3/index.json\r\n"] +[51.147779, "o", " 1>"] +[51.147902, "o", "Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" terminée (Restore cible(s)).\r\n"] +[51.201572, "o", " 1:7>Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" sur le nœud 1 (Publish cible(s)).\r\n"] +[51.201897, "o", " 1>_CheckForNETCoreSdkIsPreview:\r\n /usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: vous utilisez une version d'aperçu de .NET. Voir : https://aka.ms/dotnet-support-policy [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[51.220201, "o", " PrepareForBuild:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-x64/\".\r\n"] +[51.220589, "o", " Création du répertoire \"obj/Release/net8.0/linux-bionic-x64/\".\r\n"] +[51.220823, "o", " Création du répertoire \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/refint/\".\r\n"] +[51.220921, "o", " Création du répertoire \"obj/Release/net8.0/linux-bionic-x64/ref\".\r\n"] +[51.485344, "o", " 1:7>Le projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (1:7) génère \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" (2:6) sur le nœud 1 (cibles par défaut).\r\n"] +[51.485454, "o", " 2>GenerateTargetFrameworkMonikerAttribute:\r\n La cible est ignorée \"GenerateTargetFrameworkMonikerAttribute\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[51.536041, "o", " CoreGenerateAssemblyInfo:\r\n La cible est ignorée \"CoreGenerateAssemblyInfo\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[51.577169, "o", " _GenerateSourceLinkFile:\r\n Source Link est vide, le fichier 'obj/Release/net8.0/AwesomeFeature.sourcelink.json' n’existe pas.\r\n"] +[51.582718, "o", " CoreCompile:\r\n La cible est ignorée \"CoreCompile\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[51.603909, "o", " CopyFilesToOutputDirectory:\r\n AwesomeFeature -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\r\n"] +[51.611808, "o", " 2>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" terminée (cibles par défaut).\r\n"] +[51.705153, "o", " 1>_GenerateSourceLinkFile:\r\n Source Link est vide, le fichier 'obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.sourcelink.json' n’existe pas.\r\n"] +[51.710768, "o", " CoreCompile:\r\n /usr/local/share/dotnet/dotnet exec \"/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Roslyn/bincore/csc.dll\" /noconfig /unsafe+ /checked- /nowarn:1701,1702,IL2121,1701,1702 /fullpaths /nostdlib+ /platform:x64 /errorreport:prompt /warn:8 /define:TRACE;RELEASE;NET;NET8_0;NETCOREAPP;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER /highentropyva+ /nullable:disable /reference:/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/ref/AwesomeFeature.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.CSharp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.VisualBasic.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8"] +[51.710869, "o", ".0.0-rc.2.23479.6/ref/net8.0/Microsoft.VisualBasic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.Win32.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.Win32.Registry.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/mscorlib.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/netstandard.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.AppContext.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Buffers.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Concurrent.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.dll /refer"] +[51.710967, "o", "ence:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Immutable.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.NonGeneric.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Specialized.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.Annotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.DataAnnotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.EventBasedAsync.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Syst"] +[51.710987, "o", "em.ComponentModel.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.TypeConverter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Configuration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Console.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.Common.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.DataSetExtensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Contracts.dll /referenc"] +[51.71108, "o", "e:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Debug.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.DiagnosticSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.FileVersionInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Process.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.StackTrace.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tools.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.D"] +[51.711129, "o", "iagnostics.TraceSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tracing.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Dynamic.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Asn1.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Tar.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Calendars.dll /reference:/usr/local"] +[51.711175, "o", "/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.Brotli.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.ZipFile.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.AccessControl.dll /reference:/usr/local/sha"] +[51.711238, "o", "re/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.DriveInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Watcher.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.IsolatedStorage.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.MemoryMappedFiles.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.dll /reference:/usr/local/share/"] +[51.7113, "o", "dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.UnmanagedMemoryStream.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Expressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Queryable.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Memory.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Http.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/ne"] +[51.711384, "o", "t8.0/System.Net.Http.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.HttpListener.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Mail.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NameResolution.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NetworkInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Ping.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Quic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Requests.dll /reference:/usr/"] +[51.711487, "o", "local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.ServicePoint.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Sockets.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebClient.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebHeaderCollection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.Client.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.dll /reference:/usr/local/share/dotnet/packs/Micro"] +[51.711553, "o", "soft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Numerics.Vectors.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ObjectModel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.DispatchProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.ILGeneration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.Lightweight.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore."] +[51.711603, "o", "App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Metadata.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.TypeExtensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Reader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.ResourceManager.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Writer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll /reference:/usr/local/share/dotnet/pa"] +[51.711652, "o", "cks/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Handles.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Intrinsics.dll "] +[51.711698, "o", "/reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Loader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Formatters.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8."] +[51.711743, "o", "0/System.Security.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Claims.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Algorithms.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Cng.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Csp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.OpenSsl.dll /reference:/usr/local/share/dotnet/packs/Microso"] +[51.711788, "o", "ft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.X509Certificates.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.SecureString.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceModel.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceProcess.dll /reference:/usr/local/share"] +[51.711834, "o", "/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.CodePages.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encodings.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.RegularExpressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Channels.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.dll /reference:/usr/local/share/dotnet/packs/M"] +[51.711878, "o", "icrosoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Overlapped.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Dataflow.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Thread.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.ThreadPool.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Timer.dll /reference:/usr/local/share/dotnet"] +[51.71192, "o", "/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.Local.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ValueTuple.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Web.HttpUtility.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Re"] +[51.711964, "o", "aderWriter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Serialization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlSerializer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.XDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/WindowsBase.dll /debug- /debug:portable /filealign:512 /optimize+ /out:obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll /refout:obj/Release/net8.0/linux"] +[51.712017, "o", "-bionic-x64/refint/AwesomeFeature.Generated.dll /target:library /warnaserror- /utf8output /deterministic+ /langversion:Preview /embed:obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.GlobalUsings.g.cs /embed:\"obj/Release/net8.0/linux-bionic-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" /embed:obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.AssemblyInfo.cs /analyzerconfig:obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.GeneratedMSBuildEditorConfig.editorconfig /analyzerconfig:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/analyzers/build/config/analysislevel_8_default.globalconfig /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAnalysis.CSharp.NetAnalyzers.dll /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAnalysis.NetAnalyzers.dll /analyzer:/Users/hpcl/.nuget/packages/microsoft.net.illink.tasks/8.0.0-rc.2"] +[51.712093, "o", ".23479.6/analyzers/dotnet/cs/ILLink.CodeFixProvider.dll /analyzer:/Users/hpcl/.nuget/packages/microsoft.net.illink.tasks/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.ComInterfaceGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.LibraryImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.SourceGeneration.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/System.Text.Json.SourceGeneration.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/d"] +[51.712148, "o", "otnet/cs/System.Text.RegularExpressions.Generator.dll Generated.cs obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.GlobalUsings.g.cs \"obj/Release/net8.0/linux-bionic-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.AssemblyInfo.cs /warnaserror+:NU1605,SYSLIB0011\r\n"] +[52.118934, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(77,68): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(153,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[52.11908, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(168,69): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(114,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(157,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/cl"] +[52.119107, "o", "ients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(262,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[52.119191, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(283,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(17,6): warning CA2255: The 'ModuleInitializer' attribute is only intended to be used in application code or advanced source generator scenarios (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2255) [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[52.119216, "o", " 1>"] +[52.119273, "o", "/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1408,32): warning IL3050: Using member 'System.Type.MakeArrayType()' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The code for an array of the specified type might not be available. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>"] +[52.119405, "o", "/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL3050: Using member 'System.Type.MakeGenericType(params Type[])' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The native code for this instantiation might not be available at runtime. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[52.119435, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL2055: Call to 'System.Type.MakeGenericType(params Type[])' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic type. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1010,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetEvents()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuid"] +[52.119527, "o", "oc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1196,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicMethods' in call to 'System.Type.GetMethods()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(979,56): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors' in call to 'System.Type.GetConstructors()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it "] +[52.119622, "o", "is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1346,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.Interfaces' in call to 'System.Type.GetInterfaces()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[52.119704, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1227,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicNestedTypes' in call to 'System.Type.GetNestedTypes()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1289,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMem"] +[52.119779, "o", "berTypes.PublicEvents' in call to 'System.Type.GetDefaultMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1165,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotatio"] +[52.119812, "o", "ns. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1258,53): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties' in call to 'System.Type.GetProperties()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1041,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicFiel"] +[52.11992, "o", "ds' in call to 'System.Type.GetFields()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n CompilerServer: server - server processed compilation - 2f5c91c6-717e-4abf-a615-c603596f11c8\r\n"] +[52.126563, "o", " _CopyFilesMarkedCopyLocal:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/AwesomeFeature.pdb\".\r\n"] +[52.126666, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/AwesomeFeature.dll\".\r\n"] +[52.128142, "o", " Création de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.csproj.CopyComplete\", car \"AlwaysCreate\" a été spécifié.\r\n"] +[52.128262, "o", " Mise à jour de l'horodatage \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.csproj.CopyComplete\".\r\n"] +[52.400171, "o", " CopyFilesToOutputDirectory:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll\".\r\n"] +[52.401732, "o", " Copie de l’assembly de référence de «obj/Release/net8.0/linux-bionic-x64/refint/AwesomeFeature.Generated.dll» vers «/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/ref/AwesomeFeature.Generated.dll».\r\n"] +[52.402431, "o", " AwesomeFeature.Generated -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll\r\n"] +[52.403338, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.pdb\".\r\n"] +[52.424225, "o", " PrepareForPublish:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-x64/publish/\".\r\n"] +[52.446618, "o", " SetupOSSpecificProps:\r\n command -v \"./android_fake_clang.command\"\r\n"] +[52.808984, "o", " \"./android_fake_clang.command\" -fuse-ld=lld -Wl,--version\r\n"] +[53.365438, "o", " command -v \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\"\r\n"] +[53.591384, "o", " WriteIlcRspFileForCompilation:\r\n Création du répertoire \"obj/Release/net8.0/linux-bionic-x64/native/\".\r\n"] +[53.594287, "o", " IlcCompile:\r\n Generating native code\r\n"] +[53.595191, "o", " \"/Users/hpcl/.nuget/packages/runtime.osx-x64.microsoft.dotnet.ilcompiler/8.0.0-rc.2.23479.6/tools/ilc\" @\"obj/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.ilc.rsp\"\r\n"] +[54.151615, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll : warning IL2104: Assembly 'AwesomeFeature.Generated' produced trim warnings. For more information see https://aka.ms/dotnet-illink/libraries [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[54.151947, "o", " 1>"] +[54.152066, "o", "/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll : warning IL3053: Assembly 'AwesomeFeature.Generated' produced AOT analysis warnings. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[55.881773, "o", " RemoveSections:\r\n sed -i -z 's/global: _init; _fini;/global: /g;' obj/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.exports\r\n"] +[56.106398, "o", " LinkNative:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-x64/native\".\r\n"] +[56.107936, "o", " \"./android_fake_clang.command\" \"obj/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.o\" -o \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\" -Wl,--version-script=obj/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.exports --target=x86_64-linux-android21 -gz=zlib -fuse-ld=lld /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libbootstrapperdll.o /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libRuntime.WorkstationGC.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libeventpipe-disabled.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libstdc++compat.a /Users/hpcl/.nuget/packages/microsoft.netcore.a"] +[56.107965, "o", "pp.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libSystem.Native.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libSystem.IO.Compression.Native.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-x64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-x64/native/libSystem.Security.Cryptography.Native.OpenSsl.a --sysroot=/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -g -Wl,-rpath,'$ORIGIN' -Wl,--build-id=sha1 -Wl,--as-needed -Wl,-e0x0 -pthread -ldl -lz -llog -lm -shared -Wl,-z,relro -Wl,-z,now -Wl,--eh-frame-hdr -Wl,--discard-all -Wl,--gc-sections -Wl,-T,\"obj/Release/net8.0/linux-bionic-x64/native/sections.ld\"\r\n"] +[56.459857, "o", " chmod 644 \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\"\r\n"] +[56.676535, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --only-keep-debug \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\" \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so.dbg\"\r\n"] +[56.925795, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --strip-debug --strip-unneeded \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\"\r\n"] +[57.166333, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --add-gnu-debuglink=\"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so.dbg\" \"bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\"\r\n"] +[57.398315, "o", " _CopyResolvedFilesToPublishPreserveNewest:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/AwesomeFeature.pdb\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/AwesomeFeature.Generated.so\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/AwesomeFeature.Generated.pdb\".\r\n"] +[57.400407, "o", " Publish:\r\n AwesomeFeature.Generated -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/\r\n"] +[57.400853, "o", " CopyNativeBinary:\r\n Suppression du fichier \"bin/Release/net8.0/linux-bionic-x64/publish//AwesomeFeature.Generated.so\".\r\n"] +[57.401483, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/AwesomeFeature.Generated.so\".\r\n"] +[57.401903, "o", " Suppression du fichier \"bin/Release/net8.0/linux-bionic-x64/publish//AwesomeFeature.Generated.pdb\".\r\n"] +[57.40282, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/native/AwesomeFeature.Generated.so.dbg\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-x64/publish/AwesomeFeature.Generated.so.dbg\".\r\n"] +[57.403668, "o", " 1>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" terminée (Publish cible(s)).\r\n"] +[57.407087, "o", "\r\n"] +[57.407264, "o", "La génération a réussi.\r\n"] +[57.408407, "o", "\r\n"] +[57.408434, "o", " \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (Publish cible) (1:7) ->\r\n"] +[57.408454, "o", " (CoreCompile cible) -> \r\n"] +[57.408467, "o", " /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(77,68): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(153,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[57.408672, "o", " /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(168,69): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(114,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(157,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/W"] +[57.408743, "o", "ork/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(262,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(283,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(17,6): warning CA2255: The 'ModuleInitializer' attribute is only intended to be used in"] +[57.408821, "o", " application code or advanced source generator scenarios (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2255) [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1408,32): warning IL3050: Using member 'System.Type.MakeArrayType()' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The code for an array of the specified type might not be available. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL3050: Using member 'System.Type.MakeGenericType(params Type[])' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The native code for this instantiation might not be available at runtime. [/Users"] +[57.408873, "o", "/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL2055: Call to 'System.Type.MakeGenericType(params Type[])' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic type. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1010,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetEvents()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp"] +[57.40892, "o", "-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1196,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicMethods' in call to 'System.Type.GetMethods()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(979,56): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors' in call to 'System.Type.GetConstructors()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotati"] +[57.408934, "o", "ons. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[57.409, "o", " /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1346,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.Interfaces' in call to 'System.Type.GetInterfaces()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1227,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicNestedTypes' in call to 'System.Type.GetNestedTypes()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as "] +[57.409046, "o", "those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1289,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetDefaultMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /"] +[57.409091, "o", "Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1165,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1258,53): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.Public"] +[57.40914, "o", "Properties' in call to 'System.Type.GetProperties()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1041,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicFields' in call to 'System.Type.GetFields()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n\r\n\r\n \"/Users/hpcl/Work/cl"] +[57.409192, "o", "ients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (Publish cible) (1:7) ->\r\n (IlcCompile cible) -> \r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll : warning IL2104: Assembly 'AwesomeFeature.Generated' produced trim warnings. For more information see https://aka.ms/dotnet-illink/libraries [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-x64/AwesomeFeature.Generated.dll : warning IL3053: Assembly 'AwesomeFeature.Generated' produced AOT analysis warnings. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n\r\n 22 Avertissement(s)\r\n 0 Erreur(s)\r\n"] +[57.409275, "o", "\r\nTemps écoulé 00:00:07.47\r\n"] +[57.44555, "o", "Building Android library for arm64\r\n"] +[57.641065, "o", "Version MSBuild 17.8.0+6cdef4241 pour .NET\r\n"] +[57.712683, "o", "La génération a démarré 09/11/2023 16:19:08.\r\n"] +[58.097995, "o", " 1>"] +[58.099057, "o", "Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" sur le nœud 1 (Restore cible(s)).\r\n"] +[58.099977, "o", " 1>_GetAllRestoreProjectPathItems:\r\n Identification des projets à restaurer...\r\n"] +[58.348334, "o", " Restore:\r\n X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/codesignctl.pem'.\r\n"] +[58.364644, "o", " X.509 certificate chain validation will use the fallback certificate bundle at '/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/trustedroots/timestampctl.pem'.\r\n"] +[58.461957, "o", " Restauration des packages pour /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj...\r\n Restauration des packages pour /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj...\r\n"] +[58.536842, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/index.json\r\n"] +[58.569065, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/vulnerability.base.json\r\n"] +[58.581882, "o", " CACHE https://api.nuget.org/v3/vulnerabilities/vulnerability.update.json\r\n"] +[58.615305, "o", " Écriture du fichier des composants sur le disque. Chemin : /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/project.assets.json\r\n"] +[58.625945, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj (en 198 ms).\r\n"] +[58.684623, "o", " Écriture du fichier des composants sur le disque. Chemin : /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/project.assets.json\r\n"] +[58.688399, "o", " Restauration effectuée de /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj (en 270 ms).\r\n"] +[58.689651, "o", " \r\n Fichiers de configuration NuGet utilisés :\r\n /Users/hpcl/.nuget/NuGet/NuGet.Config\r\n \r\n Flux utilisés :\r\n https://api.nuget.org/v3/index.json\r\n"] +[58.6907, "o", " 1>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" terminée (Restore cible(s)).\r\n"] +[58.747513, "o", " 1:7>Projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" sur le nœud 1 (Publish cible(s)).\r\n"] +[58.747824, "o", " 1>_CheckForNETCoreSdkIsPreview:\r\n /usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: vous utilisez une version d'aperçu de .NET. Voir : https://aka.ms/dotnet-support-policy [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[58.767246, "o", " PrepareForBuild:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-arm64/\".\r\n"] +[58.76737, "o", " Création du répertoire \"obj/Release/net8.0/linux-bionic-arm64/\".\r\n"] +[58.76751, "o", " Création du répertoire \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/refint/\".\r\n"] +[58.767606, "o", " Création du répertoire \"obj/Release/net8.0/linux-bionic-arm64/ref\".\r\n"] +[59.030797, "o", " 1:7>Le projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (1:7) génère \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" (2:6) sur le nœud 1 (cibles par défaut).\r\n 2>GenerateTargetFrameworkMonikerAttribute:\r\n La cible est ignorée \"GenerateTargetFrameworkMonikerAttribute\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[59.079938, "o", " CoreGenerateAssemblyInfo:\r\n La cible est ignorée \"CoreGenerateAssemblyInfo\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[59.121945, "o", " _GenerateSourceLinkFile:\r\n Source Link est vide, le fichier 'obj/Release/net8.0/AwesomeFeature.sourcelink.json' n’existe pas.\r\n"] +[59.128118, "o", " CoreCompile:\r\n La cible est ignorée \"CoreCompile\", car tous les fichiers de sortie sont à jour par rapport aux fichiers d'entrée.\r\n"] +[59.149328, "o", " CopyFilesToOutputDirectory:\r\n AwesomeFeature -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\r\n"] +[59.156306, "o", " 2>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/AwesomeFeature.csproj\" terminée (cibles par défaut).\r\n"] +[59.250686, "o", " 1>_GenerateSourceLinkFile:\r\n Source Link est vide, le fichier 'obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.sourcelink.json' n’existe pas.\r\n"] +[59.256311, "o", " CoreCompile:\r\n"] +[59.256403, "o", " /usr/local/share/dotnet/dotnet exec \"/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Roslyn/bincore/csc.dll\" /noconfig /unsafe+ /checked- /nowarn:1701,1702,IL2121,1701,1702 /fullpaths /nostdlib+ /platform:arm64 /errorreport:prompt /warn:8 /define:TRACE;RELEASE;NET;NET8_0;NETCOREAPP;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER /highentropyva+ /nullable:disable /reference:/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/obj/Release/net8.0/ref/AwesomeFeature.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.CSharp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.VisualBasic.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/r"] +[59.256489, "o", "ef/net8.0/Microsoft.VisualBasic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.Win32.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Microsoft.Win32.Registry.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/mscorlib.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/netstandard.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.AppContext.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Buffers.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Concurrent.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.dll /reference:/usr/local/sha"] +[59.256518, "o", "re/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Immutable.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.NonGeneric.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Collections.Specialized.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.Annotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.DataAnnotations.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.dll /re"] +[59.256533, "o", "ference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.EventBasedAsync.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ComponentModel.TypeConverter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Configuration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Console.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Core.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.Common.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.DataSetExtensions.dll /reference:/usr"] +[59.256651, "o", "/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Data.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Contracts.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Debug.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.DiagnosticSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.FileVersionInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Process.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.StackTrace.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.TextWriterTraceListene"] +[59.25667, "o", "r.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tools.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.TraceSource.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Diagnostics.Tracing.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Drawing.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Dynamic.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Asn1.dll /reference:/usr/local/share/dotnet/p"] +[59.256768, "o", "acks/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Formats.Tar.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Calendars.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Globalization.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.Brotli.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Compression.ZipFile.dll /reference:/usr/local/share/dotnet/"] +[59.256851, "o", "packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.DriveInfo.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.FileSystem.Watcher.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.IsolatedStorage.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.MemoryMappedFiles.dll /reference:/usr/local/share/dotnet/pack"] +[59.256885, "o", "s/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.Pipes.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.IO.UnmanagedMemoryStream.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Expressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Linq.Queryable.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Memory.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479."] +[59.257048, "o", "6/ref/net8.0/System.Net.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Http.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Http.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.HttpListener.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Mail.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NameResolution.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.NetworkInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Ping.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Primitives.dll /reference:/usr/l"] +[59.257143, "o", "ocal/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Quic.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Requests.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.ServicePoint.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.Sockets.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebClient.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebHeaderCollection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App"] +[59.257199, "o", ".Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.Client.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Net.WebSockets.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Numerics.Vectors.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ObjectModel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.DispatchProxy.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8."] +[59.257267, "o", "0/System.Reflection.Emit.ILGeneration.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Emit.Lightweight.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Metadata.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Reflection.TypeExtensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Reader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.ResourceManager.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Re"] +[59.257285, "o", "f/8.0.0-rc.2.23479.6/ref/net8.0/System.Resources.Writer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Handles.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll /reference:/usr/local/share/dotnet/packs/"] +[59.25741, "o", "Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Intrinsics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Loader.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Numerics.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Formatters.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Primiti"] +[59.257438, "o", "ves.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Runtime.Serialization.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.AccessControl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Claims.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Algorithms.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Cng.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Csp.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/re"] +[59.257522, "o", "f/net8.0/System.Security.Cryptography.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.OpenSsl.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.Primitives.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Cryptography.X509Certificates.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.Principal.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Security.SecureString.dll /reference:/usr/local/share/dotnet/pac"] +[59.257602, "o", "ks/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceModel.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ServiceProcess.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.CodePages.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encoding.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Encodings.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.Json.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Text.RegularExpressions.dll /reference:/usr/local/share/dotnet/packs/Microsoft"] +[59.25767, "o", ".NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Channels.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Overlapped.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Dataflow.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Extensions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Tasks.Parallel.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Thread.dll /reference:/usr/local/share/dotnet/packs/Microsoft"] +[59.258376, "o", ".NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.ThreadPool.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Threading.Timer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Transactions.Local.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.ValueTuple.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Web.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Web.HttpUtility.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Windows.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/Syste"] +[59.258439, "o", "m.Xml.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Linq.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.ReaderWriter.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.Serialization.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlDocument.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XmlSerializer.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.dll /reference:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/System.Xml.XPath.XDocument.dll /reference:/usr/local/share/"] +[59.258514, "o", "dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/ref/net8.0/WindowsBase.dll /debug- /debug:portable /filealign:512 /optimize+ /out:obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll /refout:obj/Release/net8.0/linux-bionic-arm64/refint/AwesomeFeature.Generated.dll /target:library /warnaserror- /utf8output /deterministic+ /langversion:Preview /embed:obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.GlobalUsings.g.cs /embed:\"obj/Release/net8.0/linux-bionic-arm64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" /embed:obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.AssemblyInfo.cs /analyzerconfig:obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.GeneratedMSBuildEditorConfig.editorconfig /analyzerconfig:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/analyzers/build/config/analysislevel_8_default.globalconfig /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAn"] +[59.258561, "o", "alysis.CSharp.NetAnalyzers.dll /analyzer:/usr/local/share/dotnet/sdk/8.0.100-rc.2.23502.2/Sdks/Microsoft.NET.Sdk/targets/../analyzers/Microsoft.CodeAnalysis.NetAnalyzers.dll /analyzer:/Users/hpcl/.nuget/packages/microsoft.net.illink.tasks/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/ILLink.CodeFixProvider.dll /analyzer:/Users/hpcl/.nuget/packages/microsoft.net.illink.tasks/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.ComInterfaceGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.LibraryImportGenerator.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/Microsoft.Interop.SourceGener"] +[59.260434, "o", "ation.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/System.Text.Json.SourceGeneration.dll /analyzer:/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.0-rc.2.23479.6/analyzers/dotnet/cs/System.Text.RegularExpressions.Generator.dll Generated.cs obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.GlobalUsings.g.cs \"obj/Release/net8.0/linux-bionic-arm64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs\" obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.AssemblyInfo.cs /warnaserror+:NU1605,SYSLIB0011\r\n"] +[59.49611, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(77,68): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(153,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[59.496373, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(168,69): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[59.496451, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(114,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(157,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(262,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/cl"] +[59.496707, "o", "ients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(283,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(17,6): warning CA2255: The 'ModuleInitializer' attribute is only intended to be used in application code or advanced source generator scenarios (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2255) [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(979,56): warning IL2075: 'this' argume"] +[59.496831, "o", "nt does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors' in call to 'System.Type.GetConstructors()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1010,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetEvents()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Aweso"] +[59.496974, "o", "meFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1041,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicFields' in call to 'System.Type.GetFields()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1165,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'Dyn"] +[59.497129, "o", "amicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1196,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicMethods' in call to 'System.Type.GetMethods()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n "] +[59.497311, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1227,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicNestedTypes' in call to 'System.Type.GetNestedTypes()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1258,53): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties' in call to 'System.Type.GetProperties()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as th"] +[59.497397, "o", "ose declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1289,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetDefaultMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>"] +[59.497685, "o", "/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1346,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.Interfaces' in call to 'System.Type.GetInterfaces()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1408,32): warning IL3050: Using member 'System.Type.MakeArrayType()' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The code for an array of the specified type might not be available. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpc"] +[59.497876, "o", "l/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL3050: Using member 'System.Type.MakeGenericType(params Type[])' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The native code for this instantiation might not be available at runtime. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL2055: Call to 'System.Type.MakeGenericType(params Type[])' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic type. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n CompilerServer: server - server processed compilation - 89f6c066-2345-4601-b2ee-640a43eb93b1\r\n"] +[59.503902, "o", " _CopyFilesMarkedCopyLocal:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/AwesomeFeature.dll\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/AwesomeFeature.pdb\".\r\n"] +[59.505145, "o", " Création de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.csproj.CopyComplete\", car \"AlwaysCreate\" a été spécifié.\r\n"] +[59.505295, "o", " Mise à jour de l'horodatage \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.csproj.CopyComplete\".\r\n"] +[59.705434, "o", " CopyFilesToOutputDirectory:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll\".\r\n"] +[59.706503, "o", " Copie de l’assembly de référence de «obj/Release/net8.0/linux-bionic-arm64/refint/AwesomeFeature.Generated.dll» vers «/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/ref/AwesomeFeature.Generated.dll».\r\n"] +[59.707182, "o", " AwesomeFeature.Generated -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll\r\n"] +[59.707768, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.pdb\".\r\n"] +[59.713425, "o", " PrepareForPublish:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-arm64/publish/\".\r\n"] +[59.742951, "o", " SetupOSSpecificProps:\r\n command -v \"./android_fake_clang.command\"\r\n"] +[59.947261, "o", " \"./android_fake_clang.command\" -fuse-ld=lld -Wl,--version\r\n"] +[60.204055, "o", " command -v \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\"\r\n"] +[60.428662, "o", " WriteIlcRspFileForCompilation:\r\n Création du répertoire \"obj/Release/net8.0/linux-bionic-arm64/native/\".\r\n"] +[60.430937, "o", " IlcCompile:\r\n Generating native code\r\n"] +[60.431799, "o", " \"/Users/hpcl/.nuget/packages/runtime.osx-x64.microsoft.dotnet.ilcompiler/8.0.0-rc.2.23479.6/tools/ilc\" @\"obj/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.ilc.rsp\"\r\n"] +[60.98795, "o", " 1>/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll : warning IL2104: Assembly 'AwesomeFeature.Generated' produced trim warnings. For more information see https://aka.ms/dotnet-illink/libraries [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[60.988261, "o", " 1>"] +[60.98846, "o", "/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll : warning IL3053: Assembly 'AwesomeFeature.Generated' produced AOT analysis warnings. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[62.71791, "o", " RemoveSections:\r\n sed -i -z 's/global: _init; _fini;/global: /g;' obj/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.exports\r\n"] +[62.942565, "o", " LinkNative:\r\n Création du répertoire \"bin/Release/net8.0/linux-bionic-arm64/native\".\r\n"] +[62.94475, "o", " \"./android_fake_clang.command\" \"obj/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.o\" -o \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\" -Wl,--version-script=obj/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.exports --target=aarch64-linux-android21 -gz=zlib -fuse-ld=lld /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libbootstrapperdll.o /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libRuntime.WorkstationGC.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libeventpipe-disabled.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libstdc++compat.a /Users/hpcl/.nuget/packa"] +[62.944921, "o", "ges/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libSystem.Native.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libSystem.IO.Compression.Native.a /Users/hpcl/.nuget/packages/microsoft.netcore.app.runtime.nativeaot.linux-bionic-arm64/8.0.0-rc.2.23479.6/runtimes/linux-bionic-arm64/native/libSystem.Security.Cryptography.Native.OpenSsl.a --sysroot=/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/sysroot --target=aarch64-linux-android21 -g -Wl,-rpath,'$ORIGIN' -Wl,--build-id=sha1 -Wl,--as-needed -Wl,-e0x0 -pthread -ldl -lz -llog -lm -shared -Wl,-z,relro -Wl,-z,now -Wl,--eh-frame-hdr -Wl,--discard-all -Wl,--gc-sections -Wl,-T,\"obj/Release/net8.0/linux-bionic-arm64/native/sections.ld\"\r\n"] +[63.295305, "o", " chmod 644 \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\"\r\n"] +[63.501102, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --only-keep-debug \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\" \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so.dbg\"\r\n"] +[63.749389, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --strip-debug --strip-unneeded \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\"\r\n"] +[63.995839, "o", " \"/Users/hpcl/Library/Android/sdk/ndk/26.1.10909125/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy\" --add-gnu-debuglink=\"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so.dbg\" \"bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\"\r\n"] +[64.230952, "o", " _CopyResolvedFilesToPublishPreserveNewest:\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/AwesomeFeature.Generated.pdb\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/AwesomeFeature.Generated.so\".\r\n Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature/bin/Release/net8.0/AwesomeFeature.pdb\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/AwesomeFeature.pdb\".\r\n"] +[64.233445, "o", " Publish:\r\n"] +[64.233468, "o", " AwesomeFeature.Generated -> /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/\r\n"] +[64.234007, "o", " CopyNativeBinary:\r\n Suppression du fichier \"bin/Release/net8.0/linux-bionic-arm64/publish//AwesomeFeature.Generated.so\".\r\n"] +[64.234691, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/AwesomeFeature.Generated.so\".\r\n"] +[64.235119, "o", " Suppression du fichier \"bin/Release/net8.0/linux-bionic-arm64/publish//AwesomeFeature.Generated.pdb\".\r\n"] +[64.236131, "o", " Copie du fichier de \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/native/AwesomeFeature.Generated.so.dbg\" vers \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/bin/Release/net8.0/linux-bionic-arm64/publish/AwesomeFeature.Generated.so.dbg\".\r\n"] +[64.236734, "o", " 1>Génération du projet \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" terminée (Publish cible(s)).\r\n"] +[64.240115, "o", "\r\n"] +[64.240203, "o", "La génération a réussi.\r\n"] +[64.241255, "o", "\r\n"] +[64.24136, "o", " \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (Publish cible) (1:7) ->\r\n (CoreCompile cible) -> \r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(77,68): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(153,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(168,69): w"] +[64.241456, "o", "arning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(114,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n"] +[64.24153, "o", " /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(157,15): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(262,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(283,22): warning CS8632: L'annotation pour les types référence Nullable doit être utilisée uniquement dans le code au sein d'un contexte d'annotations '#nullable'. [/Users/hpcl/W"] +[64.241644, "o", "ork/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(17,6): warning CA2255: The 'ModuleInitializer' attribute is only intended to be used in application code or advanced source generator scenarios (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2255) [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(979,56): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors' in call to 'System.Type.GetConstructors()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Us"] +[64.241668, "o", "ers/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1010,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetEvents()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1041,50): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicFields' in call to 'System.Type.GetFields()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does no"] +[64.241775, "o", "t have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1165,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuido"] +[64.242347, "o", "c/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1196,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicMethods' in call to 'System.Type.GetMethods()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1227,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicNestedTypes' in call to 'System.Type.GetNestedTypes()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching a"] +[64.242467, "o", "nnotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1258,53): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties' in call to 'System.Type.GetProperties()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1289,51): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberType"] +[64.242622, "o", "s.PublicConstructors', 'DynamicallyAccessedMemberTypes.PublicMethods', 'DynamicallyAccessedMemberTypes.PublicFields', 'DynamicallyAccessedMemberTypes.PublicNestedTypes', 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.PublicEvents' in call to 'System.Type.GetDefaultMembers()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1346,34): warning IL2075: 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.Interfaces' in call to 'System.Type.GetInterfaces()'. The return value of method 'NativeGeneratedCode.InteropUtils.GetInstance(Void*)' does not have matching annotations. "] +[64.242688, "o", "The source value must declare at least the same requirements as those declared on the target location it is assigned to. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1408,32): warning IL3050: Using member 'System.Type.MakeArrayType()' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The code for an array of the specified type might not be available. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL3050: Using member 'System.Type.MakeGenericType(params Type[])' which has 'RequiresDynamicCodeAttribute' can break functionality when AOT compiling. The native code for this instantiation might not be available at runtime. [/Users/hpcl/Work/clients/in"] +[64.242846, "o", "tuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/Generated.cs(1471,32): warning IL2055: Call to 'System.Type.MakeGenericType(params Type[])' can not be statically analyzed. It's not possible to guarantee the availability of requirements of the generic type. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n\r\n\r\n \"/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj\" (Publish cible) (1:7) ->\r\n (IlcCompile cible) -> \r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll : warning IL2104: Assembly 'AwesomeFeature.Generated' produced trim warnings. For more information see https://aka.ms/dotnet-illink/libraries [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated"] +[64.242925, "o", "/AwesomeFeature.Generated.csproj]\r\n /Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/obj/Release/net8.0/linux-bionic-arm64/AwesomeFeature.Generated.dll : warning IL3053: Assembly 'AwesomeFeature.Generated' produced AOT analysis warnings. [/Users/hpcl/Work/clients/intuidoc/csharp-flutter/AwesomeFeature.Generated/AwesomeFeature.Generated.csproj]\r\n\r\n 22 Avertissement(s)\r\n 0 Erreur(s)\r\n\r\nTemps écoulé 00:00:06.53\r\n"] +[64.276962, "o", "Copying header to output directory\r\n"] +[64.280833, "o", "Finished building. See /Users/hpcl/Work/clients/intuidoc/csharp-flutter/build.log for details.\r\n"] +[64.281421, "o", "\u001b[?2004h"] +[64.281445, "o", "bash-5.2$ "] +[66.438523, "o", "c"] +[66.52498, "o", "d"] +[66.630881, "o", " "] +[66.765737, "o", "l"] +[66.849052, "o", "i"] +[66.987293, "o", "bs/"] +[67.679417, "o", "\r\n\u001b[?2004l\r"] +[67.67961, "o", "\u001b[?2004hbash-5.2$ "] +[68.440672, "o", "l"] +[68.558648, "o", "s"] +[68.692127, "o", " "] +[68.822209, "o", "-"] +[68.838897, "o", ")"] +[69.774053, "o", "\b\u001b[K"] +[70.024211, "o", "l"] +[70.124052, "o", "a"] +[70.295972, "o", "\r\n\u001b[?2004l\r"] +[70.301449, "o", "total 24\r\n"] +[70.301876, "o", "drwxr-xr-x@ 5 hpcl staff 160 9 nov 16:19 .\r\ndrwxr-xr-x@ 19 hpcl staff 608 9 nov 16:19 ..\r\n-rw-r--r--@ 1 hpcl staff 12173 9 nov 16:19 AwesomeFeature.h\r\n"] +[70.301896, "o", "drwxr-xr-x@ 3 hpcl staff 96 9 nov 16:19 arm64-v8a\r\ndrwxr-xr-x@ 3 hpcl staff 96 9 nov 16:19 x86_64\r\n"] +[70.302501, "o", "\u001b[?2004h"] +[70.302582, "o", "bash-5.2$ "] +[72.589769, "o", "\u001b[?2004l\r\r\n"] +[72.589966, "o", "exit\r\n"] diff --git a/demo.png b/demo.png new file mode 100644 index 0000000..bda627c Binary files /dev/null and b/demo.png differ diff --git a/flutter_example/.gitignore b/flutter_example/.gitignore deleted file mode 100644 index 514217d..0000000 --- a/flutter_example/.gitignore +++ /dev/null @@ -1,48 +0,0 @@ -# Miscellaneous -*.class -*.log -*.pyc -*.swp -.DS_Store -.atom/ -.buildlog/ -.history -.svn/ -migrate_working_dir/ - -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ - -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ - -# Flutter/Dart/Pub related -**/doc/api/ -**/ios/Flutter/.last_build_id -.dart_tool/ -.flutter-plugins -.flutter-plugins-dependencies -.packages -.pub-cache/ -.pub/ -/build/ - -# Symbolication related -app.*.symbols - -# Obfuscation related -app.*.map.json - -# Android Studio will place build artifacts here -/android/app/debug -/android/app/profile -/android/app/release - -Hello.h -/android/app/src/main/jniLibs/* -/lib/generated_bindings.dart diff --git a/flutter_example/.metadata b/flutter_example/.metadata deleted file mode 100644 index 1b7e17a..0000000 --- a/flutter_example/.metadata +++ /dev/null @@ -1,36 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled and should not be manually edited. - -version: - revision: "d211f42860350d914a5ad8102f9ec32764dc6d06" - channel: "stable" - -project_type: app - -# Tracks metadata for the flutter migrate command -migration: - platforms: - - platform: root - create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - - platform: android - create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - - platform: ios - create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - - platform: macos - create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06 - - # User provided section - - # List of Local paths (relative to this file) that should be - # ignored by the migrate tool. - # - # Files that are not part of the templates will be ignored by default. - unmanaged_files: - - 'lib/main.dart' - - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/flutter_example/README.md b/flutter_example/README.md deleted file mode 100644 index a8add9f..0000000 --- a/flutter_example/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# flutter_example - -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) - -For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. diff --git a/flutter_example/analysis_options.yaml b/flutter_example/analysis_options.yaml deleted file mode 100644 index 1873c90..0000000 --- a/flutter_example/analysis_options.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. -include: package:flutter_lints/flutter.yaml - -analyzer: - exclude: - - "lib/generated_bindings.dart" - -linter: - # The lint rules applied to this project can be customized in the - # section below to disable rules from the `package:flutter_lints/flutter.yaml` - # included above or to enable additional rules. A list of all available lints - # and their documentation is published at https://dart.dev/lints. - # - # Instead of disabling a lint rule for the entire project in the - # section below, it can also be suppressed for a single line of code - # or a specific dart file by using the `// ignore: name_of_lint` and - # `// ignore_for_file: name_of_lint` syntax on the line or in the file - # producing the lint. - rules: - # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options diff --git a/flutter_example/android/.gitignore b/flutter_example/android/.gitignore deleted file mode 100644 index 6f56801..0000000 --- a/flutter_example/android/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -gradle-wrapper.jar -/.gradle -/captures/ -/gradlew -/gradlew.bat -/local.properties -GeneratedPluginRegistrant.java - -# Remember to never publicly share your keystore. -# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app -key.properties -**/*.keystore -**/*.jks diff --git a/flutter_example/android/app/build.gradle b/flutter_example/android/app/build.gradle deleted file mode 100644 index 6d38851..0000000 --- a/flutter_example/android/app/build.gradle +++ /dev/null @@ -1,67 +0,0 @@ -plugins { - id "com.android.application" - id "kotlin-android" - id "dev.flutter.flutter-gradle-plugin" -} - -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - -android { - namespace "com.example.flutter_example" - compileSdkVersion flutter.compileSdkVersion - ndkVersion flutter.ndkVersion - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - kotlinOptions { - jvmTarget = '1.8' - } - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - - defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.flutter_example" - // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - buildTypes { - release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug - } - } -} - -flutter { - source '../..' -} - -dependencies {} diff --git a/flutter_example/android/app/src/main/AndroidManifest.xml b/flutter_example/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 25226f6..0000000 --- a/flutter_example/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - diff --git a/flutter_example/android/app/src/main/kotlin/com/example/flutter_example/MainActivity.kt b/flutter_example/android/app/src/main/kotlin/com/example/flutter_example/MainActivity.kt deleted file mode 100644 index 70ea101..0000000 --- a/flutter_example/android/app/src/main/kotlin/com/example/flutter_example/MainActivity.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.example.flutter_example - -import io.flutter.embedding.android.FlutterActivity - -class MainActivity: FlutterActivity() { -} diff --git a/flutter_example/android/app/src/main/res/drawable-v21/launch_background.xml b/flutter_example/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f..0000000 --- a/flutter_example/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/flutter_example/android/app/src/main/res/drawable/launch_background.xml b/flutter_example/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 304732f..0000000 --- a/flutter_example/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/flutter_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/flutter_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4..0000000 Binary files a/flutter_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/flutter_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/flutter_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b7..0000000 Binary files a/flutter_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/flutter_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/flutter_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 09d4391..0000000 Binary files a/flutter_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/flutter_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/flutter_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d..0000000 Binary files a/flutter_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/flutter_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/flutter_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372e..0000000 Binary files a/flutter_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/flutter_example/android/app/src/main/res/values-night/styles.xml b/flutter_example/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index 06952be..0000000 --- a/flutter_example/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/flutter_example/android/app/src/main/res/values/styles.xml b/flutter_example/android/app/src/main/res/values/styles.xml deleted file mode 100644 index cb1ef88..0000000 --- a/flutter_example/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/flutter_example/android/app/src/profile/AndroidManifest.xml b/flutter_example/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index 399f698..0000000 --- a/flutter_example/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/flutter_example/android/build.gradle b/flutter_example/android/build.gradle deleted file mode 100644 index f7eb7f6..0000000 --- a/flutter_example/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.7.10' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -rootProject.buildDir = '../build' -subprojects { - project.buildDir = "${rootProject.buildDir}/${project.name}" -} -subprojects { - project.evaluationDependsOn(':app') -} - -tasks.register("clean", Delete) { - delete rootProject.buildDir -} diff --git a/flutter_example/android/gradle.properties b/flutter_example/android/gradle.properties deleted file mode 100644 index 94adc3a..0000000 --- a/flutter_example/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/flutter_example/android/gradle/wrapper/gradle-wrapper.properties b/flutter_example/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 3c472b9..0000000 --- a/flutter_example/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/flutter_example/android/settings.gradle b/flutter_example/android/settings.gradle deleted file mode 100644 index 55c4ca8..0000000 --- a/flutter_example/android/settings.gradle +++ /dev/null @@ -1,20 +0,0 @@ -pluginManagement { - def flutterSdkPath = { - def properties = new Properties() - file("local.properties").withInputStream { properties.load(it) } - def flutterSdkPath = properties.getProperty("flutter.sdk") - assert flutterSdkPath != null, "flutter.sdk not set in local.properties" - return flutterSdkPath - } - settings.ext.flutterSdkPath = flutterSdkPath() - - includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") - - plugins { - id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false - } -} - -include ":app" - -apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/flutter_example/ffigen.yaml b/flutter_example/ffigen.yaml deleted file mode 100644 index 056707b..0000000 --- a/flutter_example/ffigen.yaml +++ /dev/null @@ -1,4 +0,0 @@ -output: 'lib/generated_bindings.dart' -headers: - entry-points: - - 'Hello.h' diff --git a/flutter_example/ios/.gitignore b/flutter_example/ios/.gitignore deleted file mode 100644 index 7a7f987..0000000 --- a/flutter_example/ios/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -**/dgph -*.mode1v3 -*.mode2v3 -*.moved-aside -*.pbxuser -*.perspectivev3 -**/*sync/ -.sconsign.dblite -.tags* -**/.vagrant/ -**/DerivedData/ -Icon? -**/Pods/ -**/.symlinks/ -profile -xcuserdata -**/.generated/ -Flutter/App.framework -Flutter/Flutter.framework -Flutter/Flutter.podspec -Flutter/Generated.xcconfig -Flutter/ephemeral/ -Flutter/app.flx -Flutter/app.zip -Flutter/flutter_assets/ -Flutter/flutter_export_environment.sh -ServiceDefinitions.json -Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!default.mode1v3 -!default.mode2v3 -!default.pbxuser -!default.perspectivev3 diff --git a/flutter_example/ios/Flutter/AppFrameworkInfo.plist b/flutter_example/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 9625e10..0000000 --- a/flutter_example/ios/Flutter/AppFrameworkInfo.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - App - CFBundleIdentifier - io.flutter.flutter.app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - App - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - MinimumOSVersion - 11.0 - - diff --git a/flutter_example/ios/Flutter/Debug.xcconfig b/flutter_example/ios/Flutter/Debug.xcconfig deleted file mode 100644 index 592ceee..0000000 --- a/flutter_example/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/flutter_example/ios/Flutter/Release.xcconfig b/flutter_example/ios/Flutter/Release.xcconfig deleted file mode 100644 index 592ceee..0000000 --- a/flutter_example/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/flutter_example/ios/Runner.xcodeproj/project.pbxproj b/flutter_example/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 37fa5f2..0000000 --- a/flutter_example/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,614 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 97C146E61CF9000F007C117D /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C146ED1CF9000F007C117D; - remoteInfo = Runner; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 9705A1C41CF9048500538489 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; - 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; - 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 331C8082294A63A400263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C807B294A618700263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - 331C8082294A63A400263BE5 /* RunnerTests */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - 331C8081294A63A400263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 97C146F01CF9000F007C117D /* Runner */ = { - isa = PBXGroup; - children = ( - 97C146FA1CF9000F007C117D /* Main.storyboard */, - 97C146FD1CF9000F007C117D /* Assets.xcassets */, - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, - ); - path = Runner; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C8080294A63A400263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - 331C807D294A63A400263BE5 /* Sources */, - 331C807E294A63A400263BE5 /* Frameworks */, - 331C807F294A63A400263BE5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 331C8086294A63A400263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Runner; - productName = Runner; - productReference = 97C146EE1CF9000F007C117D /* Runner.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 97C146E61CF9000F007C117D /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 1430; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C8080294A63A400263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 97C146ED1CF9000F007C117D; - }; - 97C146ED1CF9000F007C117D = { - CreatedOnToolsVersion = 7.3.1; - LastSwiftMigration = 1100; - }; - }; - }; - buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 97C146E51CF9000F007C117D; - productRefGroup = 97C146EF1CF9000F007C117D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 97C146ED1CF9000F007C117D /* Runner */, - 331C8080294A63A400263BE5 /* RunnerTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C807F294A63A400263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EC1CF9000F007C117D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 9740EEB61CF901F6004384FC /* Run Script */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Run Script"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C807D294A63A400263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 97C146ED1CF9000F007C117D /* Runner */; - targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 97C146FA1CF9000F007C117D /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C146FB1CF9000F007C117D /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C147001CF9000F007C117D /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 249021D3217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 249021D4217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Profile; - }; - 331C8088294A63A400263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Debug; - }; - 331C8089294A63A400263BE5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Release; - }; - 331C808A294A63A400263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Profile; - }; - 97C147031CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 97C147041CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 97C147061CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 97C147071CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C8088294A63A400263BE5 /* Debug */, - 331C8089294A63A400263BE5 /* Release */, - 331C808A294A63A400263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147031CF9000F007C117D /* Debug */, - 97C147041CF9000F007C117D /* Release */, - 249021D3217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147061CF9000F007C117D /* Debug */, - 97C147071CF9000F007C117D /* Release */, - 249021D4217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 97C146E61CF9000F007C117D /* Project object */; -} diff --git a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c..0000000 --- a/flutter_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/flutter_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/flutter_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 87131a0..0000000 --- a/flutter_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_example/ios/Runner.xcworkspace/contents.xcworkspacedata b/flutter_example/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a1..0000000 --- a/flutter_example/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/flutter_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/flutter_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c..0000000 --- a/flutter_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/flutter_example/ios/Runner/AppDelegate.swift b/flutter_example/ios/Runner/AppDelegate.swift deleted file mode 100644 index 70693e4..0000000 --- a/flutter_example/ios/Runner/AppDelegate.swift +++ /dev/null @@ -1,13 +0,0 @@ -import UIKit -import Flutter - -@UIApplicationMain -@objc class AppDelegate: FlutterAppDelegate { - override func application( - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - GeneratedPluginRegistrant.register(with: self) - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } -} diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fa..0000000 --- a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "images" : [ - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@3x.png", - "scale" : "3x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@3x.png", - "scale" : "3x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@3x.png", - "scale" : "3x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@2x.png", - "scale" : "2x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@3x.png", - "scale" : "3x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@1x.png", - "scale" : "1x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@1x.png", - "scale" : "1x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@1x.png", - "scale" : "1x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@2x.png", - "scale" : "2x" - }, - { - "size" : "83.5x83.5", - "idiom" : "ipad", - "filename" : "Icon-App-83.5x83.5@2x.png", - "scale" : "2x" - }, - { - "size" : "1024x1024", - "idiom" : "ios-marketing", - "filename" : "Icon-App-1024x1024@1x.png", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index dc9ada4..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png deleted file mode 100644 index 7353c41..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png deleted file mode 100644 index 797d452..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index 6ed2d93..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png deleted file mode 100644 index 4cd7b00..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index fe73094..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png deleted file mode 100644 index 321773c..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png deleted file mode 100644 index 797d452..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index 502f463..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index 0ec3034..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index 0ec3034..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index e9f5fea..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index 84ac32a..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png deleted file mode 100644 index 8953cba..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png deleted file mode 100644 index 0467bf1..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json deleted file mode 100644 index 0bedcf2..0000000 --- a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "LaunchImage.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 9da19ea..0000000 Binary files a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ diff --git a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725..0000000 --- a/flutter_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Launch Screen Assets - -You can customize the launch screen with your own desired assets by replacing the image files in this directory. - -You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/flutter_example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/flutter_example/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index f2e259c..0000000 --- a/flutter_example/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_example/ios/Runner/Base.lproj/Main.storyboard b/flutter_example/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c2851..0000000 --- a/flutter_example/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_example/ios/Runner/Info.plist b/flutter_example/ios/Runner/Info.plist deleted file mode 100644 index fbdbb09..0000000 --- a/flutter_example/ios/Runner/Info.plist +++ /dev/null @@ -1,49 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Flutter Example - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - flutter_example - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - CADisableMinimumFrameDurationOnPhone - - UIApplicationSupportsIndirectInputEvents - - - diff --git a/flutter_example/ios/Runner/Runner-Bridging-Header.h b/flutter_example/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a5..0000000 --- a/flutter_example/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/flutter_example/ios/RunnerTests/RunnerTests.swift b/flutter_example/ios/RunnerTests/RunnerTests.swift deleted file mode 100644 index 86a7c3b..0000000 --- a/flutter_example/ios/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import Flutter -import UIKit -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/flutter_example/lib/bindings.dart b/flutter_example/lib/bindings.dart deleted file mode 100644 index 06ef731..0000000 --- a/flutter_example/lib/bindings.dart +++ /dev/null @@ -1,43 +0,0 @@ -import 'dart:ffi'; -import 'dart:io'; - -import 'package:ffi/ffi.dart'; -import 'package:flutter_example/generated_bindings.dart'; - -class Bindings { - static Bindings? _instance; - - final NativeLibrary library; - - Bindings._(NativeLibrary lib) : library = lib; - - /// Load from lib - static Bindings init(String libName) { - /// The dynamic library in which the symbols for [NativeAddBindings] can be found. - final DynamicLibrary dylib = () { - if (Platform.isMacOS || Platform.isIOS) { - return DynamicLibrary.open('$libName.framework/$libName'); - } - if (Platform.isAndroid || Platform.isLinux) { - return DynamicLibrary.open('lib$libName.so'); - } - if (Platform.isWindows) { - return DynamicLibrary.open('$libName.dll'); - } - throw UnsupportedError('Unknown platform: ${Platform.operatingSystem}'); - }.call(); - - /// The bindings to the native functions in [_dylib]. - return _instance ??= Bindings._(NativeLibrary(dylib)); - } - - static Bindings get instance => _instance!; - - static int sum(int a, int b) { - final hello = instance.library.MyLib_Hello_Create(nullptr); - - final result = instance.library.MyLib_Hello_Sum(hello, a, b, nullptr); - - return result; - } -} diff --git a/flutter_example/lib/main.dart b/flutter_example/lib/main.dart deleted file mode 100644 index 38c0e02..0000000 --- a/flutter_example/lib/main.dart +++ /dev/null @@ -1,65 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:flutter_example/bindings.dart'; - -void main() { - WidgetsFlutterBinding.ensureInitialized(); - - Bindings.init('MyLib'); - - runApp(const MyApp()); -} - -class MyApp extends StatelessWidget { - const MyApp({super.key}); - - @override - Widget build(BuildContext context) { - return MaterialApp( - title: 'Flutter Demo', - theme: ThemeData( - colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), - useMaterial3: true, - ), - home: const MyHomePage(title: 'Flutter Demo Home Page'), - ); - } -} - -class MyHomePage extends StatefulWidget { - const MyHomePage({super.key, required this.title}); - - final String title; - - @override - State createState() => _MyHomePageState(); -} - -class _MyHomePageState extends State { - int _sum = -1; - - @override - void initState() { - super.initState(); - _sum = Bindings.sum(1, 2); - } - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - backgroundColor: Theme.of(context).colorScheme.inversePrimary, - title: Text(widget.title), - ), - body: Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - 'From CSharp sum(1,2): $_sum', - ), - ], - ), - ), - ); - } -} diff --git a/flutter_example/macos/.gitignore b/flutter_example/macos/.gitignore deleted file mode 100644 index 746adbb..0000000 --- a/flutter_example/macos/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Flutter-related -**/Flutter/ephemeral/ -**/Pods/ - -# Xcode-related -**/dgph -**/xcuserdata/ diff --git a/flutter_example/macos/Flutter/Flutter-Debug.xcconfig b/flutter_example/macos/Flutter/Flutter-Debug.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/flutter_example/macos/Flutter/Flutter-Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/flutter_example/macos/Flutter/Flutter-Release.xcconfig b/flutter_example/macos/Flutter/Flutter-Release.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/flutter_example/macos/Flutter/Flutter-Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/flutter_example/macos/Flutter/GeneratedPluginRegistrant.swift b/flutter_example/macos/Flutter/GeneratedPluginRegistrant.swift deleted file mode 100644 index cccf817..0000000 --- a/flutter_example/macos/Flutter/GeneratedPluginRegistrant.swift +++ /dev/null @@ -1,10 +0,0 @@ -// -// Generated file. Do not edit. -// - -import FlutterMacOS -import Foundation - - -func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { -} diff --git a/flutter_example/macos/Runner.xcodeproj/project.pbxproj b/flutter_example/macos/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index af12877..0000000 --- a/flutter_example/macos/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,695 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXAggregateTarget section */ - 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; - buildPhases = ( - 33CC111E2044C6BF0003C045 /* ShellScript */, - ); - dependencies = ( - ); - name = "Flutter Assemble"; - productName = FLX; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC10EC2044A3C60003C045; - remoteInfo = Runner; - }; - 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC111A2044C6BA0003C045; - remoteInfo = FLX; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 33CC110E2044A8840003C045 /* Bundle Framework */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Bundle Framework"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; - 33CC10ED2044A3C60003C045 /* flutter_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "flutter_example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; - 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; - 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; - 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; - 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; - 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 331C80D2294CF70F00263BE5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EA2044A3C60003C045 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 331C80D6294CF71000263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C80D7294CF71000263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 33BA886A226E78AF003329D5 /* Configs */ = { - isa = PBXGroup; - children = ( - 33E5194F232828860026EE4D /* AppInfo.xcconfig */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, - ); - path = Configs; - sourceTree = ""; - }; - 33CC10E42044A3C60003C045 = { - isa = PBXGroup; - children = ( - 33FAB671232836740065AC1E /* Runner */, - 33CEB47122A05771004F2AC0 /* Flutter */, - 331C80D6294CF71000263BE5 /* RunnerTests */, - 33CC10EE2044A3C60003C045 /* Products */, - D73912EC22F37F3D000D13A0 /* Frameworks */, - ); - sourceTree = ""; - }; - 33CC10EE2044A3C60003C045 /* Products */ = { - isa = PBXGroup; - children = ( - 33CC10ED2044A3C60003C045 /* flutter_example.app */, - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 33CC11242044D66E0003C045 /* Resources */ = { - isa = PBXGroup; - children = ( - 33CC10F22044A3C60003C045 /* Assets.xcassets */, - 33CC10F42044A3C60003C045 /* MainMenu.xib */, - 33CC10F72044A3C60003C045 /* Info.plist */, - ); - name = Resources; - path = ..; - sourceTree = ""; - }; - 33CEB47122A05771004F2AC0 /* Flutter */ = { - isa = PBXGroup; - children = ( - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, - ); - path = Flutter; - sourceTree = ""; - }; - 33FAB671232836740065AC1E /* Runner */ = { - isa = PBXGroup; - children = ( - 33CC10F02044A3C60003C045 /* AppDelegate.swift */, - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, - 33E51913231747F40026EE4D /* DebugProfile.entitlements */, - 33E51914231749380026EE4D /* Release.entitlements */, - 33CC11242044D66E0003C045 /* Resources */, - 33BA886A226E78AF003329D5 /* Configs */, - ); - path = Runner; - sourceTree = ""; - }; - D73912EC22F37F3D000D13A0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C80D4294CF70F00263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - 331C80D1294CF70F00263BE5 /* Sources */, - 331C80D2294CF70F00263BE5 /* Frameworks */, - 331C80D3294CF70F00263BE5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 331C80DA294CF71000263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 33CC10EC2044A3C60003C045 /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 33CC10E92044A3C60003C045 /* Sources */, - 33CC10EA2044A3C60003C045 /* Frameworks */, - 33CC10EB2044A3C60003C045 /* Resources */, - 33CC110E2044A8840003C045 /* Bundle Framework */, - 3399D490228B24CF009A79C7 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - 33CC11202044C79F0003C045 /* PBXTargetDependency */, - ); - name = Runner; - productName = Runner; - productReference = 33CC10ED2044A3C60003C045 /* flutter_example.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 33CC10E52044A3C60003C045 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0920; - LastUpgradeCheck = 1430; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C80D4294CF70F00263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 33CC10EC2044A3C60003C045; - }; - 33CC10EC2044A3C60003C045 = { - CreatedOnToolsVersion = 9.2; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - SystemCapabilities = { - com.apple.Sandbox = { - enabled = 1; - }; - }; - }; - 33CC111A2044C6BA0003C045 = { - CreatedOnToolsVersion = 9.2; - ProvisioningStyle = Manual; - }; - }; - }; - buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 33CC10E42044A3C60003C045; - productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 33CC10EC2044A3C60003C045 /* Runner */, - 331C80D4294CF70F00263BE5 /* RunnerTests */, - 33CC111A2044C6BA0003C045 /* Flutter Assemble */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C80D3294CF70F00263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EB2044A3C60003C045 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3399D490228B24CF009A79C7 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; - }; - 33CC111E2044C6BF0003C045 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - Flutter/ephemeral/FlutterInputs.xcfilelist, - ); - inputPaths = ( - Flutter/ephemeral/tripwire, - ); - outputFileListPaths = ( - Flutter/ephemeral/FlutterOutputs.xcfilelist, - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C80D1294CF70F00263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10E92044A3C60003C045 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC10EC2044A3C60003C045 /* Runner */; - targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; - }; - 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; - targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - 33CC10F52044A3C60003C045 /* Base */, - ); - name = MainMenu.xib; - path = Runner; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 331C80DB294CF71000263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_example"; - }; - name = Debug; - }; - 331C80DC294CF71000263BE5 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_example"; - }; - name = Release; - }; - 331C80DD294CF71000263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_example"; - }; - name = Profile; - }; - 338D0CE9231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Profile; - }; - 338D0CEA231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Profile; - }; - 338D0CEB231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Profile; - }; - 33CC10F92044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 33CC10FA2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Release; - }; - 33CC10FC2044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 33CC10FD2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; - 33CC111C2044C6BA0003C045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 33CC111D2044C6BA0003C045 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Automatic; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C80DB294CF71000263BE5 /* Debug */, - 331C80DC294CF71000263BE5 /* Release */, - 331C80DD294CF71000263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10F92044A3C60003C045 /* Debug */, - 33CC10FA2044A3C60003C045 /* Release */, - 338D0CE9231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10FC2044A3C60003C045 /* Debug */, - 33CC10FD2044A3C60003C045 /* Release */, - 338D0CEA231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC111C2044C6BA0003C045 /* Debug */, - 33CC111D2044C6BA0003C045 /* Release */, - 338D0CEB231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 33CC10E52044A3C60003C045 /* Project object */; -} diff --git a/flutter_example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/flutter_example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/flutter_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 20078db..0000000 --- a/flutter_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_example/macos/Runner.xcworkspace/contents.xcworkspacedata b/flutter_example/macos/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a1..0000000 --- a/flutter_example/macos/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/flutter_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/flutter_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_example/macos/Runner/AppDelegate.swift b/flutter_example/macos/Runner/AppDelegate.swift deleted file mode 100644 index d53ef64..0000000 --- a/flutter_example/macos/Runner/AppDelegate.swift +++ /dev/null @@ -1,9 +0,0 @@ -import Cocoa -import FlutterMacOS - -@NSApplicationMain -class AppDelegate: FlutterAppDelegate { - override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { - return true - } -} diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index a2ec33f..0000000 --- a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_16.png", - "scale" : "1x" - }, - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "2x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "1x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_64.png", - "scale" : "2x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_128.png", - "scale" : "1x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "2x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "1x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "2x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "1x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_1024.png", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png deleted file mode 100644 index 82b6f9d..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png deleted file mode 100644 index 13b35eb..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png deleted file mode 100644 index 0a3f5fa..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png deleted file mode 100644 index bdb5722..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png deleted file mode 100644 index f083318..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png deleted file mode 100644 index 326c0e7..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png deleted file mode 100644 index 2f1632c..0000000 Binary files a/flutter_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png and /dev/null differ diff --git a/flutter_example/macos/Runner/Base.lproj/MainMenu.xib b/flutter_example/macos/Runner/Base.lproj/MainMenu.xib deleted file mode 100644 index 80e867a..0000000 --- a/flutter_example/macos/Runner/Base.lproj/MainMenu.xib +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_example/macos/Runner/Configs/AppInfo.xcconfig b/flutter_example/macos/Runner/Configs/AppInfo.xcconfig deleted file mode 100644 index 94384e5..0000000 --- a/flutter_example/macos/Runner/Configs/AppInfo.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -// Application-level settings for the Runner target. -// -// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the -// future. If not, the values below would default to using the project name when this becomes a -// 'flutter create' template. - -// The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = flutter_example - -// The application's bundle identifier -PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterExample - -// The copyright displayed in application information -PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved. diff --git a/flutter_example/macos/Runner/Configs/Debug.xcconfig b/flutter_example/macos/Runner/Configs/Debug.xcconfig deleted file mode 100644 index 36b0fd9..0000000 --- a/flutter_example/macos/Runner/Configs/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Debug.xcconfig" -#include "Warnings.xcconfig" diff --git a/flutter_example/macos/Runner/Configs/Release.xcconfig b/flutter_example/macos/Runner/Configs/Release.xcconfig deleted file mode 100644 index dff4f49..0000000 --- a/flutter_example/macos/Runner/Configs/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Release.xcconfig" -#include "Warnings.xcconfig" diff --git a/flutter_example/macos/Runner/Configs/Warnings.xcconfig b/flutter_example/macos/Runner/Configs/Warnings.xcconfig deleted file mode 100644 index 42bcbf4..0000000 --- a/flutter_example/macos/Runner/Configs/Warnings.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings -GCC_WARN_UNDECLARED_SELECTOR = YES -CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES -CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE -CLANG_WARN__DUPLICATE_METHOD_MATCH = YES -CLANG_WARN_PRAGMA_PACK = YES -CLANG_WARN_STRICT_PROTOTYPES = YES -CLANG_WARN_COMMA = YES -GCC_WARN_STRICT_SELECTOR_MATCH = YES -CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES -CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES -GCC_WARN_SHADOW = YES -CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/flutter_example/macos/Runner/DebugProfile.entitlements b/flutter_example/macos/Runner/DebugProfile.entitlements deleted file mode 100644 index dddb8a3..0000000 --- a/flutter_example/macos/Runner/DebugProfile.entitlements +++ /dev/null @@ -1,12 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.cs.allow-jit - - com.apple.security.network.server - - - diff --git a/flutter_example/macos/Runner/Info.plist b/flutter_example/macos/Runner/Info.plist deleted file mode 100644 index 4789daa..0000000 --- a/flutter_example/macos/Runner/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIconFile - - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - $(PRODUCT_COPYRIGHT) - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/flutter_example/macos/Runner/MainFlutterWindow.swift b/flutter_example/macos/Runner/MainFlutterWindow.swift deleted file mode 100644 index 3cc05eb..0000000 --- a/flutter_example/macos/Runner/MainFlutterWindow.swift +++ /dev/null @@ -1,15 +0,0 @@ -import Cocoa -import FlutterMacOS - -class MainFlutterWindow: NSWindow { - override func awakeFromNib() { - let flutterViewController = FlutterViewController() - let windowFrame = self.frame - self.contentViewController = flutterViewController - self.setFrame(windowFrame, display: true) - - RegisterGeneratedPlugins(registry: flutterViewController) - - super.awakeFromNib() - } -} diff --git a/flutter_example/macos/Runner/Release.entitlements b/flutter_example/macos/Runner/Release.entitlements deleted file mode 100644 index 852fa1a..0000000 --- a/flutter_example/macos/Runner/Release.entitlements +++ /dev/null @@ -1,8 +0,0 @@ - - - - - com.apple.security.app-sandbox - - - diff --git a/flutter_example/macos/RunnerTests/RunnerTests.swift b/flutter_example/macos/RunnerTests/RunnerTests.swift deleted file mode 100644 index 5418c9f..0000000 --- a/flutter_example/macos/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import FlutterMacOS -import Cocoa -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/flutter_example/pubspec.yaml b/flutter_example/pubspec.yaml deleted file mode 100644 index 074ce96..0000000 --- a/flutter_example/pubspec.yaml +++ /dev/null @@ -1,92 +0,0 @@ -name: flutter_example -description: A new Flutter project. -# The following line prevents the package from being accidentally published to -# pub.dev using `flutter pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev - -# The following defines the version and build number for your application. -# A version number is three numbers separated by dots, like 1.2.43 -# followed by an optional build number separated by a +. -# Both the version and the builder number may be overridden in flutter -# build by specifying --build-name and --build-number, respectively. -# In Android, build-name is used as versionName while build-number used as versionCode. -# Read more about Android versioning at https://developer.android.com/studio/publish/versioning -# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. -# Read more about iOS versioning at -# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -# In Windows, build-name is used as the major, minor, and patch parts -# of the product and file versions while build-number is used as the build suffix. -version: 1.0.0+1 - -environment: - sdk: '>=3.1.5 <4.0.0' - -# Dependencies specify other packages that your package needs in order to work. -# To automatically upgrade your package dependencies to the latest versions -# consider running `flutter pub upgrade --major-versions`. Alternatively, -# dependencies can be manually updated by changing the version numbers below to -# the latest version available on pub.dev. To see which dependencies have newer -# versions available, run `flutter pub outdated`. -dependencies: - flutter: - sdk: flutter - - - # The following adds the Cupertino Icons font to your application. - # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^1.0.2 - ffi: ^2.1.0 - -dev_dependencies: - flutter_test: - sdk: flutter - - # The "flutter_lints" package below contains a set of recommended lints to - # encourage good coding practices. The lint set provided by the package is - # activated in the `analysis_options.yaml` file located at the root of your - # package. See that file for information about deactivating specific lint - # rules and activating additional ones. - flutter_lints: ^2.0.0 - ffigen: ^9.0.1 - -# For information on the generic Dart part of this file, see the -# following page: https://dart.dev/tools/pub/pubspec - -# The following section is specific to Flutter packages. -flutter: - - # The following line ensures that the Material Icons font is - # included with your application, so that you can use the icons in - # the material Icons class. - uses-material-design: true - - # To add assets to your application, add an assets section, like this: - # assets: - # - images/a_dot_burr.jpeg - # - images/a_dot_ham.jpeg - - # An image asset can refer to one or more resolution-specific "variants", see - # https://flutter.dev/assets-and-images/#resolution-aware - - # For details regarding adding assets from package dependencies, see - # https://flutter.dev/assets-and-images/#from-packages - - # To add custom fonts to your application, add a fonts section here, - # in this "flutter" section. Each entry in this list should have a - # "family" key with the font family name, and a "fonts" key with a - # list giving the asset and other descriptors for the font. For - # example: - # fonts: - # - family: Schyler - # fonts: - # - asset: fonts/Schyler-Regular.ttf - # - asset: fonts/Schyler-Italic.ttf - # style: italic - # - family: Trajan Pro - # fonts: - # - asset: fonts/TrajanPro.ttf - # - asset: fonts/TrajanPro_Bold.ttf - # weight: 700 - # - # For details regarding fonts from package dependencies, - # see https://flutter.dev/custom-fonts/#from-packages diff --git a/flutter_example/test/widget_test.dart b/flutter_example/test/widget_test.dart deleted file mode 100644 index c18af3f..0000000 --- a/flutter_example/test/widget_test.dart +++ /dev/null @@ -1,30 +0,0 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility in the flutter_test package. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -import 'package:flutter_example/main.dart'; - -void main() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(const MyApp()); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); - }); -} diff --git a/beyondnetgen.config.json b/template.beyondnetgen.android.config.json similarity index 97% rename from beyondnetgen.config.json rename to template.beyondnetgen.android.config.json index 62ad0f5..99ea814 100644 --- a/beyondnetgen.config.json +++ b/template.beyondnetgen.android.config.json @@ -1,7 +1,7 @@ { - "AssemblyPath": "MyLib.Managed/bin/Release/net8.0/MyLib.Managed.dll", - "CSharpUnmanagedOutputPath": "MyLib.Generated/Hello.cs", - "COutputPath": "MyLib.Generated/Hello.h", + "AssemblyPath": "INPUT_PROJECT_NAME/bin/Release/net8.0/INPUT_PROJECT_NAME.dll", + "CSharpUnmanagedOutputPath": "GENERATED_PROJECT_NAME/Generated.cs", + "COutputPath": "GENERATED_PROJECT_NAME/Generated.h", "ExcludedTypeNames": [ "System.ICloneable", "System.Collections.IEnumerable", diff --git a/template.beyondnetgen.ios.config.json b/template.beyondnetgen.ios.config.json new file mode 100644 index 0000000..3b96211 --- /dev/null +++ b/template.beyondnetgen.ios.config.json @@ -0,0 +1,8 @@ +{ + "AssemblyPath": "INPUT_PROJECT_NAME/bin/Release/net8.0/INPUT_PROJECT_NAME.dll", + "CSharpUnmanagedOutputPath": "GENERATED_PROJECT_NAME/Generated.cs", + "COutputPath": "GENERATED_PROJECT_NAME/Generated.h", + "Build": { + "Target": "apple-universal" + } +} diff --git a/MyLib.Generated/MyLib.Generated.csproj b/template.csproj similarity index 62% rename from MyLib.Generated/MyLib.Generated.csproj rename to template.csproj index 7d59396..efdfd57 100644 --- a/MyLib.Generated/MyLib.Generated.csproj +++ b/template.csproj @@ -77,79 +77,6 @@ - - 13.0 - 16.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - <_IsAppleMobileLibraryMode>false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true @@ -162,7 +89,7 @@ - +