add some rake for managing nuspecs
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -21,11 +21,14 @@ build/
|
||||
|
||||
# Visual Studo 2015 cache/options directory
|
||||
.vs/
|
||||
|
||||
Owin.Security.Providers.nuspec
|
||||
Owin.Security.Providers*.nupkg
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
src/**/*.nuspec
|
||||
src/**/*.nupkg
|
||||
tools/
|
||||
*_i.c
|
||||
*_p.c
|
||||
*.ilk
|
||||
|
||||
6
Gemfile
Normal file
6
Gemfile
Normal file
@@ -0,0 +1,6 @@
|
||||
source 'http://rubygems.org'
|
||||
|
||||
gem 'rake'
|
||||
gem 'os'
|
||||
gem 'albacore'
|
||||
gem 'nokogiri'
|
||||
27
Gemfile.lock
Normal file
27
Gemfile.lock
Normal file
@@ -0,0 +1,27 @@
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
specs:
|
||||
albacore (2.0.4)
|
||||
map (~> 6.5)
|
||||
nokogiri (~> 1.5)
|
||||
rake (> 10)
|
||||
semver2 (~> 3.4)
|
||||
map (6.6.0)
|
||||
mini_portile2 (2.0.0)
|
||||
nokogiri (1.6.7.2-x64-mingw32)
|
||||
mini_portile2 (~> 2.0.0.rc2)
|
||||
os (0.9.6)
|
||||
rake (11.1.1)
|
||||
semver2 (3.4.2)
|
||||
|
||||
PLATFORMS
|
||||
x64-mingw32
|
||||
|
||||
DEPENDENCIES
|
||||
albacore
|
||||
nokogiri
|
||||
os
|
||||
rake
|
||||
|
||||
BUNDLED WITH
|
||||
1.10.6
|
||||
@@ -90,7 +90,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.Yah
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.Yammer", "src\Owin.Security.Providers.Yammer\Owin.Security.Providers.Yammer.csproj", "{8D029A93-E687-4DDF-82B0-700EBBF477F7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.OpenIDBase", "src\Owin.Security.Providers.OpenIDBase\Owin.Security.Providers.OpenIDBase.csproj", "{4FD7B873-1994-4990-AA40-C37060121494}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.OpenIDBase", "base\Owin.Security.Providers.OpenIDBase\Owin.Security.Providers.OpenIDBase.csproj", "{4FD7B873-1994-4990-AA40-C37060121494}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -7,9 +7,10 @@
|
||||
<configSections>
|
||||
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
</configSections>
|
||||
<connectionStrings>
|
||||
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-OwinOAuthProvidersDemo-20131113093838.mdf;Initial Catalog=aspnet-OwinOAuthProvidersDemo-20131113093838;Integrated Security=True" providerName="System.Data.SqlClient" />
|
||||
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-OwinOAuthProvidersDemo-2015.mdf;Initial Catalog=aspnet-OwinOAuthProvidersDemo-20131113093838;Integrated Security=True" providerName="System.Data.SqlClient" />
|
||||
</connectionStrings>
|
||||
<appSettings>
|
||||
<add key="webpages:Version" value="3.0.0.0" />
|
||||
|
||||
63
Rakefile.rb
Normal file
63
Rakefile.rb
Normal file
@@ -0,0 +1,63 @@
|
||||
require 'rake'
|
||||
require 'erb'
|
||||
require 'rake/clean'
|
||||
require 'albacore'
|
||||
require 'open-uri'
|
||||
require 'fileutils'
|
||||
require 'os'
|
||||
require 'nokogiri'
|
||||
require 'openssl'
|
||||
import 'nuget.rake'
|
||||
|
||||
CLEAN.include(['src/**/obj', 'src/**/bin', 'tool', 'packages/**','src/**/*.nuspec', 'src/**/*.nupkg', 'tools', 'packages'])
|
||||
Configuration = ENV['CONFIGURATION'] || 'Release'
|
||||
PACKAGES = File.expand_path("packages")
|
||||
TOOLS = File.expand_path("tools")
|
||||
NUGET = File.expand_path("#{TOOLS}/nuget")
|
||||
NUGET_EXE = File.expand_path("#{TOOLS}/nuget/nuget.exe")
|
||||
@version = "2.0.0-beta1"
|
||||
PROJECTS = Dir.glob('src/*').select{|dir| File.directory? dir }
|
||||
|
||||
desc 'Retrieve things'
|
||||
task :retrieve => ["nuget:fetch"]
|
||||
|
||||
desc 'Does the build'
|
||||
task :build => [:retrieve, :compile]
|
||||
|
||||
desc 'clean, retrieve, build, generate nuspecs'
|
||||
task :preflight => [:clean, :build, :nuspec_gen]
|
||||
|
||||
build :compile do |t|
|
||||
|
||||
t.prop 'Configuration', Configuration
|
||||
t.sln = 'OwinOAuthProviders.sln'
|
||||
|
||||
end
|
||||
|
||||
|
||||
desc "Generate nuspec files"
|
||||
task :nuspec_gen do
|
||||
template = ERB.new(File.read('nuspectemplate.nuspec.erb'))
|
||||
|
||||
@nugets = []
|
||||
PROJECTS.each{|directory|
|
||||
@id = File.basename(directory)
|
||||
@nugets.push(@id)
|
||||
output = template.result()
|
||||
File.write(File.join(directory, "#{@id}.nuspec"), output)
|
||||
}
|
||||
File.write('Owin.Security.Providers.nuspec', ERB.new(File.read('global.nuspec.erb')).result())
|
||||
end
|
||||
|
||||
desc 'pack nuspec files'
|
||||
task :nuspec_pack => :nuspec_gen do
|
||||
PROJECTS.each{|dir|
|
||||
Dir.chdir(dir) do
|
||||
sh "#{NUGET_EXE} pack #{FileList["*.csproj"].first} -Prop Configuration=#{Configuration} -IncludeReferencedProjects"
|
||||
end
|
||||
}
|
||||
sh "#{NUGET_EXE} pack Owin.Security.Providers.nuspec -Exclude \"**\""
|
||||
end
|
||||
|
||||
desc 'publish nugets'
|
||||
task :nuget_
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.OpenIDBase</id>
|
||||
<version>2.0</version>
|
||||
<authors>Jerrie Pelser, Tommy Parnell and contributors</authors>
|
||||
<owners>Tommy Parnell</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/tparnell8/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds additional OAuth providers for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Additional OAuth providers for Katana (OWIN).
|
||||
|
||||
Includes providers for ArcGISOnline, Asana, Backlog, Battle.net, Bitbucket, Buffer, DeviantArt, Dropbox, EVEOnline, Fitbit, Flickr, Foursquare, GitHub, Gitter, Google+, HealthGraph, Imgur, Instagram, LinkedIn, Onshape, PayPal, Reddit, Salesforce, Slack, SoundCloud, Spotify, StackExchange, TripIt, Twitch.tv, Untappd, Vimeo, Visual Studio Online, VKontakte, Wordpress, Yahoo and Yammer.
|
||||
|
||||
Also adds generic OpenID 2.0 providers as well implementations for Steam and Wargaming.
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
Version 2.0
|
||||
- Decouple providers into individual files
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2013 - 2016</copyright>
|
||||
<tags>owin katana oauth LinkedIn Yahoo Google+ GitHub Reddit Instagram StackExchange SalesForce TripIt Buffer ArcGIS Dropbox Wordpress Battle.NET Yammer OpenID Steam Twitch</tags>
|
||||
</metadata>
|
||||
</package>
|
||||
1
base/Readme.md
Normal file
1
base/Readme.md
Normal file
@@ -0,0 +1 @@
|
||||
Base libraries independently versioned go here
|
||||
30
global.nuspec.erb
Normal file
30
global.nuspec.erb
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers</id>
|
||||
<version><%= @version %></version>
|
||||
<authors>Jerrie Pelser, Tommy Parnell and contributors</authors>
|
||||
<owners>Tommy Parnell</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/tparnell8/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds additional OAuth providers for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Additional OAuth providers for Katana (OWIN).
|
||||
There are many individual providers, this package is a meta package that has a dependency on all of them.
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
Version 2.0
|
||||
- Decouple providers into individual files
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2013 - 2016</copyright>
|
||||
<tags>owin katana oauth LinkedIn Yahoo Google+ GitHub Reddit Instagram StackExchange SalesForce TripIt Buffer ArcGIS Dropbox Wordpress Battle.NET Yammer OpenID Steam Twitch</tags>
|
||||
<dependencies>
|
||||
<% for @item in @nugets %>
|
||||
<dependency id="<%= @item %>" version="<%= @version %>" />
|
||||
<% end %>
|
||||
</dependencies>
|
||||
</metadata>
|
||||
</package>
|
||||
44
nuget.rake
Normal file
44
nuget.rake
Normal file
@@ -0,0 +1,44 @@
|
||||
namespace :nuget do
|
||||
|
||||
# If we don't have a copy of nuget, download it
|
||||
task :bootstrap do
|
||||
puts 'Ensuring NuGet exists in tools/NuGet'
|
||||
|
||||
if !FileTest.exist?("#{NUGET}/nuget.exe")
|
||||
puts 'Downloading nuget from nuget.org'
|
||||
|
||||
begin
|
||||
FileUtils.mkdir_p("#{NUGET}")
|
||||
File.open("#{NUGET}/nuget.exe", "wb") do |file|
|
||||
file.write open('http://nuget.org/nuget.exe', {ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE}).read
|
||||
end
|
||||
rescue
|
||||
FileUtils.rm_rf("#{NUGET}/nuget.exe")
|
||||
File.open("#{NUGET}/nuget.exe", "wb") do |file|
|
||||
file.write open('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', {ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE}).read
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
desc 'Fetch nuget dependencies for all packages'
|
||||
task :fetch => :bootstrap do
|
||||
|
||||
# If we aren't running under windows, assume we're using mono
|
||||
CMD_PREFIX = ""
|
||||
if !OS.windows?
|
||||
CMD_PREFIX = "mono"
|
||||
begin
|
||||
sh "mozroots --import --sync" #attempt to sync ssl things...
|
||||
rescue
|
||||
end
|
||||
end
|
||||
|
||||
# Make sure we get solution-level deps
|
||||
#sh "#{CMD_PREFIX} #{NUGET}/nuget.exe i .nuget/packages.config -o packages"
|
||||
|
||||
FileList["src/**/packages.config"].each { |filepath|
|
||||
sh "#{CMD_PREFIX} #{NUGET}/nuget.exe restore"
|
||||
}
|
||||
end
|
||||
|
||||
end
|
||||
28
nuspectemplate.nuspec.erb
Normal file
28
nuspectemplate.nuspec.erb
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id><%= @id %></id>
|
||||
<version><%= @version %></version>
|
||||
<authors>Jerrie Pelser, Tommy Parnell and contributors</authors>
|
||||
<owners>Tommy Parnell</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/tparnell8/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds additional OAuth providers for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Additional OAuth providers for Katana (OWIN).
|
||||
|
||||
Includes providers for ArcGISOnline, Asana, Backlog, Battle.net, Bitbucket, Buffer, DeviantArt, Dropbox, EVEOnline, Fitbit, Flickr, Foursquare, GitHub, Gitter, Google+, HealthGraph, Imgur, Instagram, LinkedIn, Onshape, PayPal, Reddit, Salesforce, Slack, SoundCloud, Spotify, StackExchange, TripIt, Twitch.tv, Untappd, Vimeo, Visual Studio Online, VKontakte, Wordpress, Yahoo and Yammer.
|
||||
|
||||
Also adds generic OpenID 2.0 providers as well implementations for Steam and Wargaming.
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
Version 2.0
|
||||
- Decouple providers into individual files
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2013 - 2016</copyright>
|
||||
<tags>owin katana oauth LinkedIn Yahoo Google+ GitHub Reddit Instagram StackExchange SalesForce TripIt Buffer ArcGIS Dropbox Wordpress Battle.NET Yammer OpenID Steam Twitch</tags>
|
||||
</metadata>
|
||||
</package>
|
||||
@@ -75,8 +75,9 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.ArcGISOnline\Owin.Security.Providers.ArcGISOnline.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Resources.resx">
|
||||
@@ -100,6 +101,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.ArcGISOnline.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.ArcGISOnline</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a ArcGISOnline OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth ArcGISOnline</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.ArcGISOnline.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Asana\Owin.Security.Providers.Asana.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -99,6 +98,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Asana.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Asana</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Asana OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Asana</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Asana.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Backlog\Owin.Security.Providers.Backlog.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -99,6 +98,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Backlog.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Backlog</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Backlog OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Backlog</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Backlog.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.BattleNet\Owin.Security.Providers.BattleNet.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -99,6 +98,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.BattleNet.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.BattleNet</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a BattleNet OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth BattleNet</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.BattleNet.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Bitbucket\Owin.Security.Providers.Bitbucket.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Bitbucket.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Bitbucket</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Bitbucket OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Bitbucket</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Bitbucket.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Buffer\Owin.Security.Providers.Buffer.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Buffer.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Buffer</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Buffer OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Buffer</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Buffer.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Cosign\Owin.Security.Providers.Cosign.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Cosign.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Cosign</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Cosign OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Cosign</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Cosign.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.DeviantArt\Owin.Security.Providers.DeviantArt.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.DeviantArt.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.DeviantArt</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a DeviantArt OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth DeviantArt</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.DeviantArt.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -81,7 +81,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.DoYouBuzz\Owin.Security.Providers.DoYouBuzz.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -107,6 +106,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.DoYouBuzz.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.DoYouBuzz</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a DoYouBuzz OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth DoYouBuzz</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.DoYouBuzz.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Dropbox\Owin.Security.Providers.Dropbox.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Dropbox.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Dropbox</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Dropbox OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Dropbox</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Dropbox.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.EVEOnline\Owin.Security.Providers.EVEOnline.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.EVEOnline.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.EVEOnline</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a EVEOnline OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth EVEOnline</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.EVEOnline.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Fitbit\Owin.Security.Providers.Fitbit.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Fitbit.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Fitbit</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Fitbit OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Fitbit</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Fitbit.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -78,7 +78,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Flickr\Owin.Security.Providers.Flickr.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -104,6 +103,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Flickr.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Flickr</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Flickr OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Flickr</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Flickr.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Foursquare\Owin.Security.Providers.Foursquare.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Foursquare.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Foursquare</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Foursquare OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Foursquare</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Foursquare.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -75,7 +75,6 @@
|
||||
<Compile Include="Provider\IGitHubAuthenticationProvider.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.GitHub\Owin.Security.Providers.GitHub.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -101,6 +100,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.GitHub.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.GitHub</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a GitHub OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth GitHub</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.GitHub.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Gitter\Owin.Security.Providers.Gitter.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Gitter.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Gitter</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Gitter OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Gitter</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Gitter.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.GooglePlus\Owin.Security.Providers.GooglePlus.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.GooglePlus.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.GooglePlus</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a GooglePlus OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth GooglePlus</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.GooglePlus.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.HealthGraph\Owin.Security.Providers.HealthGraph.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.HealthGraph.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.HealthGraph</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a HealthGraph OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth HealthGraph</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.HealthGraph.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Imgur\Owin.Security.Providers.Imgur.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Imgur.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Imgur</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Imgur OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Imgur</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Imgur.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Instagram\Owin.Security.Providers.Instagram.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Instagram.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Instagram</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Instagram OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Instagram</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Instagram.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.LinkedIn\Owin.Security.Providers.LinkedIn.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.LinkedIn.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.LinkedIn</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a LinkedIn OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth LinkedIn</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.LinkedIn.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Onshape\Owin.Security.Providers.Onshape.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Onshape.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Onshape</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Onshape OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Onshape</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Onshape.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -46,6 +46,10 @@
|
||||
<HintPath>..\..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Owin.Security.Providers.OpenIDBase, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\packages\Owin.Security.Providers.OpenIDBase.2.0.0\lib\net452\Owin.Security.Providers.OpenIDBase.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Net.Http.WebRequest" />
|
||||
@@ -68,9 +72,9 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.OpenID\Owin.Security.Providers.OpenID.nuspec" />
|
||||
<None Include="packages - Copy.config" />
|
||||
<None Include="packages.config" />
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Resources.resx">
|
||||
@@ -78,12 +82,6 @@
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Owin.Security.Providers.OpenIDBase\Owin.Security.Providers.OpenIDBase.csproj">
|
||||
<Project>{4fd7b873-1994-4990-aa40-c37060121494}</Project>
|
||||
<Name>Owin.Security.Providers.OpenIDBase</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Provider\" />
|
||||
</ItemGroup>
|
||||
@@ -103,6 +101,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.OpenID.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.OpenID</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a OpenID OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth OpenID</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.OpenID.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Microsoft.Owin" version="3.0.1" targetFramework="net452" />
|
||||
<package id="Microsoft.Owin.Security" version="3.0.1" targetFramework="net452" />
|
||||
<package id="Owin" version="1.0" targetFramework="net452" />
|
||||
</packages>
|
||||
@@ -4,4 +4,5 @@
|
||||
<package id="Microsoft.Owin.Security" version="3.0.1" targetFramework="net452" />
|
||||
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net452" />
|
||||
<package id="Owin" version="1.0" targetFramework="net452" />
|
||||
<package id="Owin.Security.Providers.OpenIDBase" version="2.0.0" targetFramework="net452" />
|
||||
</packages>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.PayPal\Owin.Security.Providers.PayPal.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.PayPal.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.PayPal</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a PayPal OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth PayPal</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.PayPal.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Reddit\Owin.Security.Providers.Reddit.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Reddit.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Reddit</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Reddit OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Reddit</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Reddit.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -101,6 +101,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Salesforce.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Salesforce</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Salesforce OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Salesforce</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Salesforce.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
<Compile Include="Provider\ShopifyReturnEndpointContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Shopify\Owin.Security.Providers.Shopify.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Shopify.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Shopify</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Shopify OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Shopify</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Shopify.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
<Compile Include="Provider\SlackReturnEndpointContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Slack\Owin.Security.Providers.Slack.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Slack.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Slack</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Slack OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Slack</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Slack.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
<Compile Include="Provider\SoundCloudReturnEndpointContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.SoundCloud\Owin.Security.Providers.SoundCloud.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.SoundCloud.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.SoundCloud</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a SoundCloud OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth SoundCloud</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.SoundCloud.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -74,7 +74,6 @@
|
||||
<Compile Include="Provider\SpotifyReturnEndpointContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Spotify\Owin.Security.Providers.Spotify.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -100,6 +99,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Spotify.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Spotify</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Spotify OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Spotify</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Spotify.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -75,7 +75,6 @@
|
||||
<Compile Include="Provider\StackExchangeReturnEndpointContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.StackExchange\Owin.Security.Providers.StackExchange.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -101,6 +100,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.StackExchange.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.StackExchange</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a StackExchange OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth StackExchange</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.StackExchange.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -46,6 +46,10 @@
|
||||
<HintPath>..\..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Owin.Security.Providers.OpenIDBase, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\packages\Owin.Security.Providers.OpenIDBase.2.0.0\lib\net452\Owin.Security.Providers.OpenIDBase.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Net.Http.WebRequest" />
|
||||
@@ -69,7 +73,6 @@
|
||||
<Compile Include="SteamAuthenticationOptions.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="C:\projects\GitHub\OwinOAuthProviders\Owin.Security.Providers.Steam\Owin.Security.Providers.Steam.nuspec" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -78,12 +81,6 @@
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Owin.Security.Providers.OpenIDBase\Owin.Security.Providers.OpenIDBase.csproj">
|
||||
<Project>{4fd7b873-1994-4990-aa40-c37060121494}</Project>
|
||||
<Name>Owin.Security.Providers.OpenIDBase</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Target Name="PostBuildMacros">
|
||||
@@ -101,6 +98,5 @@
|
||||
$(PostBuildEventDependsOn);
|
||||
PostBuildMacros;
|
||||
</PostBuildEventDependsOn>
|
||||
<PostBuildEvent>if $(ConfigurationName) == Release $(SolutionDir)\nuget\NuGet pack "$(ProjectDir)Owin.Security.Providers.Steam.nuspec" -o "$(SolutionDir)Output" -version @(VersionNumber)</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>Owin.Security.Providers.Steam</id>
|
||||
<version>2.0.0</version>
|
||||
<authors>Jerrie Pelser, Eonasdan and contributors</authors>
|
||||
<owners>Eonasdan</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<projectUrl>https://github.com/Eonasdan/OwinOAuthProviders</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>
|
||||
Adds a Steam OAuth provider for OWIN to use with ASP.NET
|
||||
</description>
|
||||
<summary>
|
||||
Providers have now been split into their own packages from Owin.Security.Providers
|
||||
</summary>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<copyright>Copyright 2016</copyright>
|
||||
<tags>owin katana oauth Steam</tags>
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.Owin.Security" version="2.1.0" />
|
||||
<dependency id="Newtonsoft.Json" version="6.0.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="bin\Release\Owin.Security.Providers.Steam.dll" target="lib\net45" />
|
||||
</files>
|
||||
</package>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user