-
-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adopt assembly versioning scheme 'major.minor.0.0'
The rationale behind this is that we don't want changes in the patch version to result in a different strong name; patches should be in- place updates and shouldn't lead to version conflicts. This will help reduce the need for assembly binding redirects. For now, we only do 'major.minor.0.0' instead of 'major.0.0.0' (which would be even better) and we increase the minor version by 1 to pre- vent strange-looking binding redirects like these: 4.0.0.0 - 4.7.127.0 -> 4.0.0.0 4.0.0.0 - 4.7.127.0 -> 4.7.0.0 In both cases, the following will probably look less suspicious: 4.0.0.0 - 4.7.127.0 -> 4.8.0.0 Moq 5 will be able to safely make the switch to 'major.0.0.0'.
- Loading branch information
Showing
4 changed files
with
9 additions
and
6 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
4.7.0 | ||
4.8.0-rc1 |
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
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