19 lines
808 B
XML
19 lines
808 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- Private=false + ExcludeAssets=runtime is CRITICAL: prevents the fixture
|
|
from copying AcDream.Plugin.Abstractions.dll next to itself, which
|
|
would cause type-identity mismatch when the ALC loads the fixture
|
|
and the host already has the abstractions loaded. -->
|
|
<ProjectReference Include="..\..\src\AcDream.Plugin.Abstractions\AcDream.Plugin.Abstractions.csproj">
|
|
<Private>false</Private>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project>
|