Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/JasperFx.Events/JasperFx.Events.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<Description>Foundational Event Store Abstractions and Projections for the Critter Stack</Description>
<PackageId>JasperFx.Events</PackageId>
<Version>2.0.0-alpha.3</Version>
<!-- AOT pillar (jasperfx#213). Enables IL2026/IL2075/IL3050 analyzers so any
reflective surface that isn't already annotated surfaces during our own
build. JasperFx.csproj carries the same flag — together they're the
punch-list source for the AOT pillar. -->
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions src/JasperFx/JasperFx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<AssemblyName>JasperFx</AssemblyName>
<PackageId>JasperFx</PackageId>
<Version>2.0.0-alpha.10</Version>
<!-- AOT pillar (jasperfx#213). Enables IL2026/IL2075/IL3050 analyzers so any
reflective public surface that isn't already annotated with
[RequiresDynamicCode] / [RequiresUnreferencedCode] / [DynamicallyAccessedMembers]
surfaces during our own build rather than downstream consumers'. -->
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
Expand Down
Loading