From d37d660c2c691c0f2198004469696463112f20f0 Mon Sep 17 00:00:00 2001 From: David Pine Date: Mon, 22 May 2023 14:41:30 -0500 Subject: [PATCH] Code gen article, scoped to 3.x --- docs/orleans/grains/code-generation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/orleans/grains/code-generation.md b/docs/orleans/grains/code-generation.md index 56bc747f22906..ee6ed755ad82f 100644 --- a/docs/orleans/grains/code-generation.md +++ b/docs/orleans/grains/code-generation.md @@ -6,11 +6,11 @@ ms.date: 03/16/2022 # Orleans code generation -The Orleans runtime makes use of generated code to ensure proper serialization of types that are used across the cluster as well as for generating boilerplate, which abstracts away the implementation details of method shipping, exception propagation, and other internal runtime concepts. +This article applies to: ✔️ Orleans 3.x and earlier versions ## Enable code generation -Code generation can be performed either when your projects are being built or when your application initializes. +The Orleans runtime makes use of generated code to ensure proper serialization of types that are used across the cluster as well as for generating boilerplate, which abstracts away the implementation details of method shipping, exception propagation, and other internal runtime concepts. Code generation can be performed either when your projects are being built or when your application initializes. ### What happens during build?