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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using ZeroAlloc.Authorization;
using ZeroAlloc.Authorization.Generated;
using ZeroAlloc.Mediator;
using ZeroAlloc.Mediator.AotSmoke.Internal;
using ZeroAlloc.TestHelpers;
using ZeroAlloc.Mediator.Authorization;
using ZeroAlloc.Results;

Expand Down
73 changes: 0 additions & 73 deletions samples/ZeroAlloc.Mediator.AotSmoke/Internal/AllocationGate.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@
AuthorizerFor<TRequest> dispatchers for the AOT scenario's [Policy]/[RequirePolicy]
types. -->
<PackageReference Include="ZeroAlloc.Authorization" Version="2.*" />
<PackageReference Include="ZeroAlloc.TestHelpers" Version="1.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>contentfiles;build</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Microsoft.Extensions.DependencyInjection;
using ZeroAlloc.Authorization;
using ZeroAlloc.Authorization.Generated;
using ZeroAlloc.Mediator.AotSmoke.Internal;
using ZeroAlloc.TestHelpers;
using ZeroAlloc.Mediator.Authorization;
using ZeroAlloc.Results;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@
[Policy]/[RequirePolicy]-decorated type in this compilation. A direct (non-transitive)
package reference is required so the bundled analyzer DLL flows into this project. -->
<PackageReference Include="ZeroAlloc.Authorization" Version="2.*" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\samples\ZeroAlloc.Mediator.AotSmoke\Internal\AllocationGate.cs" Link="Internal\AllocationGate.cs" />
<PackageReference Include="ZeroAlloc.TestHelpers" Version="1.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>contentfiles;build</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
Loading