Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix conditions on the strong name targets. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vs2012 |
Files: | files | file ages | folders |
SHA1: |
50c649a956987180d13503e4e73d73dc |
User & Date: | mistachkin 2012-09-14 09:11:51.824 |
Context
2012-09-14
| ||
09:14 | Fix compiler warning. check-in: 76637ea284 user: mistachkin tags: vs2012 | |
09:11 | Fix conditions on the strong name targets. check-in: 50c649a956 user: mistachkin tags: vs2012 | |
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 | |
Changes
Changes to SQLite.NET.targets.
︙ | |||
62 63 64 65 66 67 68 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | + + + - + + + + - + | </GetFrameworkSDKPath> <Exec Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" Command=""$(DirForStrongName)bin\sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Touch Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" |
︙ |