System.Data.SQLite

Check-in [1a26d4f6ce]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Use $(OutDir) instead of $(OutputPath) in the MSBuild targets file contained in the NuGet packages. Fix for [b9741a9c25].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1a26d4f6ce722fc854972b44b7acbd0a6d2bccbb
User & Date: mistachkin 2014-09-25 04:06:48.669
Original Comment: Use $(OutDir) instead of $(OutputPath) in the MSBuild targets file contained in the NuGet packages. Fix for [cbd6e44ca7].
Context
2014-09-26
21:25
Fix typo in the setup package data file. check-in: db47ff46aa user: mistachkin tags: trunk
03:31
Merge updates from trunk. check-in: c8e5b7d893 user: mistachkin tags: experimental
2014-09-25
04:06
Use $(OutDir) instead of $(OutputPath) in the MSBuild targets file contained in the NuGet packages. Fix for [b9741a9c25]. check-in: 1a26d4f6ce user: mistachkin tags: trunk
2014-09-24
05:09
In the test suite infrastructure, make sure transactions and/or connections 'leaked' by tests are cleaned up before calling the native shutdown function. check-in: cfe8932268 user: mistachkin tags: trunk
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
25
26
27
28
29
30
31
32
33
34



35
36

37
38
39
40
41
42

43
44
45
46
47
48
49
50
51
52
53



54
55
56
57
58

59
60
61
62
63
64
65
25
26
27
28
29
30
31



32
33
34
35

36
37
38
39
40
41

42
43
44
45
46
47
48
49
50



51
52
53
54
55
56
57

58
59
60
61
62
63
64
65







-
-
-
+
+
+

-
+





-
+








-
-
-
+
+
+




-
+







  ******************************************************************************
  **                   SQLite Interop Library Build Targets                   **
  ******************************************************************************
  -->

  <Target Name="CopySQLiteInteropFiles"
          Condition="'$(CopySQLiteInteropFiles)' != 'false' And
                     '$(OutputPath)' != '' And
                     HasTrailingSlash('$(OutputPath)') And
                     Exists('$(OutputPath)')"
                     '$(OutDir)' != '' And
                     HasTrailingSlash('$(OutDir)') And
                     Exists('$(OutDir)')"
          Inputs="@(SQLiteInteropFiles)"
          Outputs="@(SQLiteInteropFiles -> '$(OutputPath)%(RecursiveDir)%(Filename)%(Extension)')">
          Outputs="@(SQLiteInteropFiles -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')">
    <!--
        NOTE: Copy "SQLite.Interop.dll" and all related files, for every
              architecture that we support, to the build output directory.
    -->
    <Copy SourceFiles="@(SQLiteInteropFiles)"
          DestinationFiles="@(SQLiteInteropFiles -> '$(OutputPath)%(RecursiveDir)%(Filename)%(Extension)')" />
          DestinationFiles="@(SQLiteInteropFiles -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" />
  </Target>

  <!--
  ******************************************************************************
  -->

  <Target Name="CleanSQLiteInteropFiles"
          Condition="'$(CleanSQLiteInteropFiles)' != 'false' And
                     '$(OutputPath)' != '' And
                     HasTrailingSlash('$(OutputPath)') And
                     Exists('$(OutputPath)')">
                     '$(OutDir)' != '' And
                     HasTrailingSlash('$(OutDir)') And
                     Exists('$(OutDir)')">
    <!--
        NOTE: Delete "SQLite.Interop.dll" and all related files, for every
              architecture that we support, from the build output directory.
    -->
    <Delete Files="@(SQLiteInteropFiles -> '$(OutputPath)%(RecursiveDir)%(Filename)%(Extension)')" />
    <Delete Files="@(SQLiteInteropFiles -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" />
  </Target>

  <!--
  ******************************************************************************
  **                 SQLite Interop Library Build Properties                  **
  ******************************************************************************
  -->