Skip to content

Commit

Permalink
+ signed the Assembly
Browse files Browse the repository at this point in the history
+ updated readme info about -v parameter
  • Loading branch information
c3rebro committed Dec 21, 2018
1 parent 4c07049 commit d629660
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
4 changes: 3 additions & 1 deletion LDAP2CSV.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<NoWin32Manifest>False</NoWin32Manifest>
<SignAssembly>False</SignAssembly>
<SignAssembly>True</SignAssembly>
<DelaySign>False</DelaySign>
<AssemblyOriginatorKeyFile>bin\Release\sgKey.snk</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down
26 changes: 11 additions & 15 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,31 +1,27 @@
#region Using directives

#region Using directives
using System;
using System.Reflection;
using System.Runtime.InteropServices;

#endregion

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("LDAP2CSV")]
[assembly: AssemblyDescription("Convert an LDAP Query to *.csv")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("messgeraetetechnik-hansen.de")]
[assembly: AssemblyProduct("LDAP2CSV")]
[assembly: AssemblyCopyright("Copyright 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyTitle ("LDAP2CSV")]
[assembly: AssemblyDescription ("Convert an LDAP Query to *.csv")]
[assembly: AssemblyConfiguration ("")]
[assembly: AssemblyCompany ("messgeraetetechnik-hansen.de")]
[assembly: AssemblyProduct ("LDAP2CSV")]
[assembly: AssemblyCopyright ("Copyright 2018")]
[assembly: AssemblyTrademark ("")]
[assembly: AssemblyCulture ("")]
// This sets the default COM visibility of types in the assembly to invisible.
// If you need to expose a type to COM, use [ComVisible(true)] on that type.
[assembly: ComVisible(false)]

[assembly: ComVisible (false)]
// The assembly version has following format :
//
// Major.Minor.Build.Revision
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("0.3.*")]
[assembly: AssemblyVersion ("0.3.*")]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ supported attributes: maybe all ASCII characters
**Hint:** If omitted, comma will be used as seperator
usage: -s ;

optional parmeter -p: ldap protocol version
optional parmeter -v: ldap protocol version
supported attributes: 2, 3
**Hint:** If omitted, version 3 is assumed
usage: -p 2 ;
usage: -v 2 ;

optional parmeter -ssl: use ssl encryption
supported attributes: none
Expand Down

0 comments on commit d629660

Please sign in to comment.