-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathAxodox.MachineLearning.nuspec
58 lines (45 loc) · 2.92 KB
/
Axodox.MachineLearning.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>Axodox.MachineLearning</id>
<!-- The package version number that is used when resolving dependencies -->
<version>1.0.0.0</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>Peter Major</authors>
<!-- Owners are typically nuget.org identities that allow gallery
users to earily find other packages by the same owners. -->
<owners>axodox</owners>
<!-- License and project URLs provide links for the gallery -->
<license type="expression">MIT</license>
<repository type="git" url="https://github.com/axodox/axodox-machinelearning" branch="main"/>
<!-- The icon is used in Visual Studio's package manager UI -->
<!--<icon>icon.png</icon>-->
<!-- If true, this value prompts the user to accept the license when
installing the package. -->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Any details about this particular release -->
<releaseNotes>Initial release.</releaseNotes>
<!-- The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal. -->
<description>Axodox.MachineLearning is an open source C++ implementation of Stable Diffusion based on the ONNX library.</description>
<!-- Copyright information -->
<copyright>Copyright ©2023 Peter Major</copyright>
<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>axodox native</tags>
</metadata>
<!-- A readme.txt will be displayed when the package is installed -->
<files>
<file src="Axodox.MachineLearning.targets" target="build/native/Axodox.MachineLearning.targets" />
<file src="Axodox.MachineLearning.Shared\**\*.h" target="include" />
<file src="Axodox.MachineLearning.Shared\Assets\*.*" target="assets" />
<file src="Axodox.MachineLearning.Desktop\bin\**\Axodox.MachineLearning.lib" target="lib\desktop" />
<file src="Axodox.MachineLearning.Desktop\bin\**\Axodox.MachineLearning.exp" target="lib\desktop" />
<file src="Axodox.MachineLearning.Universal\bin\**\Axodox.MachineLearning.lib" target="lib\universal" />
<file src="Axodox.MachineLearning.Universal\bin\**\Axodox.MachineLearning.exp" target="lib\universal" />
<file src="Axodox.MachineLearning.Desktop\bin\**\Axodox.MachineLearning.dll" target="bin\desktop" />
<file src="Axodox.MachineLearning.Desktop\bin\**\Axodox.MachineLearning.pdb" target="bin\desktop" />
<file src="Axodox.MachineLearning.Universal\bin\**\Axodox.MachineLearning.dll" target="bin\universal" />
<file src="Axodox.MachineLearning.Universal\bin\**\Axodox.MachineLearning.pdb" target="bin\universal" />
</files>
</package>