You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
845 B
C#
22 lines
845 B
C#
|
1 year ago
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Reflection;
|
||
|
|
using EntityFrameworkCore.Jet.Infrastructure.Internal;
|
||
|
|
using Microsoft.CodeAnalysis;
|
||
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
||
|
|
|
||
|
|
namespace EntityFrameworkCore.Jet.FunctionalTests.TestUtilities;
|
||
|
|
|
||
|
|
public class JetPrecompiledQueryTestHelpers : PrecompiledQueryTestHelpers
|
||
|
|
{
|
||
|
|
public static JetPrecompiledQueryTestHelpers Instance = new();
|
||
|
|
|
||
|
|
protected override IEnumerable<MetadataReference> BuildProviderMetadataReferences()
|
||
|
|
{
|
||
|
|
yield return MetadataReference.CreateFromFile(typeof(JetOptionsExtension).Assembly.Location);
|
||
|
|
yield return MetadataReference.CreateFromFile(Assembly.GetExecutingAssembly().Location);
|
||
|
|
}
|
||
|
|
}
|