Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix post-build step condition for Debug and Release configurations of the interop project (i.e. they should always try to re-sign the assembly). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e5e8c081f599546163e03594b146a6b8 |
User & Date: | mistachkin 2011-04-09 19:20:56.171 |
Context
2011-04-09
| ||
19:42 | Unbreak StrongName signing on VS 2010 RTM. MSDN ref: 4b8f353d-8153-45d6-b286-10403cdf159a check-in: 742a2fd061 user: mistachkin tags: trunk | |
19:20 | Fix post-build step condition for Debug and Release configurations of the interop project (i.e. they should always try to re-sign the assembly). check-in: e5e8c081f5 user: mistachkin tags: trunk | |
17:38 | Add previously missing vsixmanifest file to the new projects. check-in: 2bef3aded8 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/SQLite.Interop.2010.vcxproj.
︙ | ︙ | |||
47 48 49 50 51 52 53 | <ProjectGuid>{53784BC1-A8BC-4AC8-8A3E-158D6807345A}</ProjectGuid> <RootNamespace>SQLite.Interop</RootNamespace> <Keyword>Win32Proj</Keyword> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="props\sqlite3.props" /> <Import Project="props\SQLite.Interop.props" /> | > > > | < < > | > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | <ProjectGuid>{53784BC1-A8BC-4AC8-8A3E-158D6807345A}</ProjectGuid> <RootNamespace>SQLite.Interop</RootNamespace> <Keyword>Win32Proj</Keyword> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="props\sqlite3.props" /> <Import Project="props\SQLite.Interop.props" /> <PropertyGroup Condition="('$(Configuration)' == 'DebugNativeOnly' Or '$(Configuration)' == 'ReleaseNativeOnly') And (('$(Platform)' == 'Win32' And '$(PROCESSOR_ARCHITECTURE)' != 'x86') Or ('$(Platform)' == 'x64' And '$(PROCESSOR_ARCHITECTURE)' != 'AMD64'))" Label="PostBuildEvent"> <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <TargetName>$(INTEROP_MIXED_NAME)</TargetName> <ConfigurationType>DynamicLibrary</ConfigurationType> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> |
︙ | ︙ |