Remove MatterControl coupling to PartSheet plugin

- Issue MatterHackers/MCCentral#5365
MatterControl has compile time dependency to PartSheet assembly
This commit is contained in:
jlewin 2019-04-19 13:57:25 -07:00
parent a592abc3f2
commit 12c7f40a1e
2 changed files with 10 additions and 5 deletions

View file

@ -74,10 +74,6 @@
<Project>{f1653f20-d47d-4f29-8c55-3c835542af5f}</Project>
<Name>Community.CsharpSqlite</Name>
</ProjectReference>
<ProjectReference Include="MatterControl.PartSheet\MatterControl.PartSheet.csproj">
<Project>{1d60b0fc-69d8-4f7a-a633-cb9dbce75412}</Project>
<Name>MatterControl.PartSheet</Name>
</ProjectReference>
<ProjectReference Include="MatterControl.Printing\MatterControl.Printing.csproj">
<Project>{97d5ade3-c1b4-4b46-8a3e-718a4f7f079f}</Project>
<Name>MatterControl.Printing</Name>

View file

@ -3,7 +3,16 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Company>MatterHackers Inc.</Company>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>