diff options
| author | a1xd <[email protected]> | 2020-09-28 02:26:29 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-09-28 04:40:16 -0400 |
| commit | d868fe150fde91927c96deaed663acbf165b39f1 (patch) | |
| tree | e8fedfa24d10356b5b1b4efe34aaf4db0da6437f /wrapper/wrapper.vcxproj | |
| parent | Merge pull request #27 from JacobPalecki/GUI (diff) | |
| download | rawaccel-d868fe150fde91927c96deaed663acbf165b39f1.tar.xz rawaccel-d868fe150fde91927c96deaed663acbf165b39f1.zip | |
update build config
Diffstat (limited to 'wrapper/wrapper.vcxproj')
| -rw-r--r-- | wrapper/wrapper.vcxproj | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/wrapper/wrapper.vcxproj b/wrapper/wrapper.vcxproj index 37060ad..6c85a57 100644 --- a/wrapper/wrapper.vcxproj +++ b/wrapper/wrapper.vcxproj @@ -66,6 +66,10 @@ <Link> <AdditionalDependencies /> </Link> + <PostBuildEvent> + <Command>copy /Y "$(TargetPath)" "$(SolutionDir)signed\$(TargetFileName)" & +copy /Y "$(TargetDir)Newtonsoft.Json.dll" "$(SolutionDir)signed\Newtonsoft.Json.dll"</Command> + </PostBuildEvent> </ItemDefinitionGroup> <ItemGroup> <ClInclude Include="wrapper_io.hpp" /> @@ -75,7 +79,9 @@ <ClCompile Include="wrapper_io.cpp" /> </ItemGroup> <ItemGroup> - <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> |