-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUltralightNet.Bundle.csproj
More file actions
109 lines (94 loc) · 7.49 KB
/
Copy pathUltralightNet.Bundle.csproj
File metadata and controls
109 lines (94 loc) · 7.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>UltralightNet</RootNamespace>
<AssemblyName>UltralightNet.Bundle</AssemblyName>
<!-- Compile only curated source items below. -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591;CS8500;CS8981;SYSLIB1054</NoWarn>
</PropertyGroup>
<!-- NuGet package metadata -->
<PropertyGroup>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>UltralightNet.Bundle</PackageId>
<Version>2.2.0</Version>
<Description>Ultralight .NET bindings (UltralightNet + AppCore + native binaries) bundled in a single package.</Description>
<Authors>EggyStudio</Authors>
<Company>UltralightNet.Bundle</Company>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/EggyStudio/UltralightNet.Bundle</RepositoryUrl>
<PackageProjectUrl>https://github.com/EggyStudio/UltralightNet.Bundle</PackageProjectUrl>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageTags>ultralight;webview;browser;html;native;appcore</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Branding / docs -->
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="/"/>
<None Include=".github/assets/*" Pack="true" PackagePath="/" Visible="true"/>
</ItemGroup>
<!-- Surface GitHub Actions workflows in the IDE solution view.
Not packed, not copied to output. -->
<ItemGroup>
<None Include=".github/workflows/*.yml" Pack="false" Visible="true"/>
<None Include=".github/workflows/*.yaml" Pack="false" Visible="true"/>
</ItemGroup>
<!-- Ship the native-relocation MSBuild logic to consumers.
build/<id>.targets -> imported by direct PackageReferences
buildTransitive/<id>.targets -> imported by transitive PackageReferences
(it just re-imports the canonical file
under build/, single source of truth). -->
<ItemGroup>
<None Include="build/UltralightNet.Bundle.targets"
Pack="true"
PackagePath="build/UltralightNet.Bundle.targets"/>
<None Include="buildTransitive/UltralightNet.Bundle.targets"
Pack="true"
PackagePath="buildTransitive/UltralightNet.Bundle.targets"/>
</ItemGroup>
<!-- Import the same logic locally so this project (and its bin/ output)
behaves exactly like a downstream consumer. -->
<Import Project="build/UltralightNet.Bundle.targets"/>
<!-- All managed sources from the previous sub-projects -->
<ItemGroup>
<Compile Include="src/UltralightNet/**/*.cs" Exclude="src/UltralightNet/bin/**;src/UltralightNet/obj/**"/>
<Compile Include="src/UltralightNet.AppCore/**/*.cs" Exclude="src/UltralightNet.AppCore/bin/**;src/UltralightNet.AppCore/obj/**"/>
</ItemGroup>
<!-- Embedded resources from the original UltralightNet project -->
<ItemGroup>
<EmbeddedResource Include="src/UltralightNet/runtimes/cacert.pem">
<LogicalName>UltralightNet.runtimes.cacert.pem</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="src/UltralightNet/runtimes/icudt67l.dat">
<LogicalName>UltralightNet.runtimes.icudt67l.dat</LogicalName>
</EmbeddedResource>
</ItemGroup>
<!-- Native binaries: copy to consumer output and pack into runtimes/<rid>/native -->
<ItemGroup>
<None Include="runtimes/win-x64/native/Ultralight.dll" Pack="true" PackagePath="runtimes/win-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/win-x64/native/UltralightCore.dll" Pack="true" PackagePath="runtimes/win-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/win-x64/native/WebCore.dll" Pack="true" PackagePath="runtimes/win-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/win-x64/native/AppCore.dll" Pack="true" PackagePath="runtimes/win-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/linux-x64/native/libUltralight.so" Pack="true" PackagePath="runtimes/linux-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/linux-x64/native/libUltralightCore.so" Pack="true" PackagePath="runtimes/linux-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/linux-x64/native/libWebCore.so" Pack="true" PackagePath="runtimes/linux-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/linux-x64/native/libAppCore.so" Pack="true" PackagePath="runtimes/linux-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-x64/native/libUltralight.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-x64/native/libUltralightCore.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-x64/native/libWebCore.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-x64/native/libAppCore.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-arm64/native/libUltralight.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-arm64/native/libUltralightCore.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-arm64/native/libWebCore.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
<None Include="runtimes/osx-arm64/native/libAppCore.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native/" CopyToOutputDirectory="PreserveNewest" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
</ItemGroup>
</Project>