Ryujinx-GtkSharp/Source/Libs/GtkSharp/GtkSharp.csproj

54 lines
1.9 KiB
XML
Raw Normal View History

2017-10-23 01:25:13 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFramework>netstandard2.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PackageIconUrl>https://raw.githubusercontent.com/GtkSharp/GtkSharp/develop/Source/Libs/GtkSharp/Icon.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/GtkSharp/GtkSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/GtkSharp/GtkSharp</RepositoryUrl>
2017-10-29 15:28:44 +01:00
<Description>GtkSharp is a C# wrapper for the Gtk library.</Description>
<PackageTags>gtk;gtksharp;gtk-sharp;wrapper</PackageTags>
2017-10-23 01:25:13 +02:00
</PropertyGroup>
2019-11-07 21:32:32 +01:00
2017-10-23 01:25:13 +02:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>..\..\..\BuildOutput\Debug</OutputPath>
</PropertyGroup>
2019-11-07 21:32:32 +01:00
2017-10-23 01:25:13 +02:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>..\..\..\BuildOutput\Release</OutputPath>
</PropertyGroup>
2019-11-07 21:32:32 +01:00
2017-10-23 01:25:13 +02:00
<ItemGroup>
<ProjectReference Include="..\GLibSharp\GLibSharp.csproj">
<Name>GLibSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
<ProjectReference Include="..\GioSharp\GioSharp.csproj">
<Name>GioSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
<ProjectReference Include="..\AtkSharp\AtkSharp.csproj">
<Name>AtkSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
<ProjectReference Include="..\GdkSharp\GdkSharp.csproj">
<Name>GdkSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
2017-12-31 19:51:59 +01:00
<ProjectReference Include="..\CairoSharp\CairoSharp.csproj">
<Name>CairoSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
<ProjectReference Include="..\PangoSharp\PangoSharp.csproj">
<Name>PangoSharp</Name>
2017-10-23 01:25:13 +02:00
</ProjectReference>
</ItemGroup>
2019-11-07 21:32:32 +01:00
<ItemGroup>
<Compile Include="..\Shared\*.cs">
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
</Compile>
</ItemGroup>
2019-11-07 21:32:32 +01:00
2019-11-04 23:14:33 +01:00
<ItemGroup>
2019-11-07 21:32:32 +01:00
<Content Include="GtkSharp.targets" PackagePath="build\GtkSharp.targets" />
2019-11-04 23:14:33 +01:00
</ItemGroup>
2019-11-07 21:32:32 +01:00
2017-10-30 20:12:08 +01:00
</Project>