並び順

ブックマーク数

期間指定

  • から
  • まで

161 - 200 件 / 669件

新着順 人気順

dotnet runの検索結果161 - 200 件 / 669件

  • .NET COREでLinuxで動作するサービスを作成する – code-lab.net

    .NET Core + C#でLinuxのDeamon作れないかなと思ったら、思ったより簡単に作れるようになっていたので覚え書き。Program.csとDaemonService.csの中味はほぼ定型なのでサンプルからそのまま流用します。 以下のサンプルは.NET Core 3.1で記述しています。 // Program.cs using System; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; namespace DaemonSample { clas

    • 自作WindowsアプリをAKSでコンテナに載せるキホン技

      こんにちは、名古屋事業所勤務の松枝です。 Azure Kubernetes Service(AKS)はWindowsコンテナの使用できる構成を作成することができます(記事公開時点ではパブリックプレビュー)。 Windowsコンテナが使えるAKSを用意して、アプリを動かしてみましょう。 アプリの作成からインフラの作成まで一通り必要な手順を書いてみましたので、この記事をベースにWindowsコンテナの世界に入門していただけたらと思います。 また、アプリ開発、コンテナ作成、AKS作成を一通り記載しているので、例えばアプリ開発は知識があるけどインフラはちょっと… という場合に部分的に参照していただけると嬉しいです。 Azure Cloud Shellとはなんぞや?などの細かい説明は省いていますので、適宜調べながら読み進めていただけたらと思います。 概要 ・(Windows環境でしか動作しない)アプ

        自作WindowsアプリをAKSでコンテナに載せるキホン技
      • Calling Windows APIs in .NET5

        With the release of .NET5 Preview 8, we have introduced a streamlined way for .NET developers to access the set of Windows Runtime (WinRT) APIs that are shipped as part of Windows. .NET5 applications can now access Windows APIs through a new set of Target Framework Monikers (TFMs), which have been extended to support platform specific APIs. This is the recommended mechanism for .NET going forward.

          Calling Windows APIs in .NET5
        • Elevating C# Code Quality with Qodana: A Journey Towards Perfection | The .NET Tools Blog

          IDEs CLion DataGrip DataSpell Fleet GoLand IntelliJ IDEA PhpStorm PyCharm RustRover Rider RubyMine WebStorm Plugins & Services Big Data Tools Code With Me Quality Assurance JetBrains Platform Scala Toolbox App Writerside JetBrains AI Grazie Team Tools Datalore Space TeamCity Upsource YouTrack Hub Qodana CodeCanvas .NET & Visual Studio .NET Tools ReSharper C++ Languages & Frameworks Kotlin Ktor MPS

            Elevating C# Code Quality with Qodana: A Journey Towards Perfection | The .NET Tools Blog
          • Building a Progressive Web App with Blazor - Visual Studio Blog

            A Progressive Web Application (PWA) is a Single Page Application (SPA) that uses modern browser APIs and capabilities to behave like a desktop app. Blazor WebAssembly (now in preview) includes support for Progressive Web Applications. Today, I want to show you how to build your first Blazor PWA. I am using the latest preview of Visual Studio for Mac, you can also create them using the latest Visua

              Building a Progressive Web App with Blazor - Visual Studio Blog
            • .NET Interactive Preview 3: VS Code Insiders and .NET Polyglot Notebooks - .NET Blog

              ***Please note this post is outdated. The .NET Interactive Notebooks Extension is now named Polyglot Notebooks. See here to learn more: https://devblogs.microsoft.com/dotnet/dotnet-interactive-notebooks-is-now-polyglot-notebooks/ *** In .NET Interactive Preview 2, we announced that in addition to Jupyter Notebook and Jupyter Lab, users could use nteract as well. In this preview, users can add VS C

                .NET Interactive Preview 3: VS Code Insiders and .NET Polyglot Notebooks - .NET Blog
              • ASP.NET Core の構成

                ASP.NET Core のアプリケーション構成は、1 つまたは複数の構成プロバイダーを使用して実行されます。 構成プロバイダーは、以下のようなさまざまな構成ソースを使用して、キーと値のペアから構成データを読み取ります: appsettings.json などの設定ファイル 環境変数 Azure Key Vault Azure App Configuration コマンド ライン引数 インストール済みまたは作成済みのカスタム プロバイダー ディレクトリ ファイル メモリ内 .NET オブジェクト この記事では ASP.NET Core の構成について説明します。 コンソール アプリでの構成の使用方法について詳しくは、.NET 構成に関する記事をご覧ください。 このノードのガイダンスを追加または置き換える Blazor 構成ガイダンスについては、「ASP.NET Core Blazor 構成

                  ASP.NET Core の構成
                • Announcing .NET Community Toolkit 8.1! Better, faster MVVM source generators, .NET 7 support, and more! - .NET Blog

                  Dev Blogs.NET BlogAnnouncing .NET Community Toolkit 8.1! Better, faster MVVM source generators, .NET 7 support, and more! We’re happy to announce the official launch of the 8.1 release of the .NET Community Toolkit! This new version includes highly requested new features, bug fixes, and massive performance improvements to the MVVM Toolkit source generators, to make the developer UX when using them

                    Announcing .NET Community Toolkit 8.1! Better, faster MVVM source generators, .NET 7 support, and more! - .NET Blog
                  • .NET アプリでの機能フラグの使用に関するチュートリアル

                    .NET 機能管理ライブラリは、.NET または ASP.NET Core アプリケーションで機能フラグを実装するための慣用的なサポートを提供します。 これらのライブラリにより、機能フラグを宣言的にコードに追加できるため、if ステートメントで機能を有効にしたり無効にしたりするコードを手動で記述する必要がなくなります。 機能管理ライブラリは、バックグラウンドで機能フラグのライフサイクル管理も行います。 たとえば、ライブラリは、フラグの状態を更新およびキャッシュしたり、要求の呼び出し中にフラグの状態が不変であることを保証したりします。 さらに、ASP.NET Core ライブラリには、MVC コントローラー アクション、ビュー、ルート、およびミドルウェアを含む、すぐに使用できる統合が用意されています。 このチュートリアルでは、次の内容を学習します。 前提条件 「クイックスタート: ASP.N

                      .NET アプリでの機能フラグの使用に関するチュートリアル
                    • .NET 6 で Bot Framework SDK を使ってみよう

                      Bot Framework SDK を使って C# でボットを作るときは基本的に Bot Framework のテンプレートが追加される Visual Studio の拡張機能から作り始めるのが一番簡単なのですが、現時点ではまだ .NET Core 3.1 までしかテンプレートが用意されていません。 .NET 6 版もそのうち追加されると思いますが、とりあえず手動で .NET 6 対応でさくっと EchoBot を作ってみようと思います。Bot Framework SDK 的には .NET Core 3.1 までしか対応してない雰囲気を感じるので本番のボットは大人しくプロジェクトテンプレートから .NET Core 3.1 で作るのがいいような気がします。 Minimal APIs プロジェクトを作って Bot を足す ASP.NET Core (空) のプロジェクトテンプレートで作成する

                        .NET 6 で Bot Framework SDK を使ってみよう
                      • Create a .NET console application using Visual Studio Code - .NET

                        This tutorial shows how to create and run a .NET console application by using Visual Studio Code. Prerequisites Visual Studio Code with C# Dev Kit installed. For information about how to install extensions on Visual Studio Code, see VS Code Extension Marketplace. The .NET 8 SDK. Create the app Create a .NET console app project named "HelloWorld". Start Visual Studio Code. Go to the Explorer view a

                          Create a .NET console application using Visual Studio Code - .NET
                        • Regular Expression Improvements in .NET 7 - .NET Blog

                          A friend once quipped to me that “computer science is entirely about sorting and searching”. While that’s a gross overgeneralization, there’s a grain of truth to it. Searching is, in one way, shape, or form, at the heart of many workloads, and it’s so important that multiple domain-specific languages have been created over the years to ease the task of expressing searches. Arguably none is more ub

                            Regular Expression Improvements in .NET 7 - .NET Blog
                          • My Ultimate PowerShell prompt with Oh My Posh and the Windows Terminal

                            I've long blogged about my love of setting up a nice terminal, getting the prompt just right, setting my colors, fonts, glyphs, and more. Here's some of my posts. How to make a pretty prompt in Windows Terminal with Powerline, Nerd Fonts, Cascadia Code, WSL, and oh-my-posh Patching the new Cascadia Code to include Powerline Glyphs and other Nerd Fonts for the Windows Terminal What's the difference

                              My Ultimate PowerShell prompt with Oh My Posh and the Windows Terminal
                            • ASP.NET Core で IHttpClientFactory を使用して HTTP 要求を行う

                              作成者: Kirk Larkin、Steve Gordon、Glenn Condron、Ryan Nowak。 アプリ内で HttpClient インスタンスを構成して作成するために、IHttpClientFactory を登録して使用できます。 IHttpClientFactory には次のような利点があります。 論理 HttpClient インスタンスの名前付けと構成を一元化します。 たとえば、GitHub にアクセスするために、github という名前のクライアントを登録して構成できます。 一般的なアクセスのために、既定のクライアントを登録できます。 HttpClient でのハンドラーのデリゲートにより、送信ミドルウェアの概念が体系化されます。 HttpClient でのハンドラーのデリゲートを利用するために、Polly ベースのミドルウェアに対する拡張機能が提供されます。 基にな

                                ASP.NET Core で IHttpClientFactory を使用して HTTP 要求を行う
                              • Run Blazor-based .NET Web applications on AWS Serverless | Amazon Web Services

                                AWS Developer Tools Blog Run Blazor-based .NET Web applications on AWS Serverless Blazor WebAssembly is a new client-side web development framework that lets developers to use C# to create application front end. Blazor can run client-side C# code directly in the browser, using WebAssembly. Blazor WebAssembly runs on .NET Core and it is an open source and cross-platform web framework for building s

                                  Run Blazor-based .NET Web applications on AWS Serverless | Amazon Web Services
                                • Rust panics under the hood, and implementing them in .NET

                                  Rust panics under the hood, and implementing them in .NET I am currently working on a Rust to .NET compiler, rustc_codegen_clr. To get it to work, I need to implement many Rust features using .NET APIs. One of such features is panicking and unwinding. This article is the first one in a series about Rust panics, unwinding, and my implementation of them in .NET. In this part, I will look at unwindin

                                  • .NET での汎用ホスト - .NET

                                    この記事では、Microsoft.Extensions.Hosting NuGet パッケージで使用できる .NET 汎用ホストを構成および構築するためのさまざまなパターンについて学習します。 .NET 汎用ホストが担当するのは、アプリの起動および有効期間の管理です。 Worker サービス テンプレートを使用すると、.NET 汎用ホスト HostApplicationBuilder が作成されます。 汎用ホストは、コンソール アプリなど、他の種類の .NET アプリケーションで使用できます。 ''ホスト'' とは、次のようなアプリのリソースと有効期間機能をカプセル化するオブジェクトです。 依存関係の挿入 (DI) ログの記録 構成 アプリのシャットダウン IHostedService の実装 ホストが起動すると、サービス コンテナーのホステッド サービスのコレクションに登録されている I

                                      .NET での汎用ホスト - .NET
                                    • Choose a .NET Game Engine - .NET Blog

                                      No trial. No credit card required. Just your GitHub account. Developing games is multi-disciplined compared to developing business apps and services. Games need design skills spanning UI, audio, gameplay, and art direction. It also requires engineering skills for graphics, gameplay, audio, cloud services, and develops. Sometimes you need to get low level and play around with hardware registries in

                                        Choose a .NET Game Engine - .NET Blog
                                      • .NET Interactive with SQL!| .NET Notebooks in Visual Studio Code - .NET Blog

                                        Supercharge your distributed app and cloud native development with .NET Aspire by harnessing cutting-edge Azure services, components, tooling, deployment, and more for your .NET Aspire projects. Join the .NET Aspire and Azure product teams as they deep dive into essential Azure services to build world-class, cloud native applications with .NET. ***Please note this post is outdated. The .NET Intera

                                          .NET Interactive with SQL!| .NET Notebooks in Visual Studio Code - .NET Blog
                                        • 普通のテンキーを使ってStreamdeckのようなものを作ってみた - 月好きの色々

                                          こんにちは、月好きです。 最近TwitterでStreamdeckを購入されている方を見かけて、あったら便利そうだな~と思いました。しかし、一番安いグレードでも1万円を超えていて正直あまり簡単には手が出せません・・・。 という事で今回は普通のテンキーでStreamdeckのようなものを作ってみます。 結果 まず最初に、どのようなものが完成したかですが このような感じになりました(NumLock割り当て不可、1キー未割り当て) Streamdeckというか、完全に左手キーボードやプログラマブルテンキーです・・・ しかし、1ボタンで配信に使うソフトを同時起動したり、OBSの録画・停止ができたりとStreamdeckの機能を再現する事ができました 逆にできなかった事はプロファイルや階層の作成です。これがあれば動画編集の時と配信の時で全く別の動作を割り当てるといった事ができるのですが今回使ったソフ

                                            普通のテンキーを使ってStreamdeckのようなものを作ってみた - 月好きの色々
                                          • TargetFramework net5.0 なコードを .NET 6 ランタイムで動かす

                                            .NET のアップデート 昔の C# アプリ (例えば去年作った TargetFramework net5.0 なアプリ)をそのまま最新のランタイム(例えば .NET 6 ランタイム)で動かすことを考えます。 .NET は API レベルでの破壊的変更はめったにないので、 「API が合わなくてロードできない」みたいな根本的な問題はほぼ起こりません。 一方、挙動レベルでは時々破壊的変更があるんで、確実に動く保証はなかったりします。 (それでも、体感、9割方は動きますが。) ここ数バージョンであった影響がありそうな変更でいうと、 .NET Core 3.0 の頃同期 I/O が例外を出すようになったものがちらほらある ネットワークなどを介する場合、非同期でないとパフォーマンスが出ないので .NET 5 で、国際化対応に ICU を使うようになった 文字列の紹介順や、IndexOf の挙動がち

                                              TargetFramework net5.0 なコードを .NET 6 ランタイムで動かす
                                            • Running code after returning a response from an AWS Lambda function | Amazon Web Services

                                              AWS Compute Blog Running code after returning a response from an AWS Lambda function This post is written by Uri Segev, Principal Serverless Specialist SA. When you invoke an AWS Lambda function synchronously, you expect the function to return a response. For example, this is the case when a client invokes a Lambda function through Amazon API Gateway or from AWS Step Functions. As the client is wa

                                                Running code after returning a response from an AWS Lambda function | Amazon Web Services
                                              • 多分わかりやすいASP.NET Core Webアプリケーション | SIOS Tech. Lab

                                                こんにちは、サイオステクノロジー技術部 武井です。今回は、ASP.NET CoreによるWebアプリケーション作成の基本のキをご説明したいと思います。 ASP.NET Coreとは? マルチプラットフォーム(Windows、Linux、Mac)で動作する.NET環境です。最初は、Windowsのみで動作する.NETに内包されていましたが、.NET5.0からは「.NET Core」として別系統で開発がされるようになりました。でも次期.NETのバージョンから.NET Coreは.NETに統合され、またよりを戻すことになりそうです、、、(2019年6月11日現在)。 とりあえず作ってみる Visual Studio 2019のプロジェクトテンプレートから作成されるハロワ的なアプリケーションを作成し、そのコードの流れをご説明していきます。 では、早速作ってみます。Visual Studio 201

                                                  多分わかりやすいASP.NET Core Webアプリケーション | SIOS Tech. Lab
                                                • C#でプラグイン機能を実装しよう! | Gabekore Garage

                                                  お知らせ >> プログラミングレッスンやってます! 無料体験レッスンの詳細はこちら こんにちは。ナガオカ(@boot_kt)です。 C#でプラグイン機能を作る!!! それだけだっ!! ただ、それだけだと他のブログさんの記事と似たような内容になるので、僕なりにちょっとだけ工夫しています CUI版とGUI版の2種類作ってます CUI版は他の記事と同じような内容ですが、GUI版は実践的に使うならこういうことできると幸せになれるかな、と思ったことを実装しています 参考になれば嬉しいです 参考にしたURL 参考にさせて頂いた記事です ぜひこちらもご覧ください 私にとっては、C#のプラグインの記事の中では、この記事が一番シンプルで分かりやすかったです。 niyoな日記  7 usersC#でプラグイン実装 - niyoな日記C#でプラグインを実装するサンプルを紹介する。最初にサンプルソース... その

                                                    C#でプラグイン機能を実装しよう! | Gabekore Garage
                                                  • Announcing .NET 9 - .NET Blog

                                                    Today, we are excited to announce the launch of .NET 9, the most productive, modern, secure, intelligent, and performant release of .NET yet. It’s the result of another year of effort on the part of thousands of developers from around the world. This new release includes thousands of performance, security, and functional improvements. You will find sweeping enhancements across the entire .NET stac

                                                      Announcing .NET 9 - .NET Blog
                                                    • Introducing to ConsoleAppFramework (vol 1) | Yucchiy's Note

                                                      February 24, 2020Introducing to ConsoleAppFramework (vol 1) ConsoleAppFrameworkを触ってみたので、メモがてらブログにしました。基本的にREADMEをベースに書いています。 ConsoleAppFrameworkとは https://github.com/Cysharp/ConsoleAppFramework Micro-framework for console applications to building CLI tools/Daemon/Batch for .NET Core, C#. Cysharp, Incが開発するコンソールアプリ構築のためのマイクロフレームワークで、.NET Core, C# で実装されています。 ConsoleAppFramework is built on .NET Gener

                                                        Introducing to ConsoleAppFramework (vol 1) | Yucchiy's Note
                                                      • Azure App Service と GitHub Actions を使って Pull Request のプレビュー環境を自動で作成する - しばやん雑記

                                                        Azure Static Web Apps がリリースされた時に羨ましかった機能として、Pull Request を作成する度にプレビュー用の環境を自動で作成してくれる、というものがありました。レビュー中に実際のアプリケーションを確認できるのは重要なので、App Service でも欲しいと思っていました。 App Service にも Deployment slot という機能があるので、これを使えばいい感じに Pull Request が作成されたタイミングでデプロイまで出来るのではと考えていたので、そろそろ試してみることにしました。 Pull Request が作成された時に Deployment slot の作成とデプロイを行い、Pull Request が閉じられた時に Deployment slot を削除すれば、理論上は 20 個まで同時にプレビュー環境を作成出来るはずです。

                                                          Azure App Service と GitHub Actions を使って Pull Request のプレビュー環境を自動で作成する - しばやん雑記
                                                        • dotnet new <TEMPLATE> - .NET CLI

                                                          この記事の対象: ✔️ .NET Core 3.1 SDK 以降のバージョン 名前 dotnet new - 指定したテンプレートに基づいて、新しいプロジェクト、構成ファイル、またはソリューションを作成します。 構文 dotnet new <TEMPLATE> [--dry-run] [--force] [-lang|--language {"C#"|"F#"|VB}] [-n|--name <OUTPUT_NAME>] [-f|--framework <FRAMEWORK>] [--no-update-check] [-o|--output <OUTPUT_DIRECTORY>] [--project <PROJECT_PATH>] [-d|--diagnostics] [--verbosity <LEVEL>] [Template options] dotnet new -h|--he

                                                            dotnet new <TEMPLATE> - .NET CLI
                                                          • Without Blazor WebAssembly, develop a web site that compiles and runs C# code on browser

                                                            Without Blazor WebAssembly, develop a web site that compiles and runs C# code on browser In this article, I will share with you on how to “ build a tool to compile and run C# code in the browser”. The core technology is to write WebAssembly and Roslyn technology in C# without relying on the Blazor framework. 1. Why such a tool is needed? For programming novices, the installation and configuration

                                                              Without Blazor WebAssembly, develop a web site that compiles and runs C# code on browser
                                                            • Web ブラウザ上で動く Prolog の対話環境 (REPL) サイトを立ち上げた - Qiita

                                                              ズバリ、表題のとおり、近代 Web ブラウザ上で動く Prolog の対話環境 (REPL) サイト "Prolog on Browser" を立ち上げました。 URL は下記です。 https://jsakamoto.github.io/Prolog-on-Browser/ 現時点では、まだちゃんとオフライン対応の仕込みをしていないため、インターネット接続がないと利用できませんが、サーバー側で Prolog が動いているのではなく、Web ブラウザ上で Prolog インタープリタが動作しています。 PWA 等でオフライン対応の実装を済ませたら、いちどロードした後はインターネット接続がない環境でも起動できるようになります。 動作の仕組み C# 製の Prolog インタプリター "CSharpProlog" John C Pool 氏が 2006 年に個人的なプロジェクトとして、C# を

                                                                Web ブラウザ上で動く Prolog の対話環境 (REPL) サイトを立ち上げた - Qiita
                                                              • self-hosted runnerをDockerイメージにする|SHIFT Group 技術ブログ

                                                                はじめにはじめまして。DAAE開発1グループの中本です。 self-hosted runnerをDockerイメージにしてみたので紹介します。 self-hosted runnerとは一言で言うと、GitHub Actionsの実行環境を自分で用意できる機能です。 通常、GitHub ActionsのワークフローはGitHubが用意するホストランナー上で実行されます。GitHubのホストランナーは事前準備なしで使える一方、実行環境のカスタマイズ等はできません。 自社サーバー上でCI/CD実行したい、実行環境のスペックをもっと上げたい、などの要件があれば、自前で用意したサーバーにself-hosted runnerを構築することで実現できます。 そんなself-hosted runnerをコンテナ環境でも動かせるとCI/CD環境の選択肢がもっと広がるよね、ということでDockerイメージにし

                                                                  self-hosted runnerをDockerイメージにする|SHIFT Group 技術ブログ
                                                                • System.Threading.Channelsのメモ-01 (基本的な使い方) - いろいろ備忘録日記

                                                                  概要 インストール サンプル 概要 最近、Goでよく遊んでいるのでGoのチャネルみたいなものが C#で無いかなーって探してみたら、以下がありました。 www.nuget.org そのものスバリの名前のライブラリがあるじゃないですか。知らなかったです。 で、.NET Blog の方にも紹介記事がありました。 devblogs.microsoft.com 上の記事とかまだちゃんと読めていないのですが、後で読む。 また、以下のようなめっちゃ丁寧に書いてくださっているシリーズ記事もありました。 deniskyashif.com deniskyashif.com deniskyashif.com これも後できっちり読む。 とりあえず、今回は基本的な使い方の勉強です。 インストール インストールは NuGet で インストールすれば終わりでした。 プレリリースで、5.0.0 preview が出ている

                                                                    System.Threading.Channelsのメモ-01 (基本的な使い方) - いろいろ備忘録日記
                                                                  • まだまだ現役! .NET 6.0 でも Windows フォームアプリケーションの新機能 - rksoftware

                                                                    .NET 6.0 でもみんな大好き Windows フォームアプリケーションは現役です。新機能も追加されます。 参考: 今回はこの追加されたアプリケーション全体のデフォルトフォントを試してみます。 環境準備 Visual Studio 2022 Preview をインストールします。 https://visualstudio.microsoft.com/ja/vs/preview/vs2022/ .NET 6.0 の Preview を単独でインストールしても良いのですが、せっかくなので、Visual Studio もインストールしておきましょう。Visual Studio のインストールで .NET もインストールされます。 検証プロジェクトを作成 デフォルトフォントの異なる二つのプロジェクトを作りたいので、Windows フォームアプリケーションのプロジェクトを二つ作ります。 dotn

                                                                      まだまだ現役! .NET 6.0 でも Windows フォームアプリケーションの新機能 - rksoftware
                                                                    • Dockerfileが正しいかどうかローカルで検証する

                                                                      はじめに みなさん、Dockerfile書いてますか? この記事を見ている方は何らかの理由でDockerfileを書くことになった方と思います。 今回はそんな方の助けになることを目指して、ローカルでDockerfileを使ってコンテナをビルドし、動作確認する方法で一席打ちたいと思います。 前提 ・Dockerがインストールされている アプリを立ち上げるマシンにDockerが必要です。 まだインストールしていなければ公式サイトからインストールしておきましょう。 https://www.docker.com/products/docker-desktop ・Visual Studioがインストールされていて.Net Coreアプリ開発のためのSDKがインストールされていること 今回はビルドするアプリの例として、.Net Core3.1のWeb APIを作成します。 そのため、開発環境としてVi

                                                                        Dockerfileが正しいかどうかローカルで検証する
                                                                      • Rocky Linux 8.5 Available Now - Rocky Linux

                                                                        Hello everyone. I am pleased to announce the general availability of Rocky Linux 8.5. This release is for the x86_64 and aarch64 architectures and is derived from Red Hat Enterprise Linux 8.5. Please read through the release notes at: https://docs.rockylinux.org/release_notes/8.5/ - These notes contain important information about the release, details about some of the content inside the release (s

                                                                        • GitHub - fsharp/fslang-design: RFCs and docs related to the F# language design process, see https://github.com/fsharp/fslang-suggestions to submit ideas

                                                                          Use F# Language Suggestions to submit ideas, vote on them and discuss them. Ideas which get "approved in principle" get an RFC entry based on the template, and a corresponding RFC discussion thread There is currently a backlog of approved ideas. If an idea has been approved and you'd like to accelerate the creation of an RFC, send a PR creating the RFC document for any approved-in-principle issue.

                                                                            GitHub - fsharp/fslang-design: RFCs and docs related to the F# language design process, see https://github.com/fsharp/fslang-suggestions to submit ideas
                                                                          • Introducing the .NET 8 runtime for AWS Lambda | Amazon Web Services

                                                                            AWS Compute Blog Introducing the .NET 8 runtime for AWS Lambda This post is written by Beau Gosse, Senior Software Engineer and Paras Jain, Senior Technical Account Manager. AWS Lambda now supports .NET 8 as both a managed runtime and container base image. With this release, Lambda developers can benefit from .NET 8 features including API enhancements, improved Native Ahead of Time (Native AOT) su

                                                                              Introducing the .NET 8 runtime for AWS Lambda | Amazon Web Services
                                                                            • ReadyToRun 展開の概要 - .NET

                                                                              アプリケーション アセンブリを ReadyToRun (R2R) 形式としてコンパイルすることにより、.NET アプリケーションの起動時間と待機時間を向上させることができます。 R2R とは、Ahead-Of-Time (AOT) コンパイルの一種です。 R2R バイナリでは、アプリケーションの読み込み時に Just-In-Time (JIT) コンパイラで行う必要がある作業量を減らすことにより、起動時のパフォーマンスが向上します。 バイナリには、JIT で生成されるものと似たネイティブ コードが含まれます。 ただし、R2R バイナリは、中間言語 (IL) コード (一部のシナリオでまだ必要です) と同じコードのネイティブ バージョンの両方が含まれるため、大きくなります。 R2R は、Linux x64 や Windows x64 などの特定のランタイム環境 (RID) を対象とするアプリ

                                                                                ReadyToRun 展開の概要 - .NET
                                                                              • Awesome Playwright

                                                                                Skip to the content. Awesome Playwright A curated list of awesome tools, utils and projects using Playwright Playwright is a Node.js library to automate Firefox, WebKit and Chromium based browsers via a single API. Contents Integrations Language Support Utils Reporters Showcases Guides Contribute Integrations jest-playwright - Jest adapter for running Playwright. CodeceptJS - Supercharged End 2 En

                                                                                • 【Unity】マスタデータを効率よく取り扱うMasterMemoryの概要と使い方まとめ - LIGHT11

                                                                                  マスタデータを効率よく取り扱うMasterMemoryの概要と使い方についてまとめました。 MasterMemoryとは? MasterMemoryの仕組み 基本的な使い方 インストール テーブル構造定義クラスを作る 関連クラスを生成する バイナリをビルドする バイナリを読み込む その他覚えておくべきこと セカンダリキー 複合キー いろんな検索&文字列の場合の比較方法の指定 コンストラクタ自動生成 テーブルの拡張方法 生成後のMemoryDatabaseの値を変更する 継承には非対応なので注意 その他 参考 MasterMemoryとは? ゲーム開発では、キャラクターごとのパラメータやステージごとの情報など、全ユーザ共通の情報をマスタデータとして扱います。 マスタデータの例 マスタデータは膨大な量になりがちで、この膨大な量のデータから必要なデータをできるだけ早く検索することが求められます。

                                                                                    【Unity】マスタデータを効率よく取り扱うMasterMemoryの概要と使い方まとめ - LIGHT11