2017-10-22 23:25:13 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2017-10-30 19:41:26 +00:00
|
|
|
<PackageProjectUrl>https://github.com/GtkSharp/GtkSharp</PackageProjectUrl>
|
|
|
|
<RepositoryUrl>https://github.com/GtkSharp/GtkSharp</RepositoryUrl>
|
2017-10-29 14:28:44 +00:00
|
|
|
<Description>GdkSharp is a C# wrapper for the Gdk library.</Description>
|
|
|
|
<PackageTags>gdk;gdksharp;gdk-sharp;wrapper</PackageTags>
|
2017-10-22 23:25:13 +00:00
|
|
|
</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>
|
|
|
|
<ProjectReference Include="..\GioSharp\GioSharp.csproj">
|
|
|
|
<Name>GioSharp</Name>
|
|
|
|
</ProjectReference>
|
2017-12-31 18:51:59 +00:00
|
|
|
<ProjectReference Include="..\CairoSharp\CairoSharp.csproj">
|
2017-10-28 22:52:28 +00:00
|
|
|
<Name>CairoSharp</Name>
|
2017-10-22 23:25:13 +00:00
|
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="..\PangoSharp\PangoSharp.csproj">
|
|
|
|
<Name>PangoSharp</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
2017-10-25 23:42:57 +00:00
|
|
|
<ItemGroup>
|
2017-11-09 21:22:51 +00:00
|
|
|
<Content Include="linux-x86\*" PackagePath="runtimes\linux-x86\native" Visible="false" />
|
|
|
|
<Content Include="linux-x64\*" PackagePath="runtimes\linux-x64\native" Visible="false" />
|
|
|
|
<Content Include="linux-arm\*" PackagePath="runtimes\linux-arm\native" Visible="false" />
|
2017-11-11 18:11:44 +00:00
|
|
|
<Content Include="*.dll.config" PackagePath="lib\netstandard2.0">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2017-10-25 23:42:57 +00:00
|
|
|
</ItemGroup>
|
2017-10-22 23:25:13 +00:00
|
|
|
</Project>
|