-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSDWebImage-dotnet.csproj
More file actions
41 lines (38 loc) · 1.65 KB
/
SDWebImage-dotnet.csproj
File metadata and controls
41 lines (38 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-ios</TargetFramework>
<RootNamespace>SDWebImage</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<IsBindingProject>true</IsBindingProject>
<!-- Nuget package -->
<PackageId>com.jonathanantoine.SDWebImage</PackageId>
<Version>5.21.0.6</Version>
<Authors>Jonathan Antoine</Authors>
<Title>SDWebImage for dotnet</Title>
<PackageProjectUrl>https://github.com/jonathanantoine/SDWebImage-dotnet</PackageProjectUrl>
<Description>SDWebImage binding for Net 9.0 iOS</Description>
<PackageReleaseNotes>SDWebImage binding for Net 9.0 iOS</PackageReleaseNotes>
<PackageTags>maui ios SDWebImage dotnet</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishTrimmed>false</PublishTrimmed>
<IsTrimmable>false</IsTrimmable>
</PropertyGroup>
<ItemGroup>
<ObjcBindingApiDefinition Include="ApiDefinition.cs"/>
<ObjcBindingCoreSource Include="StructsAndEnums.cs"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<NativeReference Include="SDWebImage.xcframework">
<Kind>Framework</Kind>
<Frameworks>Foundation ImageIO CoreGraphics QuartzCore</Frameworks>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
<LinkerFlags>-ObjC -fobjc-arc</LinkerFlags>
</NativeReference>
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\build-nuget.yml"/>
</ItemGroup>
</Project>