Skip to content

Commit c5873ab

Browse files
committed
Update NativeAOT doc: drop ALC note, bump sample to net10
1 parent 8fa8a6e commit c5873ab

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docs/guides-basic/dotnet-native-aot-support.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ When using early preview package sets (from NuGet.org or another trusted feed),
1313
- Align all `ExcelDna.*` package versions across `ExcelDna.AddIn`, `ExcelDna.Integration`, and `ExcelDna.AddIn.NativeAOT` so they come from the same preview train.
1414
- The generated build output for NativeAOT variants is typically under a RID-specific path (for example `bin\\<Config>\\<TFM>\\win-x64\\...`) rather than the managed default output path.
1515
- In preview or custom source setups, `ExcelDnaToolsPath` may need to be set explicitly to ensure the correct `ExcelDna.xll` tooling is used.
16-
- For automated test setups that reflect-load both managed and NativeAOT assemblies in-process, test harnesses should isolate the loads (for example with `AssemblyLoadContext`) because both outputs are often named the same.
1716

1817
Publishing the following **MyAddin.csproj** C# project produces native 64-bit **MyAddin-AddIn64.xll** Excel add-in:
1918

2019
```xml
2120
<Project Sdk="Microsoft.NET.Sdk">
2221

2322
<PropertyGroup>
24-
<TargetFramework>net8.0-windows</TargetFramework>
23+
<TargetFramework>net10.0-windows</TargetFramework>
2524
<ImplicitUsings>enable</ImplicitUsings>
2625
<Nullable>enable</Nullable>
2726

0 commit comments

Comments
 (0)