mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 16:15:40 +00:00
28 lines
1.3 KiB
XML
Executable file
28 lines
1.3 KiB
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<PackageProjectUrl>https://github.com/cra0zy/GtkSharp</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/cra0zy/GtkSharp</RepositoryUrl>
|
|
<Description>AtkSharp is a C# wrapper for the Atk library.</Description>
|
|
<PackageTags>atk;atksharp;atk-sharp;wrapper</PackageTags>
|
|
</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>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="linux-x86\libatk-1.0-0.dll.so" PackagePath="runtimes\linux-x86\native" Visible="false" />
|
|
<Content Include="linux-x64\libatk-1.0-0.dll.so" PackagePath="runtimes\linux-x64\native" Visible="false" />
|
|
<Content Include="linux-arm\libatk-1.0-0.dll.so" PackagePath="runtimes\linux-arm\native" Visible="false" />
|
|
</ItemGroup>
|
|
</Project>
|