#author("2024-12-09T08:50:01+00:00","default:iseki","iseki") #author("2025-09-18T09:11:36+00:00","default:iseki","iseki") * dotnet (.NET) ** Install *** RedHat 系 - dnf install dotnet-* *** Information - dotnet --info - dotnet --version ** Programming *** Project の作成 <pre> dotnet new console -o Net8 -f net8.0 cd Net8 dotnet add package OpenAI vi Program.cs dotnet run </pre> *** 仕切り直し <pre> dotnet clean dotnet restore dotnet build </pre> ** dotnet コマンド *** [[NuGet]] パッケージのインストール - dotnet remove package OpenAI --version=XXXXX *** パッケージの削除 - dotnet remove package OpenAI *** パッケージの確認 - dotnet list package *** キャッシュのクリア - dotnet nuget locals all --clear ** 未整理 yum install dotnet-*-6.0 cd opensim git checkout dotnet6 ./runprebuild.sh ./compile.sh cd bin ./opensim.sh Umm.... 0.9.3 with .NET6 instead of mono, I get an error with HTTPS connections. I'll research it. ./configure --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-apxs2=/usr/local/apache/bin/apxs --with-openssl=/usr/local/ssl --with-zlib=/usr --enable-mbstring --with-iconv --enable-intl --enable-zip --enable-soap --enable-pcntl --enable-sockets --with-curl --with-xmlrpc --enable-opcache --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir=/usr --with-sodium yum install libsodium libsodium-devel yum install libsqlite3x yum install libsqlite3x-devel git clone https://github.com/kkos/oniguruma.git cd oniguruma ./autogen.sh ./configure make make install cd .. ./configure --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd \ --with-apxs2=/usr/local/apache/bin/apxs \ --with-openssl --with-zip --with-zlib \ --enable-mbstring --with-iconv --enable-intl \ --enable-soap --enable-pcntl --enable-sockets \ --with-curl --with-xmlrpc --enable-opcache \ --with-sodium --enable-exif \ --enable-gd --with-jpeg --with-freetype