feat/full-build-script #1

Merged
hugo merged 6 commits from feat/full-build-script into main 2023-11-09 15:29:54 +00:00
111 changed files with 848 additions and 3233 deletions

1
.gitignore vendored
View File

@ -736,3 +736,4 @@ Temporary Items
MyLib.Generated/Hello.cs
MyLib.Generated/Hello.h
beyondnetgen.*.config.json

View File

@ -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() { }
}

View File

@ -1,3 +0,0 @@
#!/usr/bin/env sh
dotnet publish -r linux-bionic-arm64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:RemoveSections=true

View File

@ -1,3 +0,0 @@
#!/usr/bin/env sh
dotnet publish -r linux-bionic-x64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:RemoveSections=true

View File

@ -1,3 +0,0 @@
#!/usr/bin/env sh
dotnet publish -r ios-arm64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:OutputType=Library

View File

@ -1,3 +0,0 @@
#!/usr/bin/env sh
dotnet publish -r ios-x64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true -p:OutputType=Library

View File

@ -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

View File

@ -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: <input-project-name>.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

View File

@ -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!

View File

@ -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

View File

@ -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
$RealCppCompilerAndLinker $rawArgs

327
build.sh
View File

@ -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: <input-project-name>.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

490
demo.cast Normal file
View File

@ -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' nexiste 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 lassembly 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' nexiste 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' nexiste 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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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 lassembly 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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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' nexiste 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' nexiste 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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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 lassembly 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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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<T>(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"]

BIN
demo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

View File

@ -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

View File

@ -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'

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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 {}

View File

@ -1,33 +0,0 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="flutter_example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>

View File

@ -1,6 +0,0 @@
package com.example.flutter_example
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -1,7 +0,0 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -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
}

View File

@ -1,3 +0,0 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true

View File

@ -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

View File

@ -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"

View File

@ -1,4 +0,0 @@
output: 'lib/generated_bindings.dart'
headers:
entry-points:
- 'Hello.h'

View File

@ -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

View File

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>11.0</string>
</dict>
</plist>

View File

@ -1 +0,0 @@
#include "Generated.xcconfig"

View File

@ -1 +0,0 @@
#include "Generated.xcconfig"

View File

@ -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 = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
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 = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
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 = "<group>";
};
331C8082294A63A400263BE5 /* RunnerTests */ = {
isa = PBXGroup;
children = (
331C807B294A618700263BE5 /* RunnerTests.swift */,
);
path = RunnerTests;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
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 = "<group>";
};
/* 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 = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* 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 */;
}

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -1,98 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -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)
}
}

View File

@ -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"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -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"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

View File

@ -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.

View File

@ -1,37 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>

View File

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Flutter Example</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>flutter_example</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>

View File

@ -1 +0,0 @@
#import "GeneratedPluginRegistrant.h"

View File

@ -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.
}
}

View File

@ -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;
}
}

View File

@ -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<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
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: <Widget>[
Text(
'From CSharp sum(1,2): $_sum',
),
],
),
),
);
}
}

View File

@ -1,7 +0,0 @@
# Flutter-related
**/Flutter/ephemeral/
**/Pods/
# Xcode-related
**/dgph
**/xcuserdata/

View File

@ -1 +0,0 @@
#include "ephemeral/Flutter-Generated.xcconfig"

View File

@ -1 +0,0 @@
#include "ephemeral/Flutter-Generated.xcconfig"

View File

@ -1,10 +0,0 @@
//
// Generated file. Do not edit.
//
import FlutterMacOS
import Foundation
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
}

View File

