Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Attempt to fix custom strong name re-signing target in the targets file. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vs2012 |
Files: | files | file ages | folders |
SHA1: |
5cbe4c8bb13d846158c4fa0c4381162a |
User & Date: | mistachkin 2012-09-14 08:30:20.417 |
Context
2012-09-14
| ||
09:03 | Make the strong name signing target(s) and build steps more robust when Visual Studio 2012 is installed. check-in: bca430acc5 user: mistachkin tags: vs2012 | |
08:30 | Attempt to fix custom strong name re-signing target in the targets file. check-in: 5cbe4c8bb1 user: mistachkin tags: vs2012 | |
08:20 | Add Visual Studio 2012 to the Eagle test constraints file. check-in: 0510acae4d user: mistachkin tags: vs2012 | |
Changes
Changes to SQLite.NET.targets.
︙ | ︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 | </GetFrameworkSDKPath> <Exec Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" Command=""$(DirForStrongName)bin\sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Touch AlwaysCreate="true" Files="$(TargetPath).StrongNameSign.done" /> </Target> <!-- ****************************************************************************** --> | > > > > > | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | </GetFrameworkSDKPath> <Exec Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" Command=""$(DirForStrongName)bin\sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Exec Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)sn.exe')" Command=""$(DirForStrongName)sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Touch AlwaysCreate="true" Files="$(TargetPath).StrongNameSign.done" /> </Target> <!-- ****************************************************************************** --> |
︙ | ︙ |