This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a .nuspec file to ensure framework assemblies are correctly added…
… to the OWIN introspection package
- Loading branch information
1 parent
4d96f55
commit 7535d6a
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/Owin.Security.OAuth.Introspection/Owin.Security.OAuth.Introspection.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>$id$</id> | ||
<version>$version$</version> | ||
<authors>$authors$</authors> | ||
<owners>$authors$</owners> | ||
<requireLicenseAcceptance>$requireLicenseAcceptance$</requireLicenseAcceptance> | ||
<licenseUrl>$licenseUrl$</licenseUrl> | ||
<projectUrl>$projectUrl$</projectUrl> | ||
<iconUrl>$iconUrl$</iconUrl> | ||
<description>$description$</description> | ||
<tags>$tags$</tags> | ||
<repository type="$repositoryType$" url="$repositoryUrl$" /> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5.1"> | ||
<dependency id="Microsoft.Owin.Security.Interop" version="$aspNetCoreVersion$" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.Caching.Memory" version="$aspNetCoreVersion$" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.Logging" version="$aspNetCoreVersion$" exclude="Build,Analyzers" /> | ||
<dependency id="Newtonsoft.Json" version="$jsonNetVersion$" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.IdentityModel.Protocol.Extensions" version="$identityModelVersion$" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
<frameworkAssemblies> | ||
<frameworkAssembly assemblyName="System.IdentityModel" targetFramework=".NETFramework4.5.1" /> | ||
<frameworkAssembly assemblyName="System.Net.Http" targetFramework=".NETFramework4.5.1" /> | ||
</frameworkAssemblies> | ||
</metadata> | ||
<files> | ||
<file src="bin\$configuration$\net451\$id$.dll" target="lib\net451" /> | ||
<file src="bin\$configuration$\net451\$id$.xml" target="lib\net451" /> | ||
</files> | ||
</package> |