2017-10-22 23:25:13 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<OutputPath>..\..\..\BuildOutput\Debug</OutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<OutputPath>..\..\..\BuildOutput\Release</OutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\GLibSharp\GLibSharp.csproj">
|
|
|
|
<Name>GLibSharp</Name>
|
|
|
|
</ProjectReference>
|
2017-10-26 16:30:48 +00:00
|
|
|
<ProjectReference Include="..\CairSharp\CairSharp.csproj">
|
|
|
|
<Name>CairSharp</Name>
|
2017-10-22 23:25:13 +00:00
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
2017-10-25 23:42:57 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="linux-x64\libpango-1.0-0.so" PackagePath="runtimes\linux-x64\native" Visible="false" />
|
2017-10-26 16:30:48 +00:00
|
|
|
<Content Include="linux-x86\libpango-1.0-0.so" PackagePath="runtimes\linux-x86\native" Visible="false" />
|
2017-10-25 23:42:57 +00:00
|
|
|
</ItemGroup>
|
2017-10-22 23:25:13 +00:00
|
|
|
</Project>
|