7 lines
360 B
C#
7 lines
360 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
// Lets the runtime test assembly's PipelineClient read a server's internal Token to authenticate.
|
|
[assembly: InternalsVisibleTo("Unity.Pipeline.Tests.Runtime")]
|
|
// Lets the EditMode test assembly unit-test internal runtime utilities (e.g. MaxLengthStream).
|
|
[assembly: InternalsVisibleTo("Unity.Pipeline.Tests.Editor")]
|