DotNetCorePlugins/test/TestProjects/TransitivePlugin/TransitivePlugin.csproj
Nate McMaster c513f0ba6c
fix: ensure transitive dependencies of shared types unify
Recursively load and find all dependencies of default assemblies. This sacrifices some performance for determinism in how transitive dependencies will be shared between host and plugin.

Fixes #41
2019-09-04 23:21:47 -07:00

12 lines
255 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SharedAbstraction.v1\SharedAbstraction.v1.csproj" />
</ItemGroup>
</Project>