1
1
using System ;
2
2
using System . Reflection ;
3
- using System . Runtime . InteropServices ;
4
3
using System . Resources ;
4
+ using System . Runtime . InteropServices ;
5
5
6
6
[ assembly: AssemblyProduct ( "Python for .NET" ) ]
7
7
[ assembly: AssemblyVersion ( "4.0.0.1" ) ]
8
- [ assembly: AssemblyDefaultAliasAttribute ( "Python.Runtime.dll" ) ]
8
+ [ assembly: AssemblyDefaultAlias ( "Python.Runtime.dll" ) ]
9
9
[ assembly: CLSCompliant ( true ) ]
10
10
[ assembly: ComVisible ( false ) ]
11
- [ assembly: AssemblyCopyrightAttribute ( "MIT License" ) ]
12
- [ assembly: AssemblyFileVersionAttribute ( "2.0.0.2" ) ]
13
- [ assembly: NeutralResourcesLanguageAttribute ( "en" ) ]
11
+ [ assembly: AssemblyCopyright ( "MIT License" ) ]
12
+ [ assembly: AssemblyFileVersion ( "2.0.0.2" ) ]
13
+ [ assembly: NeutralResourcesLanguage ( "en" ) ]
14
14
15
- #if ( PYTHON23 )
16
- [ assembly: AssemblyTitleAttribute ( "Python.Runtime for Python 2.3 " ) ]
17
- [ assembly: AssemblyDescriptionAttribute ( "Python Runtime for Python 2.3 " ) ]
15
+ #if PYTHON27
16
+ [ assembly: AssemblyTitle ( "Python.Runtime for Python 2.7 " ) ]
17
+ [ assembly: AssemblyDescription ( "Python Runtime for Python 2.7 " ) ]
18
18
#endif
19
- #if ( PYTHON24 )
20
- [ assembly: AssemblyTitleAttribute ( "Python.Runtime for Python 2.4 " ) ]
21
- [ assembly: AssemblyDescriptionAttribute ( "Python Runtime for Python 2.4 " ) ]
19
+ #if PYTHON33
20
+ [ assembly: AssemblyTitle ( "Python.Runtime for Python 3.3 " ) ]
21
+ [ assembly: AssemblyDescription ( "Python Runtime for Python 3.3 " ) ]
22
22
#endif
23
- #if ( PYTHON25 )
24
- [ assembly: AssemblyTitleAttribute ( "Python.Runtime for Python 2.5 " ) ]
25
- [ assembly: AssemblyDescriptionAttribute ( "Python Runtime for Python 2.5 " ) ]
23
+ #if PYTHON34
24
+ [ assembly: AssemblyTitle ( "Python.Runtime for Python 3.4 " ) ]
25
+ [ assembly: AssemblyDescription ( "Python Runtime for Python 3.4 " ) ]
26
26
#endif
27
- #if ( PYTHON26 )
28
- [ assembly: AssemblyTitleAttribute ( "Python.Runtime for Python 2.6" ) ]
29
- [ assembly: AssemblyDescriptionAttribute ( "Python Runtime for Python 2.6" ) ]
27
+ #if PYTHON35
28
+ [ assembly: AssemblyTitle ( "Python.Runtime for Python 3.5" ) ]
29
+ [ assembly: AssemblyDescription ( "Python Runtime for Python 3.5" ) ]
30
+ #endif
31
+ #if PYTHON36
32
+ [ assembly: AssemblyTitle ( "Python.Runtime for Python 3.6" ) ]
33
+ [ assembly: AssemblyDescription ( "Python Runtime for Python 3.6" ) ]
30
34
#endif
31
- #if ( PYTHON27 )
32
-
33
- [ assembly: AssemblyTitle ( "Python.Runtime for Python 2.7" ) ]
34
- [ assembly: AssemblyDescription ( "Python Runtime for Python 2.7" ) ]
35
- #endif
0 commit comments