Create nuget package
This commit is contained in:
Родитель
f43187e980
Коммит
f41f291491
|
@ -6,3 +6,5 @@ dist/
|
|||
node_modules/
|
||||
/package-lock.json
|
||||
/.vs
|
||||
bin
|
||||
obj
|
||||
|
|
|
@ -21,6 +21,7 @@ phases:
|
|||
npm -g install typescript
|
||||
npm install
|
||||
make
|
||||
mono src/nuget/nuget.exe pack src/nuget/uno.sqlite-wasm.nuspec -Version "1.0.0-dev.$(Build.BuildId)" -OutputDirectory "$(build.artifactstagingdirectory)"
|
||||
displayName: 'Run make'
|
||||
|
||||
- task: CopyFiles@2
|
||||
|
|
Двоичный файл не отображается.
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata minClientVersion="3.3.0">
|
||||
<id>Uno.sqlite-wasm</id>
|
||||
<version>1.0.3</version>
|
||||
<title>Uno SQLite for WebAssembly</title>
|
||||
<authors>nventive</authors>
|
||||
<owners>nventive</owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<projectUrl>https://github.com/nventive/uno.sqlite-wasm</projectUrl>
|
||||
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
|
||||
<description>A compilation of the SQLite database engine for WebAssembly</description>
|
||||
<copyright>Copyright (C) 2015-2018 nventive inc. - all rights reserved</copyright>
|
||||
<repository type="git" url="https://github.com/nventive/Uno.sqlite-wasm.git" />
|
||||
|
||||
<contentFiles>
|
||||
<!-- Include Assets as Embedded Resource and Content so that the Uno.Wasm.Bootstrap picks those up -->
|
||||
<files include="any/any/**/*.js" buildAction="EmbeddedResource" />
|
||||
<files include="any/any/**/*.wasm" buildAction="Content" />
|
||||
</contentFiles>
|
||||
</metadata>
|
||||
<files>
|
||||
|
||||
<file src="../../dist/sqlite3.wasm" target="contentFiles/any/any" />
|
||||
<file src="../../dist/sqlite3.js" target="contentFiles/any/any/WasmScripts" />
|
||||
|
||||
</files>
|
||||
</package>
|
Загрузка…
Ссылка в новой задаче