forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NH-3927 - Switch to SemVer version generation
- SharedAssemblyInfo.?? are retired
- Loading branch information
Showing
21 changed files
with
83 additions
and
309 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor> | ||
<VersionMinor Condition="'$(VersionMinor)' == ''">0</VersionMinor> | ||
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch> | ||
<VersionSuffix Condition="'$(VersionSuffix)' == ''">Alpha1</VersionSuffix> | ||
|
||
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix> | ||
<AssemblyVersion>$(VersionMajor).$(VersionMinor).0.0</AssemblyVersion> | ||
<FileVersion>$(VersionPrefix).0</FileVersion> | ||
|
||
<Product>NHibernate</Product> | ||
<Company>NHibernate.info</Company> | ||
<Copyright>Licensed under LGPL.</Copyright> | ||
</PropertyGroup> | ||
</Project> |
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
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,11 +1,5 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: CLSCompliantAttribute(false)] | ||
[assembly: AssemblyTitleAttribute("NHibernate.DomainModel")] | ||
[assembly: AssemblyDescriptionAttribute("The Domain Model used by the Unit Tests.")] | ||
[assembly: AssemblyCompanyAttribute("NHibernate.info")] | ||
[assembly: AssemblyProductAttribute("NHibernate.DomainModel")] | ||
[assembly: AssemblyCopyrightAttribute("Licensed under LGPL.")] | ||
[assembly: AssemblyDelaySignAttribute(false)] | ||
|
||
[assembly: CLSCompliant(false)] | ||
[assembly: AssemblyDelaySign(false)] |
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
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,15 +1,6 @@ | ||
Imports System | ||
Imports System.Reflection | ||
Imports System.Reflection | ||
Imports NUnit.Framework | ||
|
||
<Assembly: CLSCompliant(False)> | ||
<Assembly: AssemblyTitle("NHibernate.Test.VisualBasic")> | ||
<Assembly: AssemblyDescription("The Visual Basic Unit Tests for NHibernate.")> | ||
<Assembly: AssemblyCompany("NHibernate.info")> | ||
<Assembly: AssemblyProduct("NHibernate.Test.VisualBasic")> | ||
<Assembly: AssemblyCopyright("Licensed under LGPL.")> | ||
<Assembly: AssemblyTrademark("")> | ||
<Assembly: AssemblyDelaySign(False)> | ||
|
||
<Assembly: LevelOfParallelism(0)> | ||
|
Oops, something went wrong.