You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements.mdx
+24-14
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,11 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
50
50
title=".NET Core version"
51
51
>
52
52
53
-
The .NET agent supports .NET Core version 3.1, and .NET 5.0, 6.0, and 8.0.
53
+
The .NET agent is compatible with .NET Core version 3.1, and .NET 5.0, 6.0, 7.0, 8.0, and 9.0.
54
+
55
+
<Calloutvariant="important">
56
+
The agent is only fully supported when instrumenting applications that target [.NET runtimes currently supported by Microsoft](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core). The agent is likely to work with the EOL'ed runtimes listed below, but we do not test new versions of the agent with EOL'ed runtimes.
57
+
</Callout>
54
58
55
59
<tablestyle={{ width: "500px" }}>
56
60
<thead>
@@ -68,7 +72,7 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
68
72
<tbody>
69
73
<tr>
70
74
<td>
71
-
.NET Core 3.1
75
+
.NET Core 3.1 (EOL)
72
76
</td>
73
77
74
78
<td>
@@ -78,7 +82,7 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
78
82
79
83
<tr>
80
84
<td>
81
-
.NET 5.0
85
+
.NET 5.0 (EOL)
82
86
</td>
83
87
<td>
84
88
8.35.0 and higher
@@ -87,7 +91,7 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
87
91
88
92
<tr>
89
93
<td>
90
-
.NET 6.0
94
+
.NET 6.0 (EOL)
91
95
</td>
92
96
<td>
93
97
9.2.0 and higher
@@ -96,7 +100,7 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
96
100
97
101
<tr>
98
102
<td>
99
-
.NET 7.0
103
+
.NET 7.0 (EOL)
100
104
</td>
101
105
<td>
102
106
10.0.0 and higher
@@ -111,6 +115,14 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
111
115
10.0.0 and higher
112
116
</td>
113
117
</tr>
118
+
<tr>
119
+
<td>
120
+
.NET 9.0
121
+
</td>
122
+
<td>
123
+
10.0.0 and higher
124
+
</td>
125
+
</tr>
114
126
</tbody>
115
127
</table>
116
128
@@ -292,9 +304,9 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
292
304
id="target-framework-core"
293
305
title="Target framework version"
294
306
>
295
-
The .NET agent only supports applications targeting .NET Core 3.1, and .NET 5.0, 6.0, and 8.0. You can find the target framework in your `.csproj` file. Agent compatibility varies across different versions of .NET Core.
307
+
The .NET agent is compatible with applications targeting .NET Core 3.1, and .NET 5.0, 6.0, 7.0, 8.0, and 9.0. You can find the target framework in your `.csproj` file. Agent compatibility varies across different versions of .NET Core.
296
308
297
-
Supported:
309
+
Compatible:
298
310
299
311
```xml
300
312
<TargetFramework>netcoreapp3.1</TargetFramework>
@@ -316,16 +328,14 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
316
328
<TargetFramework>net8.0</TargetFramework>
317
329
```
318
330
331
+
```xml
332
+
<TargetFramework>net9.0</TargetFramework>
333
+
```
334
+
319
335
<Calloutvariant="important">
320
336
On Linux ARM64 platforms, the .NET agent <DNT>**only**</DNT> supports target frameworks of `net5.0` or higher.
321
337
</Callout>
322
338
323
-
Unsupported:
324
-
325
-
```xml
326
-
<TargetFramework>net452</TargetFramework>
327
-
```
328
-
329
339
If you want to monitor an ASP.NET Core application targeting .NET Framework, ensure that you have enabled the .NET Framework support after installing the .NET agent.
330
340
</Collapser>
331
341
@@ -343,7 +353,7 @@ Want to try out our .NET agent? [Create a New Relic account](https://newrelic.co
343
353
>
344
354
The .NET agent automatically instruments these application frameworks:
345
355
346
-
* ASP.NET Core MVC 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, and 8.0 (includes Web API)
356
+
* ASP.NET Core MVC 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, and 9.0 (includes Web API)
347
357
* ASP.NET Core Razor Pages 6.0, 7.0, and 8.0 (starting with .NET agent version 10.19.0)
0 commit comments