@ -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 = "<group>"; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
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 = "<group>"; };
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = "<group>"; };
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = "<group>"; };
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = "<group>"; };
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = "<group>"; };
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = "<group>"; };
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
/* 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 = "<group>";
};
33BA886A226E78AF003329D5 /* Configs */ = {
isa = PBXGroup;
children = (
33E5194F232828860026EE4D /* AppInfo.xcconfig */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
);
path = Configs;
sourceTree = "<group>";
};
33CC10E42044A3C60003C045 = {
isa = PBXGroup;
children = (
33FAB671232836740065AC1E /* Runner */,
33CEB47122A05771004F2AC0 /* Flutter */,
331C80D6294CF71000263BE5 /* RunnerTests */,
33CC10EE2044A3C60003C045 /* Products */,
D73912EC22F37F3D000D13A0 /* Frameworks */,
);
sourceTree = "<group>";
};
33CC10EE2044A3C60003C045 /* Products */ = {
isa = PBXGroup;
children = (
33CC10ED2044A3C60003C045 /* flutter_example.app */,
331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
33CC11242044D66E0003C045 /* Resources */ = {
isa = PBXGroup;
children = (
33CC10F22044A3C60003C045 /* Assets.xcassets */,
33CC10F42044A3C60003C045 /* MainMenu.xib */,
33CC10F72044A3C60003C045 /* Info.plist */,
);
name = Resources;
path = ..;
sourceTree = "<group>";
};
33CEB47122A05771004F2AC0 /* Flutter */ = {
isa = PBXGroup;
children = (
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
);
path = Flutter;
sourceTree = "<group>";
};
33FAB671232836740065AC1E /* Runner */ = {
isa = PBXGroup;
children = (
33CC10F02044A3C60003C045 /* AppDelegate.swift */,
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
33E51913231747F40026EE4D /* DebugProfile.entitlements */,
33E51914231749380026EE4D /* Release.entitlements */,
33CC11242044D66E0003C045 /* Resources */,
33BA886A226E78AF003329D5 /* Configs */,
);
path = Runner;
sourceTree = "<group>";
};
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
isa = PBXGroup;
children = (
);
name = Frameworks;
sourceTree = "<group>";
};
/* 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 = "<group>";
};
/* 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 */;
}

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -1,98 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_example.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_example.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C80D4294CF70F00263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_example.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_example.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -1,9 +0,0 @@
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}

View File

