Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit ba07e47

Browse files
Merge pull request #361 from DavidChristiansen/develop
OAuth2 Example Fixes (Merged)
2 parents 3770a51 + a83904d commit ba07e47

File tree

238 files changed

+38042
-22599
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+38042
-22599
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ _ReSharper*
2424
*.vs10x
2525
*.docstates
2626
UpgradeLog*.htm
27+
/src/packages

DNOA Localisation.zreproj

Lines changed: 216 additions & 0 deletions
Large diffs are not rendered by default.

appveyor.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 5.0.{build}
2+
branches:
3+
except:
4+
- master
5+
skip_tags: true
6+
assembly_info:
7+
patch: true
8+
file: '**\AssemblyInfo.*'
9+
assembly_version: '{version}'
10+
assembly_file_version: '{version}'
11+
assembly_informational_version: '{version}'
12+
before_build:
13+
- cd .\src
14+
- nuget restore
15+
- cd ..\
16+
build:
17+
project: src\DotNetOpenAuth.sln
18+
parallel: true
19+
verbosity: normal
20+
test:
21+
assemblies: DotNetOpenAuth.Test.dll

doc/README.Bin.html

Lines changed: 0 additions & 82 deletions
This file was deleted.

doc/README.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

doc/WebFarms.htm

Lines changed: 0 additions & 32 deletions
This file was deleted.

doc/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Welcome to MkDocs
2+
3+
For full documentation visit [mkdocs.org](http://mkdocs.org).
4+
5+
## Commands
6+
7+
* `mkdocs new [dir-name]` - Create a new project.
8+
* `mkdocs serve` - Start the live-reloading docs server.
9+
* `mkdocs build` - Build the documentation site.
10+
* `mkdocs help` - Print this help message.
11+
12+
## Project layout
13+
14+
mkdocs.yml # The configuration file.
15+
docs/
16+
index.md # The documentation homepage.
17+
... # Other markdown pages, images and other files.

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
site_name: My Docs

nuget/DotNetOpenAuth.Core.UI.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<id>$identity$</id>
55
<version>$version$</version>
66
<title>DotNetOpenAuth Core (ASP.NET controls)</title>
7-
<authors>Andrew Arnott</authors>
8-
<owners>Outercurve Foundation</owners>
7+
<authors>Andrew Arnott, David Christiansen</authors>
8+
<owners>David Christiansen, Andrew Arnott</owners>
99
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10-
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
10+
<iconUrl>https://raw.githubusercontent.com/DotNetOpenAuth/DotNetOpenAuth/master/doc/logo/dnoa-logo_32x32.png</iconUrl>
1111
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<summary>Shared library implementing the messaging pipeline used by auxiliary DotNetOpenAuth libraries.</summary>

nuget/DotNetOpenAuth.Core.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<id>$identity$</id>
55
<version>$version$</version>
66
<title>DotNetOpenAuth Core</title>
7-
<authors>Andrew Arnott</authors>
8-
<owners>Outercurve Foundation</owners>
7+
<authors>Andrew Arnott, David Christiansen</authors>
8+
<owners>David Christiansen, Andrew Arnott</owners>
99
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10-
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
10+
<iconUrl>https://raw.githubusercontent.com/DotNetOpenAuth/DotNetOpenAuth/master/doc/logo/dnoa-logo_32x32.png</iconUrl>
1111
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<summary>Shared library implementing the messaging pipeline used by auxiliary DotNetOpenAuth libraries.</summary>

0 commit comments

Comments
 (0)