Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the VCX project files that was preventing the interop DLL from being copied during post-build in the 'ReleaseNativeOnly' configuration on x64. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1077726517b2b4dc107596672ebdae67 |
User & Date: | mistachkin 2016-10-13 18:54:20.748 |
Original Comment: | Fix typo in the VCX project files that was preventing the interop DLL from being copied during post-build on x64. |
Context
2016-10-13
| ||
20:57 | Fix ambiguous method overload selection issue in the 'getDateTimeTicks' test suite helper procedure. check-in: 8db28182d3 user: mistachkin tags: trunk | |
18:54 | Fix typo in the VCX project files that was preventing the interop DLL from being copied during post-build in the 'ReleaseNativeOnly' configuration on x64. check-in: 1077726517 user: mistachkin tags: trunk | |
18:10 | Follow up previous check-in: one more test needs changes. check-in: 855a3004b1 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/SQLite.Interop.2010.vcxproj.
︙ | ︙ | |||
477 478 479 480 481 482 483 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> | | | 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseNativeOnly|x64'"> <BaseConfiguration>Release</BaseConfiguration> <AfterBuildLinkTargets> $(AfterBuildLinkTargets); CopyInteropAssembly; </AfterBuildLinkTargets> </PropertyGroup> <ItemGroup> |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.2012.vcxproj.
︙ | ︙ | |||
484 485 486 487 488 489 490 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> | | | 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseNativeOnly|x64'"> <BaseConfiguration>Release</BaseConfiguration> <AfterBuildLinkTargets> $(AfterBuildLinkTargets); CopyInteropAssembly; </AfterBuildLinkTargets> </PropertyGroup> <ItemGroup> |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.2013.vcxproj.
︙ | ︙ | |||
484 485 486 487 488 489 490 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> | | | 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseNativeOnly|x64'"> <BaseConfiguration>Release</BaseConfiguration> <AfterBuildLinkTargets> $(AfterBuildLinkTargets); CopyInteropAssembly; </AfterBuildLinkTargets> </PropertyGroup> <ItemGroup> |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.2015.vcxproj.
︙ | ︙ | |||
484 485 486 487 488 489 490 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> | | | 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | </Link> <Manifest> <VerboseOutput>true</VerboseOutput> <AssemblyIdentity>$(ProjectName), processorArchitecture=amd64, version=$(INTEROP_MANIFEST_VERSION), type=win32</AssemblyIdentity> <UpdateFileHashes>true</UpdateFileHashes> </Manifest> </ItemDefinitionGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseNativeOnly|x64'"> <BaseConfiguration>Release</BaseConfiguration> <AfterBuildLinkTargets> $(AfterBuildLinkTargets); CopyInteropAssembly; </AfterBuildLinkTargets> </PropertyGroup> <ItemGroup> |
︙ | ︙ |