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>GioSharp is a C# wrapper for the Gio library.</Description>
|
|
|
|
<PackageTags>gio;giosharp;gio-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">
|
2019-08-10 15:02:18 +00:00
|
|
|
<Name>GLibSharp</Name>
|
2017-10-22 23:25:13 +00:00
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
2017-10-25 23:42:57 +00:00
|
|
|
<ItemGroup>
|
2018-01-18 16:50:12 +00:00
|
|
|
<Compile Include="..\Shared\*.cs">
|
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
</Compile>
|
2017-10-25 23:42:57 +00:00
|
|
|
</ItemGroup>
|
2017-10-22 23:25:13 +00:00
|
|
|
</Project>
|