2020-07-02 05:09:23 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<PackageProjectUrl>https://github.com/GtkSharp/GtkSharp</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/GtkSharp/GtkSharp</RepositoryUrl>
|
|
|
|
|
<Description>SourceView is a C# wrapper for the GtkSourceView library.</Description>
|
|
|
|
|
<PackageTags>sourceview;sourceviewsharp;sourceview-sharp;wrapper</PackageTags>
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
2020-07-06 23:43:47 +00:00
|
|
|
|
|
2020-07-02 05:09:23 +00:00
|
|
|
|
<ItemGroup>
|
2020-07-07 00:17:47 +00:00
|
|
|
|
<ProjectReference Include="..\GtkSharp\GtkSharp.csproj" />
|
2020-07-02 05:09:23 +00:00
|
|
|
|
</ItemGroup>
|
2020-07-06 23:43:47 +00:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\Shared\*.cs">
|
|
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2020-07-07 00:17:47 +00:00
|
|
|
|
|
2020-07-02 05:09:23 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="SourceView-api.xml" />
|
|
|
|
|
<None Remove="SourceView.metadata" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|