#!/bin/sh echo "############### tv-dotnet-generate-ni.post ################" # Generate NI for dlls and exes under platform directories export IBCDATA_DIR=/usr/share/dotnet.tizen/ibcdata # remove previous native image dotnettool --ni-reset-system # generate native image dotnettool --ibc-dir $IBCDATA_DIR --ni-system # remove ibc data files if [ -d $IBCDATA_DIR ] then rm -rf $IBCDATA_DIR fi ################################################################## # # # Obsolute # # # ################################################################## # Generate NI for System #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Collections.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.IO.FileSystem.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Linq.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Linq.Expressions.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.ObjectModel.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Private.DataContractSerialization.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Private.Uri.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Private.Xml.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Reflection.Metadata.dll #nitool --dll /usr/share/dotnet/shared/Microsoft.NETCore.App/2.0.0/System.Text.RegularExpressions.dll # Generate NI for Xamarin and Device API #nitool --dll /usr/share/dotnet.tizen/framework/ElmSharp.dll #nitool --dll /usr/share/dotnet.tizen/framework/Tizen.dll #nitool --dll /usr/share/dotnet.tizen/framework/Tizen.Applications.Common.dll #nitool --dll /usr/share/dotnet.tizen/framework/Tizen.Applications.UI.dll #nitool --dll /usr/share/dotnet.tizen/framework/Xamarin.Forms.Core.dll #nitool --dll /usr/share/dotnet.tizen/framework/Xamarin.Forms.Platform.dll #nitool --dll /usr/share/dotnet.tizen/framework/Xamarin.Forms.Platform.Tizen.dll #nitool --dll /usr/share/dotnet.tizen/framework/Xamarin.Forms.Xaml.dll # Generate Launcher #nitool --dll /usr/bin/Tizen.Runtime.Coreclr.dll