Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the other (currently unused) MSBuild target that requires the .NET Framework SDK path. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
493382002d11a1c6671eedd856fbb936 |
User & Date: | mistachkin 2012-09-15 01:48:23.495 |
Context
2012-09-15
| ||
22:14 | Merge Visual Studio 2012 design-time related changes to trunk. check-in: 12a281fd66 user: mistachkin tags: trunk | |
08:44 | More work on the Visual Studio 2012 designer support. check-in: c777f2663b user: mistachkin tags: vs2012Design | |
01:48 | Fix the other (currently unused) MSBuild target that requires the .NET Framework SDK path. check-in: 493382002d user: mistachkin tags: trunk | |
00:14 | Fix shell interop assembly reference for Visual Studio 2012. check-in: 70a47b68d8 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.NET.targets.
︙ | ︙ | |||
109 110 111 112 113 114 115 | </GetFrameworkSDKPath> <Exec Condition="'$(DirForMark32BitOnly)' != '' And HasTrailingSlash('$(DirForMark32BitOnly)') And Exists('$(DirForMark32BitOnly)bin\CorFlags.exe')" Command=""$(DirForMark32BitOnly)bin\CorFlags.exe" "$(TargetPath)" /32BIT+ /Force" /> | > > > | > > > > > > > > > > > > > > > > > > > > | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | </GetFrameworkSDKPath> <Exec Condition="'$(DirForMark32BitOnly)' != '' And HasTrailingSlash('$(DirForMark32BitOnly)') And Exists('$(DirForMark32BitOnly)bin\CorFlags.exe')" Command=""$(DirForMark32BitOnly)bin\CorFlags.exe" "$(TargetPath)" /32BIT+ /Force" /> <Touch Condition="'$(DirForMark32BitOnly)' != '' And HasTrailingSlash('$(DirForMark32BitOnly)') And Exists('$(DirForMark32BitOnly)bin\CorFlags.exe')" AlwaysCreate="true" Files="$(TargetPath).Mark32BitOnly.done" /> </Target> <!-- ****************************************************************************** --> <Target Name="Mark32BitOnly2" Condition="'$(Mark32BitOnly)' != 'false'" Inputs="$(TargetPath)" Outputs="$(TargetPath).Mark32BitOnly.done"> <Exec Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And Exists('$(TargetFrameworkSDKToolsDirectory)CorFlags.exe')" Command=""$(TargetFrameworkSDKToolsDirectory)CorFlags.exe" "$(TargetPath)" /32BIT+ /Force" /> <Touch Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And Exists('$(TargetFrameworkSDKToolsDirectory)CorFlags.exe')" AlwaysCreate="true" Files="$(TargetPath).Mark32BitOnly.done" /> </Target> <!-- ****************************************************************************** --> |
︙ | ︙ |