並び順

ブックマーク数

期間指定

  • から
  • まで

201 - 240 件 / 712件

新着順 人気順

dotnet runの検索結果201 - 240 件 / 712件

  • 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
      • 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 技術ブログ
        • 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
          • 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
            • C#が好きな3つの理由 - Findy Engineer Lab

              自己紹介 初めまして。北澤 亮太 ( @Anteccq ) といいます。Sansan 株式会社でエンジニアとして日々業務に携わっています。 C# を学生の頃からずっと書いています。10年位前に WinForms で初めて GUI アプリを作ったときの楽しさを忘れられず、そこからずっと C# を続けています。 学生の時は WinForms をちょこっとやり、そのあと長い間 WPF アプリをずっと書いていました。UWP 触ったり WinUI3 を触ったりしながらふらふらしていたら、今の会社に新卒で拾っていただき、業務でサーバーサイド C# 開発に携わらせてもらえるようになりました。一般的な API からサーバーレス、フロントエンドなどさまざまなものまで、すべて C# 漬けでいろいろ書けています。 今日はそんな大好きな C# について、好きなところを好きなように、思いつくままに書きたいと思います

                C#が好きな3つの理由 - Findy Engineer Lab
              • // thinkbeforecoding

                this post is part of the F# Advent Calendar 2021 After years of talks and workshops about Functional Event Sourcing, I noticed that I published only 4 posts on the topic. The first is a rant in 2013 about Martin Fowler's article from 2005 describing something that could be called Command Sourcing and is misleading people into thinking they are doing Event Sourcing. The second is a simple drawing d

                  // thinkbeforecoding
                • 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が正しいかどうかローカルで検証する
                  • GitHub - fsharp/fslang-design: RFCs and docs related to the F# language design process, see https://github.com/fsharp/fslang-suggestions to submit ideas

                    RFCs (Request for Comments) and docs related to the F# language design process. All open RFCs that have not been released live under /RFCs. All RFCs that have been implemented in a preview of F# live under /preview. All release language and FSharp.Core RFCs live under a folder with their respective release. All tooling RFCs (typically for cross-cutting, cross-editor tooling) live under /tooling. U

                      GitHub - fsharp/fslang-design: RFCs and docs related to the F# language design process, see https://github.com/fsharp/fslang-suggestions to submit ideas
                    • Do I really need to leave .NET Framework for .NET 8?

                      What it means if you’re not supported. If a version has reached it’s out-of-support date, this means that Microsoft no longer provides fixes, updates, or online technical assistance. The key issues to this are: Security Risks: Without ongoing security updates, applications become more vulnerable. Compatibility Concerns: Versions may not work seamlessly with newer operating systems, hardware, and t

                      • まだまだ現役! .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
                        • 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

                          • 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 8でのWindowsサービスの作り方 - Qiita

                              概要 .NET(Core)になってから、Windowsサービスの作り方は.NET Frameworkの時とはだいぶ違うものになりました。ASP.NETをベースにしたGenericHostを使用するのが基本になりましたし、インストール方法も.NET Framework以前のものに戻っています。 Windowsサービス関連の話題にも何度か触れていますが、意外にサービス自体の作り方をまとめていなかったので、ここで書いてみようと思います。 最初にまとめ 大雑把に言えば、テンプレート「ワーカーサービス」を選んで、NuGetの参照に「Microsoft.Extensions.Hosting.WindowsServices」を追加して、GenericHostの初期化処理にAddWindowsService()の呼び出しを追加。これだけです。 あとは必要に応じてイベントハンドラやプロパティを設定します。W

                                .NET 8でのWindowsサービスの作り方 - Qiita
                              • Performance Profiling of .NET Core 3 applications on Linux with dotnet-trace and PerfView

                                Performance Profiling of .NET Core 3 applications on Linux with dotnet-trace and PerfView Performance | Linux , Performance , Tools / Nov 4, 2019 Performance issues never seem to disappear from the world, no matter how fast new computers become. To deal with those issues we need proper tools. In the world of .NET development, we can consider ourselves lucky in this regard. We have some of the best

                                  Performance Profiling of .NET Core 3 applications on Linux with dotnet-trace and PerfView
                                • 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

                                  • 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
                                    • 新たな .NET ワークロード向けの開発ツール「AWS Toolkit for .NET Refactoring」が登場しました | DevelopersIO

                                      新たな .NET ワークロード向けの開発ツール「AWS Toolkit for .NET Refactoring」が登場しました いわさです。 先日、AWS Toolkit シリーズに新しい仲間が登場しました。その名も「AWS Toolkit for .NET Refactoring」です。 AWS Toolkit なので IDE と AWS を統合し便利にデプロイ出来る類のもののよう見えますが今までの AWS Toolkit と全く違います。 このツールは .NET Framework ワークロードを .NET へ移行し AWS でホスティングさせるための Visual Studio 拡張です。 移行元の対象バージョンは .NET Framework 3.5 以降で、移行先バージョンは .NET Core 3.1、.NET 5、.NET 6 が対象となっています。 また、拡張を利用出来る

                                        新たな .NET ワークロード向けの開発ツール「AWS Toolkit for .NET Refactoring」が登場しました | DevelopersIO
                                      • Introducing the .NET 6 runtime for AWS Lambda | Amazon Web Services

                                        AWS Compute Blog Introducing the .NET 6 runtime for AWS Lambda This is written by Norm Johanson, Senior Software Dev Engineer. You can now use the .NET 6 runtime to build AWS Lambda functions. The new managed runtime supports both x86 and Arm/Graviton2 processors. You can get started with .NET 6 and Lambda using your tool of choice, including Visual Studio 2022 with the AWS Toolkit for Visual Stud

                                          Introducing the .NET 6 runtime for AWS Lambda | Amazon Web Services
                                        • Introducing .NET MAUI - One Codebase, Many Platforms - .NET Blog

                                          Introducing .NET MAUI – One Codebase, Many Platforms Welcome to .NET Multi-platform App UI. This release marks a new milestone in our multi-year journey to unify the .NET platform. Now you and over 5 million other .NET developers have a first-class, cross-platform UI stack targeting Android, iOS, macOS, and Windows to complement the .NET toolchain (SDK) and base class library (BCL). You can build

                                            Introducing .NET MAUI - One Codebase, Many Platforms - .NET Blog
                                          • (自分用)docker+code-server、cloud9でC#環境作ってみる - Qiita

                                            はじめに この記事の続きみたいな感じです。 dockerでcode-serverを構築して、そこでC#環境作れるか試してみます。 code-server_1 以下のようなディレクトリを作ります。 FROM codercom/code-server:3.8.0 USER root # Install wget and other module RUN apt-get update && apt-get install -y \ wget # Install code-server plugin # ※commandからのextension installは効かない? RUN code-server --install-extension ms-dotnettools.csharp # Install .NET5 ENV DOTNET_ROOT=/usr/share/dotnet ENV PA

                                              (自分用)docker+code-server、cloud9でC#環境作ってみる - Qiita
                                            • Blazor-Fluxor = C# + Redux + DI - ぶらぶらBlazor

                                              前々回の記事でBlazorアプリケーションでMVVMパターンをやってみました。 blablablazor.hatenablog.com 今回はBlazor-Fluxorを使ってFlux(Redux)をやってみます。 Blazor-FluxorはDI(Dependency Injection)を使ったオートディスカバリによって 冗長になりがちなReduxのコードを比較的シンプルにしてくれます。 いきなりBlazor-Fluxorを使った実装に入っても良かったのですが、Flux/Reduxに関する自分の知識の整理も兼ねて Fluxについて Reduxについて Blazor-Fluxorを使ったサンプルの実装 という流れにしてみました。 Fluxについて Fluxはクライアントサイドにおけるアプリケーション状態管理のためのアーキテクチャです。 facebook.github.io アプリケーショ

                                                Blazor-Fluxor = C# + Redux + DI - ぶらぶらBlazor
                                              • VSCodeでC#(例外発生時のリトライ処理) - Qiita

                                                はじめに Visual Studioをインストールして開発しようとすると時間がかかるのでVSCodeでお手軽に しかし、最新環境では開発していないからHello World動かすだけでもはまるという... 参考サイト ◆.NET ダウンロード (Linux、macOS、Windows) https://dotnet.microsoft.com/ja-jp/download/dotnet ※【.NET6.0】をクリックして、Windowsのx64をダウンロード dotnet-sdk-6.0.408-win-x64.exe ※【.NET7.0】をクリックして、Windowsのx64をダウンロード dotnet-sdk-7.0.203-win-x64.exe ◆C#の拡張機能(ms-dotnettools.csharp)インストール https://marketplace.visualstudi

                                                  VSCodeでC#(例外発生時のリトライ処理) - Qiita
                                                • PowerUpを使ってC#のアセンブラを見る

                                                  PowerUpを使うとC#のコンパイル結果であるILやJITアセンブラを見る事が出来ます。SharpLabのオフライン版のようなイメージです。 PowerUpはもともとLevelUP++というサイトの画像を作成するために作られており、アセンブラを見やすく出力する機能がついています。SharpLabよりもかなり見やすくなるのでおすすめです。 また、C#だけでなくGo言語でも使えるようですがこの記事では説明しません。 使ってみる まずPowerUpはexe形式では配布されていないので自分でビルドする必要があります。GitHubからソースコードをダウンロードします。slnファイルが入っているのでVisualStudioで開いてPowerUp.Watcherプロジェクトをビルドします。「PowerUp.Watcher.exe」というファイルが生成されていればOKです。 とりあえず簡単なcsファイル

                                                    PowerUpを使ってC#のアセンブラを見る
                                                  • Visual Basic WinForms Apps in .NET 5 and Visual Studio 16.8 - .NET Blog

                                                    Join us on September 18th as we dive deep into building world-class cloud native applications with .NET and Azure. Visual Basic, along with its Application Framework, is supported in .NET 5 and Visual Studio 16.8! Visual Studio 16.8 includes the Windows Forms Designer, so Visual Basic is ready for you to migrate existing applications or create new applications. While .NET Core has had Visual Basic

                                                      Visual Basic WinForms Apps in .NET 5 and Visual Studio 16.8 - .NET Blog
                                                    • Logging in C# - .NET

                                                      .NET supports high performance, structured logging via the ILogger API to help monitor application behavior and diagnose issues. Logs can be written to different destinations by configuring different logging providers. Basic logging providers are built-in and there are many third-party providers available as well. Get started This first example shows the basics, but it's only suitable for a trivia

                                                        Logging in C# - .NET
                                                      • Embracing nullable reference types - .NET Blog

                                                        Watch Azure Developers - .NET Aspire Day 2024 on-demand! Dive deep into building world-class cloud native applications with .NET and Azure using .NET Aspire! Probably the most impactful feature of C# 8.0 is Nullable Reference Types (NRTs). It lets you make the flow of nulls explicit in your code, and warns you when you don’t act according to intent. The NRT feature holds you to a higher standard o

                                                          Embracing nullable reference types - .NET Blog
                                                        • Trying out MongoDB with EF Core using Testcontainers - .NET Blog

                                                          Helping developers use both relational and non-relational databases effectively was one of the original tenets of EF Core. To this end, there has been an EF Core database provider for Azure Cosmos DB document databases for many years now. Recently, the EF Core team has been collaborating with engineers from MongoDB to bring support for MongoDB to EF Core. The initial result of this collaboration i

                                                            Trying out MongoDB with EF Core using Testcontainers - .NET Blog
                                                          • .NET 8: What's New for Authentication and Authorization

                                                            .NET.NET 8: What's New for Authentication and AuthorizationLet’s explore the new features brought by .NET 8 to support authentication and authorization in your applications. The release of .NET 8 is just around the corner. Among the amazing features it brings to developers, it offers a minor revolution in support for authentication and authorization: moving ASP.NET Core Identity from a page-orient

                                                              .NET 8: What's New for Authentication and Authorization
                                                            • A brief F# exploration - Sridhar Ratnakumar

                                                              A brief F# explorationI have been writing full-stack web apps in Haskell using functional reactive programming (Reflex-FRP) for 3 years now. Curiosity stuck me as to find out what the FP languages other than Haskell had to offer in this area. My critieria were:Must be a functional programming languageShould compile to JS or Wasm (cf. No JavaScript)Must run natively on backend without nodeJS (rules

                                                              • Amazon.Lambda.Annotations 1.5.0

                                                                Amazon.Lambda.Annotations Lambda Annotations is a programming model for writing .NET Lambda functions. At a high level the programming model allows idiomatic .NET coding patterns. C# Source Generators are used to bridge the gap between the Lambda programming model to the Lambda Annotations programming model without adding any performance penalty. Topics: Amazon.Lambda.Annotations How does Lambda A

                                                                  Amazon.Lambda.Annotations 1.5.0
                                                                • Expression Trees - C#

                                                                  Expression trees represent code in a tree-like data structure, where each node is an expression, for example, a method call or a binary operation such as x < y. If you used LINQ, you have experience with a rich library where the Func types are part of the API set. (If you aren't familiar with LINQ, you probably want to read the LINQ tutorial and the article about lambda expressions before this one

                                                                  • Blazor WebAssembly 3.2.0 Preview 1 release now available - .NET Blog

                                                                    Join us on September 18th as we dive deep into building world-class cloud native applications with .NET and Azure. Today we released a new preview update for Blazor WebAssembly with a bunch of great new features and improvements. Here’s what’s new in this release: Version updated to 3.2 Simplified startup Download size improvements Support for .NET SignalR client Get started To get started with Bl

                                                                      Blazor WebAssembly 3.2.0 Preview 1 release now available - .NET Blog
                                                                    • Announcing .NET MAUI in .NET 8 - .NET Blog

                                                                      The biggest .NET virtual event is back, join-in now for the launch of .NET 8! Today our team is thrilled to introduce you to the latest major stable release of .NET MAUI in .NET 8! We build .NET MAUI to enable .NET developers to create cross-platform applications for Android, iOS, macOS, and Windows with deep native integrations, platform-native user interfaces, and hybrid experiences that extend

                                                                        Announcing .NET MAUI in .NET 8 - .NET Blog
                                                                      • GitHub ActionsのセルフホストランナーをGCPに30分で立ててみる - Qiita

                                                                        はじめに github actionsののself host runnerを試したことがなかったので、今回はそれを試してみました. self host runnerとは github actionsのCI/CD機能は特に設定を弄らない限り、github側が用意しているインフラの上で稼働するようになります. self host runnerを利用することで、稼働するインフラ基盤を自前で用意することが出来るようになります. 公式ドキュメントはコチラ 今回の設計イメージ セルフホストランナーをgcpのGCEに設置します. もちろんOSはLinux 構築 1. リポジトリ、インフラの用意⛹️‍♂️ まずはリポジトリの用意. いつもどおりリポジトリを作成します. typoしたの許して... Setting > Actionsタブで、セルフホストランナーを有効にするボタンがあるので、コチラをクリック

                                                                          GitHub ActionsのセルフホストランナーをGCPに30分で立ててみる - Qiita
                                                                        • How to use the Tasks View in JetBrains Rider | The .NET Tools Blog

                                                                          The Task Parallel Library (TPL) is foundational to all .NET applications, as it allows frameworks to write and execute multithreaded and parallel code. Additionally, developers looking to get the most out of their resources may want to write custom code, taking advantage of the types found in System.Threading and System.Threading.Tasks. You must understand concurrency and threading fundamentals to

                                                                            How to use the Tasks View in JetBrains Rider | The .NET Tools Blog
                                                                          • HandBrakeが.NETをインストールしろというのでインストールする

                                                                            HandBrakeを1.4.1 (2021081500)にアップグレードしたら、 --------------------------- HandBrake.exe --------------------------- To run this application, you must install .NET. Would you like to download it now? --------------------------- はい(Y) いいえ(N) --------------------------- なんて表示が出るようになった。 はいと答えると Download .NET 5.0 Runtimeに飛ばされる。 バージョンが違っても --------------------------- HandBrake.exe ---------------------------

                                                                            • クラスとオブジェクトのチュートリアル - C#

                                                                              このブラウザーはサポートされなくなりました。 Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。 このチュートリアルでは、コンソール アプリケーションを構築し、C# 言語に含まれるオブジェクト指向の基本的な機能について確認します。 前提条件 Windows には Visual Studio をお勧めします。 Visual Studio のダウンロード センター ページから無料バージョンをダウンロードできます。 Visual Studio には .NET SDK が含まれます。 また、C# DevKit で Visual Studio Code エディターを使用することもできます。 最新の .NET SDK を別にインストールする必要があります。 別のエディターを使う場合は、最新の .NET SDK をイン

                                                                              • Staying safe with .NET containers - .NET Blog

                                                                                Join us on September 18th as we dive deep into building world-class cloud native applications with .NET and Azure. Container-based application deployment and execution has become very common. Nearly all cloud and server app developers we talk to use containers in some way. We mostly hear about public cloud use, but also IoT and have even heard of .NET containers pulled and used over satellite link

                                                                                  Staying safe with .NET containers - .NET Blog
                                                                                • Customizing Trimming in .NET 5 - .NET Blog

                                                                                  Join us on September 18th as we dive deep into building world-class cloud native applications with .NET and Azure. In the last blog post, we talked about how trimming in .NET 5 has been expanded to be able to trim types and members that are detected as not being used in the application, and that detection uses static analysis, it doesn’t run the code for the app, so it doesn’t know which branches

                                                                                    Customizing Trimming in .NET 5 - .NET Blog