Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/packages/nuget/with_metadata.nuspec')
-rw-r--r--spec/fixtures/packages/nuget/with_metadata.nuspec19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/fixtures/packages/nuget/with_metadata.nuspec b/spec/fixtures/packages/nuget/with_metadata.nuspec
new file mode 100644
index 00000000000..0043bc89527
--- /dev/null
+++ b/spec/fixtures/packages/nuget/with_metadata.nuspec
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
+ <metadata>
+ <id>DummyProject.WithMetadata</id>
+ <version>1.2.3</version>
+ <title>nuspec with metadata</title>
+ <authors>Author Test</authors>
+ <owners>Author Test</owners>
+ <developmentDependency>true</developmentDependency>
+ <requireLicenseAcceptance>true</requireLicenseAcceptance>
+ <licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
+ <projectUrl>https://gitlab.com/gitlab-org/gitlab</projectUrl>
+ <iconUrl>https://opensource.org/files/osi_keyhole_300X300_90ppi_0.png</iconUrl>
+ <description>Description Test</description>
+ <releaseNotes>Release Notes Test</releaseNotes>
+ <copyright>Copyright Test</copyright>
+ <tags>foo bar test tag1 tag2 tag3 tag4 tag5</tags>
+ </metadata>
+</package>