summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2019-12-12 17:46:18 +0000
committermo khan <mo.khan@gmail.com>2019-12-12 17:46:18 +0000
commitfcd3ec047d42a3c5cd44c5c4ce1dd525fe0f52fc (patch)
treecbc0093ed1113b8347d73618660d94b150477d61
parent1decc44a7ae62d9bc713c7b9696638a5be1df563 (diff)
parentf3336b082bf2c8de049f78449efb7fec24e0c9ba (diff)
Merge branch '37109-license-finder-5-11-1' into 'master'v2.2.0
Upgrade license finder to 5.11.1 See merge request gitlab-org/security-products/license-management!90
-rw-r--r--CHANGELOG.md4
-rw-r--r--Dockerfile4
-rw-r--r--Gemfile.lock8
-rwxr-xr-xbin/docker-shell2
-rwxr-xr-xbin/test-all2
-rw-r--r--lib/license/management/version.rb2
-rw-r--r--license-management.gemspec2
-rwxr-xr-xrun.sh5
-rw-r--r--test/results/csharp-nuget-dotnetcore-v1.1.json174
-rw-r--r--test/results/csharp-nuget-dotnetcore-v1.json174
-rw-r--r--test/results/csharp-nuget-dotnetcore-v2.json174
11 files changed, 280 insertions, 271 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 664d0ab..8c9d522 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# GitLab License management changelog
+## v2.2.0
+
+- Update LicenseFinder to 5.11.1 [Diff](https://github.com/pivotal/LicenseFinder/compare/v5.9.2...v5.11.1)
+
## v2.1.1
- Sort license identifiers associated with each dependency
diff --git a/Dockerfile b/Dockerfile
index 05fce69..f313e9d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-ARG LICENSE_FINDER_VERSION=5.9.2
+ARG LICENSE_FINDER_VERSION=5.11.1
FROM licensefinder/license_finder:$LICENSE_FINDER_VERSION
MAINTAINER GitLab
@@ -48,4 +48,4 @@ COPY test /test
COPY run.sh /
COPY . /opt/license-management/
RUN bash -lc "cd /opt/license-management && gem build *.gemspec && gem install *.gem"
-ENTRYPOINT ["/run.sh"] \ No newline at end of file
+ENTRYPOINT ["/run.sh"]
diff --git a/Gemfile.lock b/Gemfile.lock
index bb6624d..6706fe8 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,16 +1,16 @@
PATH
remote: .
specs:
- license-management (2.1.1)
- license_finder (= 5.6.2)
+ license-management (2.2.0)
+ license_finder (= 5.11.1)
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.3)
- license_finder (5.6.2)
+ license_finder (5.11.1)
bundler
- rubyzip
+ rubyzip (>= 1, < 3)
thor
toml (= 0.2.0)
with_env (= 1.1.0)
diff --git a/bin/docker-shell b/bin/docker-shell
index b50e796..be0db98 100755
--- a/bin/docker-shell
+++ b/bin/docker-shell
@@ -6,4 +6,4 @@ cd "$(dirname "$0")/.."
IMAGE_NAME=${IMAGE_NAME:-$(basename "$PWD"):latest}
-docker run --rm -it --entrypoint='' $1 "$IMAGE_NAME" /bin/bash
+docker run --rm -it --entrypoint='' $1 "$IMAGE_NAME" /bin/bash -l
diff --git a/bin/test-all b/bin/test-all
index 138c07c..44b4edc 100755
--- a/bin/test-all
+++ b/bin/test-all
@@ -11,7 +11,7 @@ export IMAGE_NAME
./bin/docker-build
-REPORT_VERSIONS=(1 1.1 2)
+REPORT_VERSIONS=(2 1.1 1)
for version in "${REPORT_VERSIONS[@]}"
do
export LM_REPORT_VERSION=$version
diff --git a/lib/license/management/version.rb b/lib/license/management/version.rb
index a787ab5..71e79a7 100644
--- a/lib/license/management/version.rb
+++ b/lib/license/management/version.rb
@@ -2,6 +2,6 @@
module License
module Management
- VERSION = '2.1.1'
+ VERSION = '2.2.0'
end
end
diff --git a/license-management.gemspec b/license-management.gemspec
index 3f33e9b..6076ebf 100644
--- a/license-management.gemspec
+++ b/license-management.gemspec
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
- spec.add_dependency 'license_finder', ENV.fetch('LICENSE_FINDER_VERSION', '5.6.2')
+ spec.add_dependency 'license_finder', ENV['LICENSE_FINDER_VERSION']
spec.add_development_dependency 'rspec', '~> 3.9'
end
diff --git a/run.sh b/run.sh
index 30d1eff..096447b 100755
--- a/run.sh
+++ b/run.sh
@@ -69,11 +69,13 @@ fi
case "$LM_PYTHON_VERSION" in
"2"|"2.7")
echo "using python $LM_PYTHON_VERSION"
+ LICENSE_FINDER_CLI_OPTS="--python-version 2 $LICENSE_FINDER_CLI_OPTS"
pip --version
;;
"3"|"3.5")
echo "switching to python $LM_PYTHON_VERSION"
+ LICENSE_FINDER_CLI_OPTS="--python-version 3 $LICENSE_FINDER_CLI_OPTS"
pip3 install --upgrade --no-index -f "file://$LOCAL_PYPI_INDEX" "pip==$VERSION_OF_PIP"
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1
pip --version
@@ -172,6 +174,9 @@ case "$COMMAND" in
gradle build
skip_prepare=true
fi
+ if [[ $(ls ./*.sln 2> /dev/null) ]]; then
+ LICENSE_FINDER_CLI_OPTS="--recursive $LICENSE_FINDER_CLI_OPTS"
+ fi
else
echo "Running '${SETUP_CMD[@]}' to install project dependencies..."
${SETUP_CMD[@]}
diff --git a/test/results/csharp-nuget-dotnetcore-v1.1.json b/test/results/csharp-nuget-dotnetcore-v1.1.json
index 9ead717..826c02c 100644
--- a/test/results/csharp-nuget-dotnetcore-v1.1.json
+++ b/test/results/csharp-nuget-dotnetcore-v1.1.json
@@ -57,7 +57,7 @@
"name": "Antlr3.Runtime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -75,7 +75,7 @@
"name": "Iesi.Collections",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -93,7 +93,7 @@
"name": "Microsoft.NETCore.Platforms",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -111,7 +111,7 @@
"name": "Microsoft.NETCore.Targets",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -129,7 +129,7 @@
"name": "Microsoft.Win32.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -147,7 +147,7 @@
"name": "MvcMailer",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -165,7 +165,7 @@
"name": "NETStandard.Library",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -183,7 +183,7 @@
"name": "NHibernate",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -201,7 +201,7 @@
"name": "NodaTime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -219,7 +219,7 @@
"name": "Remotion.Linq",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -237,7 +237,7 @@
"name": "Remotion.Linq.EagerFetching",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -255,7 +255,7 @@
"name": "System.AppContext",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -273,7 +273,7 @@
"name": "System.Buffers",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -291,7 +291,7 @@
"name": "System.Collections",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -309,7 +309,7 @@
"name": "System.Collections.Concurrent",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -327,7 +327,7 @@
"name": "System.Configuration.ConfigurationManager",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -345,7 +345,7 @@
"name": "System.Console",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -363,7 +363,7 @@
"name": "System.Diagnostics.Debug",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -381,7 +381,7 @@
"name": "System.Diagnostics.DiagnosticSource",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -399,7 +399,7 @@
"name": "System.Diagnostics.Tools",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -417,7 +417,7 @@
"name": "System.Diagnostics.Tracing",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -435,7 +435,7 @@
"name": "System.Globalization",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -453,7 +453,7 @@
"name": "System.Globalization.Calendars",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -471,7 +471,7 @@
"name": "System.Globalization.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -489,7 +489,7 @@
"name": "System.IO",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -507,7 +507,7 @@
"name": "System.IO.Compression",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -525,7 +525,7 @@
"name": "System.IO.Compression.ZipFile",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -543,7 +543,7 @@
"name": "System.IO.FileSystem",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -561,7 +561,7 @@
"name": "System.IO.FileSystem.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -579,7 +579,7 @@
"name": "System.Linq",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -597,7 +597,7 @@
"name": "System.Linq.Expressions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -615,7 +615,7 @@
"name": "System.Linq.Queryable",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -633,7 +633,7 @@
"name": "System.Net.Http",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -651,7 +651,7 @@
"name": "System.Net.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -669,7 +669,7 @@
"name": "System.Net.Sockets",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -687,7 +687,7 @@
"name": "System.ObjectModel",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -705,7 +705,7 @@
"name": "System.Reflection",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -723,7 +723,7 @@
"name": "System.Reflection.Emit",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -741,7 +741,7 @@
"name": "System.Reflection.Emit.ILGeneration",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -759,7 +759,7 @@
"name": "System.Reflection.Emit.Lightweight",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -777,7 +777,7 @@
"name": "System.Reflection.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -795,7 +795,7 @@
"name": "System.Reflection.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -813,7 +813,7 @@
"name": "System.Reflection.TypeExtensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -831,7 +831,7 @@
"name": "System.Resources.ResourceManager",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -849,7 +849,7 @@
"name": "System.Runtime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -867,7 +867,7 @@
"name": "System.Runtime.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -885,7 +885,7 @@
"name": "System.Runtime.Handles",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -903,7 +903,7 @@
"name": "System.Runtime.InteropServices",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -921,7 +921,7 @@
"name": "System.Runtime.InteropServices.RuntimeInformation",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -939,7 +939,7 @@
"name": "System.Runtime.Numerics",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -957,7 +957,7 @@
"name": "System.Runtime.Serialization.Formatters",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -975,7 +975,7 @@
"name": "System.Runtime.Serialization.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -993,7 +993,7 @@
"name": "System.Security.Cryptography.Algorithms",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1011,7 +1011,7 @@
"name": "System.Security.Cryptography.Cng",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1029,7 +1029,7 @@
"name": "System.Security.Cryptography.Csp",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1047,7 +1047,7 @@
"name": "System.Security.Cryptography.Encoding",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1065,7 +1065,7 @@
"name": "System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1083,7 +1083,7 @@
"name": "System.Security.Cryptography.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1101,7 +1101,7 @@
"name": "System.Security.Cryptography.ProtectedData",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1119,7 +1119,7 @@
"name": "System.Security.Cryptography.X509Certificates",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1137,7 +1137,7 @@
"name": "System.Text.Encoding",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1155,7 +1155,7 @@
"name": "System.Text.Encoding.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1173,7 +1173,7 @@
"name": "System.Text.RegularExpressions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1191,7 +1191,7 @@
"name": "System.Threading",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1209,7 +1209,7 @@
"name": "System.Threading.Tasks",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1227,7 +1227,7 @@
"name": "System.Threading.Tasks.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1245,7 +1245,7 @@
"name": "System.Threading.Timer",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1263,7 +1263,7 @@
"name": "System.Xml.ReaderWriter",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1281,7 +1281,7 @@
"name": "System.Xml.XDocument",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1299,7 +1299,7 @@
"name": "T4Scaffolding.Core",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1317,7 +1317,7 @@
"name": "jive",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1335,7 +1335,7 @@
"name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1353,7 +1353,7 @@
"name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1371,7 +1371,7 @@
"name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1389,7 +1389,7 @@
"name": "runtime.native.System",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1407,7 +1407,7 @@
"name": "runtime.native.System.IO.Compression",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1425,7 +1425,7 @@
"name": "runtime.native.System.Net.Http",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1443,7 +1443,7 @@
"name": "runtime.native.System.Security.Cryptography.Apple",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1461,7 +1461,7 @@
"name": "runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1479,7 +1479,7 @@
"name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1497,7 +1497,7 @@
"name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1515,7 +1515,7 @@
"name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1533,7 +1533,7 @@
"name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1551,7 +1551,7 @@
"name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1569,7 +1569,7 @@
"name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1587,7 +1587,7 @@
"name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1605,7 +1605,7 @@
"name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
}
diff --git a/test/results/csharp-nuget-dotnetcore-v1.json b/test/results/csharp-nuget-dotnetcore-v1.json
index cf22505..94ac683 100644
--- a/test/results/csharp-nuget-dotnetcore-v1.json
+++ b/test/results/csharp-nuget-dotnetcore-v1.json
@@ -50,7 +50,7 @@
"name": "Antlr3.Runtime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -62,7 +62,7 @@
"name": "Iesi.Collections",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -74,7 +74,7 @@
"name": "Microsoft.NETCore.Platforms",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -86,7 +86,7 @@
"name": "Microsoft.NETCore.Targets",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -98,7 +98,7 @@
"name": "Microsoft.Win32.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -110,7 +110,7 @@
"name": "MvcMailer",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -122,7 +122,7 @@
"name": "NETStandard.Library",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -134,7 +134,7 @@
"name": "NHibernate",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -146,7 +146,7 @@
"name": "NodaTime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -158,7 +158,7 @@
"name": "Remotion.Linq",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -170,7 +170,7 @@
"name": "Remotion.Linq.EagerFetching",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -182,7 +182,7 @@
"name": "System.AppContext",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -194,7 +194,7 @@
"name": "System.Buffers",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -206,7 +206,7 @@
"name": "System.Collections",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -218,7 +218,7 @@
"name": "System.Collections.Concurrent",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -230,7 +230,7 @@
"name": "System.Configuration.ConfigurationManager",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -242,7 +242,7 @@
"name": "System.Console",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -254,7 +254,7 @@
"name": "System.Diagnostics.Debug",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -266,7 +266,7 @@
"name": "System.Diagnostics.DiagnosticSource",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -278,7 +278,7 @@
"name": "System.Diagnostics.Tools",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -290,7 +290,7 @@
"name": "System.Diagnostics.Tracing",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -302,7 +302,7 @@
"name": "System.Globalization",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -314,7 +314,7 @@
"name": "System.Globalization.Calendars",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -326,7 +326,7 @@
"name": "System.Globalization.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -338,7 +338,7 @@
"name": "System.IO",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -350,7 +350,7 @@
"name": "System.IO.Compression",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -362,7 +362,7 @@
"name": "System.IO.Compression.ZipFile",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -374,7 +374,7 @@
"name": "System.IO.FileSystem",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -386,7 +386,7 @@
"name": "System.IO.FileSystem.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -398,7 +398,7 @@
"name": "System.Linq",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -410,7 +410,7 @@
"name": "System.Linq.Expressions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -422,7 +422,7 @@
"name": "System.Linq.Queryable",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -434,7 +434,7 @@
"name": "System.Net.Http",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -446,7 +446,7 @@
"name": "System.Net.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -458,7 +458,7 @@
"name": "System.Net.Sockets",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -470,7 +470,7 @@
"name": "System.ObjectModel",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -482,7 +482,7 @@
"name": "System.Reflection",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -494,7 +494,7 @@
"name": "System.Reflection.Emit",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -506,7 +506,7 @@
"name": "System.Reflection.Emit.ILGeneration",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -518,7 +518,7 @@
"name": "System.Reflection.Emit.Lightweight",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -530,7 +530,7 @@
"name": "System.Reflection.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -542,7 +542,7 @@
"name": "System.Reflection.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -554,7 +554,7 @@
"name": "System.Reflection.TypeExtensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -566,7 +566,7 @@
"name": "System.Resources.ResourceManager",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -578,7 +578,7 @@
"name": "System.Runtime",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -590,7 +590,7 @@
"name": "System.Runtime.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -602,7 +602,7 @@
"name": "System.Runtime.Handles",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -614,7 +614,7 @@
"name": "System.Runtime.InteropServices",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -626,7 +626,7 @@
"name": "System.Runtime.InteropServices.RuntimeInformation",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -638,7 +638,7 @@
"name": "System.Runtime.Numerics",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -650,7 +650,7 @@
"name": "System.Runtime.Serialization.Formatters",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -662,7 +662,7 @@
"name": "System.Runtime.Serialization.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -674,7 +674,7 @@
"name": "System.Security.Cryptography.Algorithms",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -686,7 +686,7 @@
"name": "System.Security.Cryptography.Cng",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -698,7 +698,7 @@
"name": "System.Security.Cryptography.Csp",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -710,7 +710,7 @@
"name": "System.Security.Cryptography.Encoding",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -722,7 +722,7 @@
"name": "System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -734,7 +734,7 @@
"name": "System.Security.Cryptography.Primitives",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -746,7 +746,7 @@
"name": "System.Security.Cryptography.ProtectedData",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -758,7 +758,7 @@
"name": "System.Security.Cryptography.X509Certificates",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -770,7 +770,7 @@
"name": "System.Text.Encoding",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -782,7 +782,7 @@
"name": "System.Text.Encoding.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -794,7 +794,7 @@
"name": "System.Text.RegularExpressions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -806,7 +806,7 @@
"name": "System.Threading",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -818,7 +818,7 @@
"name": "System.Threading.Tasks",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -830,7 +830,7 @@
"name": "System.Threading.Tasks.Extensions",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -842,7 +842,7 @@
"name": "System.Threading.Timer",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -854,7 +854,7 @@
"name": "System.Xml.ReaderWriter",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -866,7 +866,7 @@
"name": "System.Xml.XDocument",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -878,7 +878,7 @@
"name": "T4Scaffolding.Core",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -890,7 +890,7 @@
"name": "jive",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -902,7 +902,7 @@
"name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -914,7 +914,7 @@
"name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -926,7 +926,7 @@
"name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -938,7 +938,7 @@
"name": "runtime.native.System",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -950,7 +950,7 @@
"name": "runtime.native.System.IO.Compression",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -962,7 +962,7 @@
"name": "runtime.native.System.Net.Http",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -974,7 +974,7 @@
"name": "runtime.native.System.Security.Cryptography.Apple",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -986,7 +986,7 @@
"name": "runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -998,7 +998,7 @@
"name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1010,7 +1010,7 @@
"name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1022,7 +1022,7 @@
"name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1034,7 +1034,7 @@
"name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1046,7 +1046,7 @@
"name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1058,7 +1058,7 @@
"name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1070,7 +1070,7 @@
"name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
},
@@ -1082,7 +1082,7 @@
"name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
"description": "",
"pathes": [
- "."
+ "./src/web.api"
]
}
}
diff --git a/test/results/csharp-nuget-dotnetcore-v2.json b/test/results/csharp-nuget-dotnetcore-v2.json
index e2bcf1b..920f7de 100644
--- a/test/results/csharp-nuget-dotnetcore-v2.json
+++ b/test/results/csharp-nuget-dotnetcore-v2.json
@@ -62,7 +62,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"https://raw.githubusercontent.com/antlr/antlrcs/master/license.txt"
@@ -73,7 +73,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"unknown"
@@ -84,7 +84,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -95,7 +95,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -106,7 +106,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -117,7 +117,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://www.opensource.org/licenses/mit-license.php"
@@ -128,7 +128,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -139,7 +139,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/license.txt"
@@ -150,7 +150,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"Apache-2.0"
@@ -161,7 +161,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"Apache-2.0"
@@ -172,7 +172,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"LGPL-2.1"
@@ -183,7 +183,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -194,7 +194,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -205,7 +205,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -216,7 +216,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -227,7 +227,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"https://github.com/dotnet/corefx/blob/master/license.txt"
@@ -238,7 +238,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -249,7 +249,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -260,7 +260,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -271,7 +271,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -282,7 +282,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -293,7 +293,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -304,7 +304,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -315,7 +315,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -326,7 +326,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -337,7 +337,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -348,7 +348,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -359,7 +359,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -370,7 +370,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -381,7 +381,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -392,7 +392,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -403,7 +403,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -414,7 +414,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -425,7 +425,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -436,7 +436,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -447,7 +447,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -458,7 +458,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -469,7 +469,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -480,7 +480,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -491,7 +491,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -502,7 +502,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -513,7 +513,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -524,7 +524,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -535,7 +535,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -546,7 +546,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -557,7 +557,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -568,7 +568,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -579,7 +579,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -590,7 +590,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -601,7 +601,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -612,7 +612,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -623,7 +623,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -634,7 +634,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -645,7 +645,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -656,7 +656,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -667,7 +667,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -678,7 +678,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -689,7 +689,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -700,7 +700,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"https://github.com/dotnet/corefx/blob/master/license.txt"
@@ -711,7 +711,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -722,7 +722,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -733,7 +733,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -744,7 +744,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -755,7 +755,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -766,7 +766,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -777,7 +777,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -788,7 +788,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -799,7 +799,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -810,7 +810,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -821,7 +821,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"unknown"
@@ -832,7 +832,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"MIT"
@@ -843,7 +843,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -854,7 +854,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -865,7 +865,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -876,7 +876,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -887,7 +887,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -898,7 +898,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -909,7 +909,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -920,7 +920,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -931,7 +931,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -942,7 +942,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -953,7 +953,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -964,7 +964,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -975,7 +975,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -986,7 +986,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -997,7 +997,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"
@@ -1008,7 +1008,7 @@
"url": "",
"description": "",
"paths": [
- "."
+ "./src/web.api"
],
"licenses": [
"http://go.microsoft.com/fwlink/?linkid=329770"