File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Resources ;
3
2
using System . Reflection ;
3
+ using System . Resources ;
4
+ using Linq . Extras . Properties ;
4
5
5
6
[ assembly: AssemblyTitle ( "Linq.Extras" ) ]
6
7
[ assembly: AssemblyDescription ( "A set of helper and extension methods to complement the System.Linq namespace." ) ]
11
12
[ assembly: AssemblyTrademark ( "" ) ]
12
13
[ assembly: AssemblyCulture ( "" ) ]
13
14
[ assembly: NeutralResourcesLanguage ( "en" ) ]
14
- [ assembly: CLSCompliant ( true ) ]
15
- [ assembly: AssemblyVersion ( "1.0.1.0" ) ]
16
- [ assembly: AssemblyFileVersion ( "1.0.1.0" ) ]
15
+ [ assembly: CLSCompliant ( true ) ]
16
+ [ assembly: AssemblyVersion ( VersionInfo . Version ) ]
17
+ [ assembly: AssemblyFileVersion ( VersionInfo . Version ) ]
18
+
19
+ namespace Linq . Extras . Properties
20
+ {
21
+ static class VersionInfo
22
+ {
23
+ public const string Version = "1.0.2.0" ;
24
+ }
25
+ }
You can’t perform that action at this time.
0 commit comments