Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Apparently, the 'installationPath' property produced by 'vswhere' for Visual Studio 2017 does not have a trailing backslash. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vs2017 |
Files: | files | file ages | folders |
SHA1: |
1a27c3db68185e52c3e4da9ffaaa9266 |
User & Date: | mistachkin 2017-08-02 19:18:26.987 |
Context
2017-08-02
| ||
19:26 | Attempt to use the 'PrepareForBuildDependsOn' phase instead of the 'BuildDependsOn' phase to schedule the 'TryToFindVsSdk2017' MSBuild task. check-in: 0c3e16723a user: mistachkin tags: vs2017 | |
19:18 | Apparently, the 'installationPath' property produced by 'vswhere' for Visual Studio 2017 does not have a trailing backslash. check-in: 1a27c3db68 user: mistachkin tags: vs2017 | |
19:09 | Attempt to use the 'vswhere' tool to locate the SDK for Visual Studio 2017 for the design-time components project. check-in: 0199d92b58 user: mistachkin tags: vs2017 | |
Changes
Changes to Targets/SQLite.NET.targets.
︙ | ︙ | |||
278 279 280 281 282 283 284 | --> <Exec ConsoleToMSBuild="true" Command=""$(SQLiteNetDir)\Externals\vswhere\vswhere.exe" -version 15.0 -products * -requires Microsoft.VisualStudio.Component.VSSDK -property installationPath" WorkingDirectory="$(EagleLibraryToolsDir)"> <Output TaskParameter="ConsoleOutput" PropertyName="VS150INSTALLATIONPATH" /> </Exec> <CreateProperty Condition="'$(VS150INSTALLATIONPATH)' != '' And | | | | | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | --> <Exec ConsoleToMSBuild="true" Command=""$(SQLiteNetDir)\Externals\vswhere\vswhere.exe" -version 15.0 -products * -requires Microsoft.VisualStudio.Component.VSSDK -property installationPath" WorkingDirectory="$(EagleLibraryToolsDir)"> <Output TaskParameter="ConsoleOutput" PropertyName="VS150INSTALLATIONPATH" /> </Exec> <CreateProperty Condition="'$(VS150INSTALLATIONPATH)' != '' And !HasTrailingSlash('$(VS150INSTALLATIONPATH)') And Exists('$(VS150INSTALLATIONPATH)\VSSDK')" Value="$(VS150INSTALLATIONPATH)\VSSDK"> <Output TaskParameter="Value" PropertyName="VSSDK150Install" /> </CreateProperty> </Target> </Project> |