Skip to content

Commit

Permalink
Build: Change KeePass dev location
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Sep 4, 2020
1 parent 178a734 commit 7f6d66c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions KeePassRPC/KeePassRPC.csproj
Expand Up @@ -111,7 +111,8 @@
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="KeePass">
<HintPath>\home\luckyrat\keepass-dev\KeePass.exe</HintPath>
<HintPath Condition="'$(OS)' == 'Windows_NT'">$(USERPROFILE)\KeePassDEV\KeePass.exe</HintPath>
<HintPath Condition="'$(OS)' != 'Windows_NT'">${home}/keepass-dev/KeePass.exe</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -299,7 +300,7 @@
<PostBuildEvent>
echo POSTBUILDSTEP for $(ProjectName)

set KPDir=c:\Program Files (x86)\KeePass Password Safe 2 DEV\
set KPDir=$(USERPROFILE)\KeePassDEV\
set KPPDir=%25KPDir%25plugins\
set KPPTempDir=%25KPPDir%25$(ProjectName)

Expand Down
5 changes: 3 additions & 2 deletions KeePassRPCTest/KeePassRPCTest.csproj
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -38,7 +38,8 @@
</Reference>
<Reference Include="System" />
<Reference Include="KeePass">
<HintPath>\home\luckyrat\keepass-dev\KeePass.exe</HintPath>
<HintPath Condition="'$(OS)' == 'Windows_NT'">$(USERPROFILE)\KeePassDEV\KeePass.exe</HintPath>
<HintPath Condition="'$(OS)' != 'Windows_NT'">${home}/keepass-dev/KeePass.exe</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 7f6d66c

Please sign in to comment.