Skip to content

Commit ea0ee81

Browse files
authored
feat(nhibernate): update NHibernate and net framework (#386)
1 parent f610cde commit ea0ee81

File tree

155 files changed

+2432
-3047
lines changed

Some content is hidden

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

155 files changed

+2432
-3047
lines changed

.editorconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://EditorConfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = CRLF
8+
9+
[*.ps1]
10+
indent_style = space
11+
indent_size = 2
12+
13+
[*.cs]
14+
indent_style = space
15+
indent_size = 4
16+
17+
[*.cake]
18+
indent_style = space
19+
indent_size = 4
20+
21+
[*.js]
22+
indent_style = tab
23+
indent_size = 2

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[core]
2-
autocrlf = false
2+
autocrlf=false

.gitignore

Lines changed: 91 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,91 @@
1-
**/*.suo
2-
**/*.user
3-
**/*.sln*
4-
_ReSharper*
5-
6-
*.DotSettings.user
7-
*.csproj.user
8-
*.resharper.user
9-
*.resharper
10-
11-
*.suo
12-
*.cache
13-
*~
14-
*ncrunch*
15-
*.ncrunchsolution
16-
*.ncrunchproject
17-
*.swp
18-
TestResult.xml
19-
Gemfile.lock
20-
21-
src/packages
22-
bin
23-
obj
24-
dist
25-
output
26-
build
27-
*.nupkg
28-
logs/
29-
src/CommonAssemblyInfo.cs
1+
# Misc folders
2+
[Bb]in/
3+
[Oo]bj/
4+
[Tt]emp/
5+
[Ll]ib/
6+
[Pp]ackages/
7+
/[Aa]rtifacts/
8+
/[Tt]ools/
9+
*.sln.ide/
10+
11+
# .NET CLI
12+
/.dotnet/
13+
dotnet-install.sh*
14+
/.packages/
15+
16+
# Visual Studio
17+
.vs/
18+
.vscode/
19+
launchSettings.json
20+
project.lock.json
21+
22+
# Rider
23+
.idea/
24+
25+
# Build related
26+
build-results/
27+
tools/Cake/
28+
tools/xunit.runners/
29+
tools/xunit.runner.console/
30+
tools/nuget.exe
31+
tools/gitreleasemanager/
32+
tools/GitVersion.CommandLine/
33+
tools/Addins/
34+
tools/packages.config.md5sum
35+
36+
# mstest test results
37+
TestResults
38+
39+
## Ignore Visual Studio temporary files, build results, and
40+
## files generated by popular Visual Studio add-ons.
41+
42+
# User-specific files
43+
*.suo
44+
*.user
45+
*.sln.docstates
46+
*.userprefs
47+
*.GhostDoc.xml
48+
*StyleCop.Cache
49+
50+
# Build results
51+
[Dd]ebug/
52+
[Rr]elease/
53+
x64/
54+
*_i.c
55+
*_p.c
56+
*.ilk
57+
*.meta
58+
*.obj
59+
*.pch
60+
*.pdb
61+
*.pgc
62+
*.pgd
63+
*.rsp
64+
*.sbr
65+
*.tlb
66+
*.tli
67+
*.tlh
68+
*.tmp
69+
*.log
70+
*.vspscc
71+
*.vssscc
72+
.builds
73+
74+
# Visual Studio profiler
75+
*.psess
76+
*.vsp
77+
*.vspx
78+
79+
# ReSharper is a .NET coding add-in
80+
_ReSharper*
81+
82+
# NCrunch
83+
*.ncrunch*
84+
.*crunch*.local.xml
85+
_NCrunch_*
86+
87+
# NuGet Packages Directory
88+
packages
89+
90+
# Windows
91+
Thumbs.db

CODEOFCONDUCT.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6+
7+
Examples of unacceptable behavior by participants include:
8+
9+
- The use of sexualized language or imagery
10+
- Personal attacks
11+
- Trolling or insulting/derogatory comments
12+
- Public or private harassment
13+
- Publishing other's private information, such as physical or electronic addresses, without explicit permission
14+
- Other unethical or unprofessional conduct
15+
16+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
17+
18+
By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
19+
20+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
21+
22+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
23+
24+
This Code of Conduct is adapted from the Contributor Covenant, version 1.3.0, available from http://contributor-covenant.org/version/1/3/0/
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
# Contribution Guidelines
2+
13
The wiki has a page on contributing to FNH:
24
http://wiki.fluentnhibernate.org/Contributing
35

4-
--IMPORTANT--
6+
## Important
57
If you've just pulled the FNH code into a local git repository for the first time, its really important that you set the core.autocrlf setting to false to avoid running into whitespace/line ending issues. Do this using the following command:
68

7-
git config core.autocrlf false
9+
```
10+
git config core.autocrlf false
11+
```
812

913

Gemfile

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

GitReleaseManager.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
issue-labels-include:
2+
- breaking change
3+
- feature
4+
- bug
5+
- improvement
6+
- documentation
7+
- technical debt
8+
issue-labels-exclude:
9+
- Build
10+
issue-labels-alias:
11+
- name: documentation
12+
header: documentation
13+
plural: documentation

GitVersion.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
assembly-versioning-scheme: None
2+
branches:
3+
master:
4+
mode: ContinuousDelivery
5+
tag:
6+
increment: Patch
7+
prevent-increment-of-merged-branch-version: true
8+
track-merge-target: false
9+
dev(elop)?(ment)?$:
10+
mode: ContinuousDeployment
11+
tag: alpha
12+
increment: Minor
13+
prevent-increment-of-merged-branch-version: false
14+
track-merge-target: true

InstallGems.bat

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

LICENSE.txt renamed to LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2008-2009, James Gregory and contributors
1+
Copyright (c) 2008-2018, James Gregory and contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)