File tree Expand file tree Collapse file tree 9 files changed +17
-14
lines changed
Expand file tree Collapse file tree 9 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 22<package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
33 <metadata minClientVersion =" 2.12" >
44 <id >EmailValidation</id >
5- <version >1.2 .0</version >
5+ <version >1.3 .0</version >
66 <title >EmailValidation</title >
77 <authors >Jeffrey Stedfast</authors >
88 <owners >Jeffrey Stedfast</owners >
1515Supports mail addresses as defined in rfc5322 as well as the new Internationalized Mail Address standards (rfc653x).</description >
1616 <summary >A simple (but correct) .NET class for validating email addresses.</summary >
1717 <releaseNotes >
18- * Added new TryValidate() method which reports errors.
18+ * Dropped support for net6.0 but added net8.0 in its place.
19+ * Allow custom error messages in EmailAttribute.
1920 </releaseNotes >
2021 <copyright >Jeffrey Stedfast</copyright >
2122 <language >en-US</language >
2223 <tags >email validation</tags >
24+ <readme >docs\README.md</readme >
2325 <frameworkAssemblies >
2426 </frameworkAssemblies >
2527 <dependencies >
@@ -34,6 +36,7 @@ Supports mail addresses as defined in rfc5322 as well as the new Internationaliz
3436 </dependencies >
3537 </metadata >
3638 <files >
39+ <file src =" README.md" target =" docs\README.md" />
3740 <file src =" EmailValidation\bin\Release\net462\EmailValidation.dll" target =" lib\net462\EmailValidation.dll" />
3841 <file src =" EmailValidation\bin\Release\net462\EmailValidation.xml" target =" lib\net462\EmailValidation.xml" />
3942 <file src =" EmailValidation\bin\Release\net8.0\EmailValidation.dll" target =" lib\net8.0\EmailValidation.dll" />
Original file line number Diff line number Diff line change 44// Authors: Michel Feinstein <michel@feinstein.com.br>
55// Jeffrey Stedfast <jestedfa@microsoft.com>
66//
7- // Copyright (c) 2013-2024 Jeffrey Stedfast
7+ // Copyright (c) 2013-2025 Jeffrey Stedfast
88//
99// Permission is hereby granted, free of charge, to any person obtaining a copy
1010// of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33//
44// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55//
6- // Copyright (c) 2013-2024 Jeffrey Stedfast
6+ // Copyright (c) 2013-2025 Jeffrey Stedfast
77//
88// Permission is hereby granted, free of charge, to any person obtaining a copy
99// of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33//
44// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55//
6- // Copyright (c) 2013-2024 Jeffrey Stedfast
6+ // Copyright (c) 2013-2025 Jeffrey Stedfast
77//
88// Permission is hereby granted, free of charge, to any person obtaining a copy
99// of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33//
44// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55//
6- // Copyright (c) 2013-2024 Jeffrey Stedfast
6+ // Copyright (c) 2013-2025 Jeffrey Stedfast
77//
88// Permission is hereby granted, free of charge, to any person obtaining a copy
99// of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33//
44// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55//
6- // Copyright (c) 2013-2024 Jeffrey Stedfast
6+ // Copyright (c) 2013-2025 Jeffrey Stedfast
77//
88// Permission is hereby granted, free of charge, to any person obtaining a copy
99// of this software and associated documentation files (the "Software"), to deal
3434[ assembly: AssemblyConfiguration ( "" ) ]
3535[ assembly: AssemblyCompany ( "" ) ]
3636[ assembly: AssemblyProduct ( "EmailValidation" ) ]
37- [ assembly: AssemblyCopyright ( "Copyright © 2013-2024 Jeffrey Stedfast" ) ]
37+ [ assembly: AssemblyCopyright ( "Copyright © 2013-2025 Jeffrey Stedfast" ) ]
3838[ assembly: AssemblyTrademark ( "" ) ]
3939[ assembly: AssemblyCulture ( "" ) ]
4040
6464//
6565// If there have only been bug fixes, bump the Micro Version and/or the Build Number
6666// in the AssemblyFileVersion attribute.
67- [ assembly: AssemblyInformationalVersion ( "1.2 .0" ) ]
68- [ assembly: AssemblyFileVersion ( "1.2 .0" ) ]
69- [ assembly: AssemblyVersion ( "1.2 .0.0" ) ]
67+ [ assembly: AssemblyInformationalVersion ( "1.3 .0" ) ]
68+ [ assembly: AssemblyFileVersion ( "1.3 .0" ) ]
69+ [ assembly: AssemblyVersion ( "1.3 .0.0" ) ]
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2013-2024 Jeffrey Stedfast
3+ Copyright (c) 2013-2025 Jeffrey Stedfast
44
55Permission is hereby granted, free of charge, to any person obtaining a copy of
66this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ namespace Example {
8080## License Information
8181
8282```
83- EmailValidation is Copyright (C) 2013-2024 Jeffrey Stedfast and is licensed under the MIT license:
83+ EmailValidation is Copyright (C) 2013-2025 Jeffrey Stedfast and is licensed under the MIT license:
8484
8585Permission is hereby granted, free of charge, to any person obtaining a copy
8686of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33//
44// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55//
6- // Copyright (c) 2013-2024 Jeffrey Stedfast
6+ // Copyright (c) 2013-2025 Jeffrey Stedfast
77//
88// Permission is hereby granted, free of charge, to any person obtaining a copy
99// of this software and associated documentation files (the "Software"), to deal
You can’t perform that action at this time.
0 commit comments