Skip to content

Commit

Permalink
Merge branch 'hotfix/FixPluginVersion'
Browse files Browse the repository at this point in the history
  • Loading branch information
FrantisekBodnar committed Mar 28, 2018
2 parents 6667772 + 8d69900 commit e64b85b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Binary file modified PluginVersion.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// 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("KeePass Smart Certificate KeyProvider")]
[assembly: AssemblyTitle("SmartCertificateKeyProviderPlugin")]
[assembly: AssemblyDescription("This plugin uses X.509 certificate from your personal certificate storage to encrypt KeePass database with generated SHA1 hash from certificate's signature. It also allow to use certificates that are on your Smart Card. It is possible to use Secure Desktop feature (needs to be enabled in Options - Security tab) to avoid Keyloggers.\nDON'T LOOSE YOUR CERTIFICATE OR YOU WILL NOT BE ABLE TO OPEN YOUR DATABASE.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("BodnarSoft")]
Expand Down
9 changes: 7 additions & 2 deletions Source/Smart Certificate KeyProvider.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,16 @@
<Error Condition="!Exists('packages\GitVersionTask.3.6.5\build\dotnet\GitVersionTask.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\GitVersionTask.3.6.5\build\dotnet\GitVersionTask.targets'))" />
</Target>
<Target Name="WriteVersionFile" AfterTargets="Build">
<ItemGroup>
<PluginVersion Include=":"/>
<PluginVersion Include="$(TargetName):$(GitVersion_MajorMinorPatch)"/>
<PluginVersion Include=":"/>
</ItemGroup>
<WriteLinesToFile
File="$(SolutionDir)..\PluginVersion.txt"
Lines="$(TargetName):$(GitVersion_MajorMinorPatch)"
Lines="@(PluginVersion)"
Overwrite="true"
Encoding="Unicode"/>
Encoding="UTF-8"/>
</Target>
<PropertyGroup>
<PostBuildEvent>
Expand Down

0 comments on commit e64b85b

Please sign in to comment.