Skip to content

Commit 6c44e4c

Browse files
committed
CP-44752: SDK(C#): add .Net 8.0 as target
Apparently this has fewer dependencies than netstandard2.0, and some projects would've picked net45 in favour of netstandard2.0. Eventually we may want to drop net45, for now just add the new target. There is also net9.0, but it has an EOL date ahead of net8.0 which is LTS. A quick sanity test that the net80 target includes tracing support: ``` make sdksanity strings -el ./_build/default/ocaml/sdk-gen/csharp/autogen-out/src/bin/Release/net80/XenServer.dll|grep traceparent traceparent ``` Signed-off-by: Edwin Török <[email protected]>
1 parent 81c933f commit 6c44e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/sdk-gen/csharp/autogen/src/XenServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Version>0.0.0</Version>
4-
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
4+
<TargetFrameworks>net80;netstandard2.0;net45</TargetFrameworks>
55
<OutputType>Library</OutputType>
66
<RootNamespace>XenAPI</RootNamespace>
77
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>

0 commit comments

Comments
 (0)