System.Data.SQLite

Check-in [ab40dc2756]
Login

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

Overview
Comment:Experimental NuGet package change to allow the interop files to be considered as 'Content' again.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | nuGetContent
Files: files | file ages | folders
SHA1: ab40dc275698d9f4edaca075013281c4f80b0d84
User & Date: mistachkin 2015-05-21 18:37:00.945
Context
2015-05-21
18:47
Simplify condition for the content section added in the previous check-in. check-in: 54ac1d7383 user: mistachkin tags: nuGetContent
18:37
Experimental NuGet package change to allow the interop files to be considered as 'Content' again. check-in: ab40dc2756 user: mistachkin tags: nuGetContent
2015-05-20
21:53
Update SQLite core library to the 3.8.10.2 release. check-in: 0fc18b9f9e user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
17
18
19
20
21
22
23














24
25
26
27
28
29
30

  <ItemGroup>
    <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And
                                   HasTrailingSlash('$(MSBuildThisFileDirectory)')"
                        Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" />
  </ItemGroup>















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

  <Target Name="CopySQLiteInteropFiles"







>
>
>
>
>
>
>
>
>
>
>
>
>
>







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

  <ItemGroup>
    <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And
                                   HasTrailingSlash('$(MSBuildThisFileDirectory)')"
                        Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" />
  </ItemGroup>

  <!--
  ******************************************************************************
  **                   SQLite Interop Library Content Items                   **
  ******************************************************************************
  -->

  <ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != 'false' And
                        '$(MSBuildThisFileDirectory)' != '' And
                        HasTrailingSlash('$(MSBuildThisFileDirectory)')">
    <Content Include="@(SQLiteInteropFiles)">
      <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
    </Content>
  </ItemGroup>

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

  <Target Name="CopySQLiteInteropFiles"