System.Data.SQLite

Check-in [54ac1d7383]
Login

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

Overview
Comment:Simplify condition for the content section added in the previous check-in.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | nuGetContent
Files: files | file ages | folders
SHA1: 54ac1d73839a7c73e70b7112ad1be3c545e22e57
User & Date: mistachkin 2015-05-21 18:47:20.926
Context
2015-05-22
01:57
Changes to permit easier customization of the NuGet MSBuild settings. Closed-Leaf check-in: c6c4e96ece user: mistachkin tags: nuGetContent
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
Changes
Unified Diff Ignore Whitespace Patch
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  <!--
  ******************************************************************************
  **                   SQLite Interop Library Content Items                   **
  ******************************************************************************
  -->

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

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







|
<







24
25
26
27
28
29
30
31

32
33
34
35
36
37
38
  <!--
  ******************************************************************************
  **                   SQLite Interop Library Content Items                   **
  ******************************************************************************
  -->

  <ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != 'false' And
                        '@(SQLiteInteropFiles)' != ''">

    <Content Include="@(SQLiteInteropFiles)">
      <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
    </Content>
  </ItemGroup>

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