@ -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"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,343 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14490.70" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14490.70"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
<connections>
<outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq"/>
</connections>
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModule="Runner" customModuleProvider="target">
<connections>
<outlet property="applicationMenu" destination="uQy-DD-JDr" id="XBo-yE-nKs"/>
<outlet property="mainFlutterWindow" destination="QvC-M9-y7g" id="gIp-Ho-8D9"/>
</connections>
</customObject>
<customObject id="YLy-65-1bz" customClass="NSFontManager"/>
<menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
<items>
<menuItem title="APP_NAME" id="1Xt-HY-uBw">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="APP_NAME" systemMenu="apple" id="uQy-DD-JDr">
<items>
<menuItem title="About APP_NAME" id="5kV-Vb-QxS">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="VOq-y0-SEH"/>
<menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW"/>
<menuItem isSeparatorItem="YES" id="wFC-TO-SCJ"/>
<menuItem title="Services" id="NMo-om-nkz">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Services" systemMenu="services" id="hz9-B4-Xy5"/>
</menuItem>
<menuItem isSeparatorItem="YES" id="4je-JR-u6R"/>
<menuItem title="Hide APP_NAME" keyEquivalent="h" id="Olw-nP-bQN">
<connections>
<action selector="hide:" target="-1" id="PnN-Uc-m68"/>
</connections>
</menuItem>
<menuItem title="Hide Others" keyEquivalent="h" id="Vdr-fp-XzO">
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
<connections>
<action selector="hideOtherApplications:" target="-1" id="VT4-aY-XCT"/>
</connections>
</menuItem>
<menuItem title="Show All" id="Kd2-mp-pUS">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="unhideAllApplications:" target="-1" id="Dhg-Le-xox"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="kCx-OE-vgT"/>
<menuItem title="Quit APP_NAME" keyEquivalent="q" id="4sb-4s-VLi">
<connections>
<action selector="terminate:" target="-1" id="Te7-pn-YzF"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Edit" id="5QF-Oa-p0T">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Edit" id="W48-6f-4Dl">
<items>
<menuItem title="Undo" keyEquivalent="z" id="dRJ-4n-Yzg">
<connections>
<action selector="undo:" target="-1" id="M6e-cu-g7V"/>
</connections>
</menuItem>
<menuItem title="Redo" keyEquivalent="Z" id="6dh-zS-Vam">
<connections>
<action selector="redo:" target="-1" id="oIA-Rs-6OD"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="WRV-NI-Exz"/>
<menuItem title="Cut" keyEquivalent="x" id="uRl-iY-unG">
<connections>
<action selector="cut:" target="-1" id="YJe-68-I9s"/>
</connections>
</menuItem>
<menuItem title="Copy" keyEquivalent="c" id="x3v-GG-iWU">
<connections>
<action selector="copy:" target="-1" id="G1f-GL-Joy"/>
</connections>
</menuItem>
<menuItem title="Paste" keyEquivalent="v" id="gVA-U4-sdL">
<connections>
<action selector="paste:" target="-1" id="UvS-8e-Qdg"/>
</connections>
</menuItem>
<menuItem title="Paste and Match Style" keyEquivalent="V" id="WeT-3V-zwk">
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
<connections>
<action selector="pasteAsPlainText:" target="-1" id="cEh-KX-wJQ"/>
</connections>
</menuItem>
<menuItem title="Delete" id="pa3-QI-u2k">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="delete:" target="-1" id="0Mk-Ml-PaM"/>
</connections>
</menuItem>
<menuItem title="Select All" keyEquivalent="a" id="Ruw-6m-B2m">
<connections>
<action selector="selectAll:" target="-1" id="VNm-Mi-diN"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="uyl-h8-XO2"/>
<menuItem title="Find" id="4EN-yA-p0u">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Find" id="1b7-l0-nxx">
<items>
<menuItem title="Find…" tag="1" keyEquivalent="f" id="Xz5-n4-O0W">
<connections>
<action selector="performFindPanelAction:" target="-1" id="cD7-Qs-BN4"/>
</connections>
</menuItem>
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="YEy-JH-Tfz">
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
<connections>
<action selector="performFindPanelAction:" target="-1" id="WD3-Gg-5AJ"/>
</connections>
</menuItem>
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="q09-fT-Sye">
<connections>
<action selector="performFindPanelAction:" target="-1" id="NDo-RZ-v9R"/>
</connections>
</menuItem>
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="OwM-mh-QMV">
<connections>
<action selector="performFindPanelAction:" target="-1" id="HOh-sY-3ay"/>
</connections>
</menuItem>
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="buJ-ug-pKt">
<connections>
<action selector="performFindPanelAction:" target="-1" id="U76-nv-p5D"/>
</connections>
</menuItem>
<menuItem title="Jump to Selection" keyEquivalent="j" id="S0p-oC-mLd">
<connections>
<action selector="centerSelectionInVisibleArea:" target="-1" id="IOG-6D-g5B"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Spelling and Grammar" id="Dv1-io-Yv7">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Spelling" id="3IN-sU-3Bg">
<items>
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="HFo-cy-zxI">
<connections>
<action selector="showGuessPanel:" target="-1" id="vFj-Ks-hy3"/>
</connections>
</menuItem>
<menuItem title="Check Document Now" keyEquivalent=";" id="hz2-CU-CR7">
<connections>
<action selector="checkSpelling:" target="-1" id="fz7-VC-reM"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="bNw-od-mp5"/>
<menuItem title="Check Spelling While Typing" id="rbD-Rh-wIN">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleContinuousSpellChecking:" target="-1" id="7w6-Qz-0kB"/>
</connections>
</menuItem>
<menuItem title="Check Grammar With Spelling" id="mK6-2p-4JG">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleGrammarChecking:" target="-1" id="muD-Qn-j4w"/>
</connections>
</menuItem>
<menuItem title="Correct Spelling Automatically" id="78Y-hA-62v">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="2lM-Qi-WAP"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Substitutions" id="9ic-FL-obx">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Substitutions" id="FeM-D8-WVr">
<items>
<menuItem title="Show Substitutions" id="z6F-FW-3nz">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="oku-mr-iSq"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="gPx-C9-uUO"/>
<menuItem title="Smart Copy/Paste" id="9yt-4B-nSM">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleSmartInsertDelete:" target="-1" id="3IJ-Se-DZD"/>
</connections>
</menuItem>
<menuItem title="Smart Quotes" id="hQb-2v-fYv">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="ptq-xd-QOA"/>
</connections>
</menuItem>
<menuItem title="Smart Dashes" id="rgM-f4-ycn">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="oCt-pO-9gS"/>
</connections>
</menuItem>
<menuItem title="Smart Links" id="cwL-P1-jid">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticLinkDetection:" target="-1" id="Gip-E3-Fov"/>
</connections>
</menuItem>
<menuItem title="Data Detectors" id="tRr-pd-1PS">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticDataDetection:" target="-1" id="R1I-Nq-Kbl"/>
</connections>
</menuItem>
<menuItem title="Text Replacement" id="HFQ-gK-NFA">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleAutomaticTextReplacement:" target="-1" id="DvP-Fe-Py6"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Transformations" id="2oI-Rn-ZJC">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Transformations" id="c8a-y6-VQd">
<items>
<menuItem title="Make Upper Case" id="vmV-6d-7jI">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="uppercaseWord:" target="-1" id="sPh-Tk-edu"/>
</connections>
</menuItem>
<menuItem title="Make Lower Case" id="d9M-CD-aMd">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="lowercaseWord:" target="-1" id="iUZ-b5-hil"/>
</connections>
</menuItem>
<menuItem title="Capitalize" id="UEZ-Bs-lqG">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="capitalizeWord:" target="-1" id="26H-TL-nsh"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Speech" id="xrE-MZ-jX0">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Speech" id="3rS-ZA-NoH">
<items>
<menuItem title="Start Speaking" id="Ynk-f8-cLZ">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="startSpeaking:" target="-1" id="654-Ng-kyl"/>
</connections>
</menuItem>
<menuItem title="Stop Speaking" id="Oyz-dy-DGm">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="stopSpeaking:" target="-1" id="dX8-6p-jy9"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="View" id="H8h-7b-M4v">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="View" id="HyV-fh-RgO">
<items>
<menuItem title="Enter Full Screen" keyEquivalent="f" id="4J7-dP-txa">
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/>
<connections>
<action selector="toggleFullScreen:" target="-1" id="dU3-MA-1Rq"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Window" id="aUF-d1-5bR">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Window" systemMenu="window" id="Td7-aD-5lo">
<items>
<menuItem title="Minimize" keyEquivalent="m" id="OY7-WF-poV">
<connections>
<action selector="performMiniaturize:" target="-1" id="VwT-WD-YPe"/>
</connections>
</menuItem>
<menuItem title="Zoom" id="R4o-n2-Eq4">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="performZoom:" target="-1" id="DIl-cC-cCs"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="eu3-7i-yIM"/>
<menuItem title="Bring All to Front" id="LE2-aR-0XJ">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="arrangeInFront:" target="-1" id="DRN-fu-gQh"/>
</connections>
</menuItem>
</items>
</menu>
</menuItem>
<menuItem title="Help" id="EPT-qC-fAb">
<modifierMask key="keyEquivalentModifierMask"/>
<menu key="submenu" title="Help" systemMenu="help" id="rJ0-wn-3NY"/>
</menuItem>
</items>
<point key="canvasLocation" x="142" y="-258"/>
</menu>
<window title="APP_NAME" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="QvC-M9-y7g" customClass="MainFlutterWindow" customModule="Runner" customModuleProvider="target">
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
<rect key="contentRect" x="335" y="390" width="800" height="600"/>
<rect key="screenRect" x="0.0" y="0.0" width="2560" height="1577"/>
<view key="contentView" wantsLayer="YES" id="EiT-Mj-1SZ">
<rect key="frame" x="0.0" y="0.0" width="800" height="600"/>
<autoresizingMask key="autoresizingMask"/>
</view>
</window>
</objects>
</document>

View File

@ -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.

View File

@ -1,2 +0,0 @@
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"

View File

@ -1,2 +0,0 @@
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"

Some files were not shown because too many files have changed in this diff Show More