.NET
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* 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 HTT...
I'll research it.
./configure --with-mysql=mysqlnd --with-mysqli=mysqlnd --...
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=mysqln...
--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
終了行:
* 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 HTT...
I'll research it.
./configure --with-mysql=mysqlnd --with-mysqli=mysqlnd --...
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=mysqln...
--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
ページ名: