This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Package.nuspec
65 lines (61 loc) · 2.35 KB
/
Package.nuspec
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
<?xml version="1.0"?>
<package >
<metadata>
<id>VulkanSharp</id>
<version>0.1.10</version>
<authors>Xamarin Inc</authors>
<owners>rodo</owners>
<licenseUrl>https://github.com/mono/VulkanSharp/blob/main/LICENSE</licenseUrl>
<projectUrl>https://github.com/mono/VulkanSharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Open source .NET binding for the Vulkan API</description>
<releaseNotes>
This is the preview release of the VulkanSharp project.
New in this release:
* updated to Vulkan specs 1.0.69
* added .NETStandard target
</releaseNotes>
<copyright>Copyright 2016, 2017 Xamarin Inc</copyright>
<tags>Vulkan C# Bindings 3D VulkanSharp Graphics OpenSource MultiPlatform Android Windows</tags>
<references>
<group targetFramework=".NETStandard1.1">
<reference file="Vulkan.dll" />
</group>
<group targetFramework="portable-net45+win8+MonoAndroid10">
<reference file="Vulkan.dll" />
</group>
<group targetFramework="MonoAndroid10">
<reference file="Vulkan.dll" />
<reference file="Vulkan.Android.dll" />
</group>
<group targetFramework="win8">
<reference file="Vulkan.dll" />
<reference file="Vulkan.Windows.dll" />
</group>
<group targetFramework="net452">
<reference file="Vulkan.dll" />
<reference file="Vulkan.Windows.dll" />
</group>
</references>
<dependencies>
<group targetFramework=".NETStandard1.1">
<dependency id="NETStandard.Library" version="1.6.1" />
</group>
</dependencies>
<!--
<dependencies>
<dependency id="SampleDependency" version="1.0" />
</dependencies>
-->
</metadata>
<files>
<file src="bin/Debug/Vulkan.dll*" target="lib/portable-net45+win8+MonoAndroid10" />
<file src="bin/Debug/Vulkan.dll*" target="lib/MonoAndroid10" />
<file src="src/Platforms/Android/bin/Debug/Vulkan.Android.dll*" target="lib/MonoAndroid10" />
<file src="bin/Debug/Vulkan.dll*" target="lib/win8" />
<file src="src/Platforms/Windows/bin/Debug/Vulkan.Windows.dll*" target="lib/win8" />
<file src="bin/Debug/Vulkan.dll*" target="lib/net452" />
<file src="src/Platforms/Windows/bin/Debug/Vulkan.Windows.dll*" target="lib/net452" />
<file src="netstandard/bin/Debug/netstandard1.1/Vulkan.dll*" target="lib/netstandard1.1/" />
</files>
</package>