Skip to content

Add MyGet gallery link to readme #2376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ including [howtos][A1], [blogs][A2] and [reference documentation][A3].
[A2]: http://nhibernate.info/blog/
[A3]: http://nhibernate.info/doc/nh/en/index.html

Latest Version
Latest Release Version
--------------

The quickest way to get the latest release of NHibernate is to add it to your project using
Expand All @@ -22,6 +22,24 @@ Alternatively binaries are available from SourceForge at <http://sourceforge.net
You are encouraged to review the release notes ([releasenotes.txt](releasenotes.txt)), particularly when upgrading to a
later version. The release notes will generally document any breaking changes.

Nightly Development Builds
--------------------------

The quickest way to get the latest development build of NHibernate is to add it to your project using
NuGet from MyGet feed (<https://www.myget.org/gallery/nhibernate>).

In order to make life a little bit easier you can register the package source in the NuGet.Config
file in the top folder of your project, similar to the following.

```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="NHibernateDevBuilds" value="https://www.myget.org/F/nhibernate/api/v3/index.json" />
</packageSources>
</configuration>
```

Community Forums
----------------

Expand Down