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
12 lines
255 B
XML
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>
|