System.Data.SQLite

Check-in [7de90061a2]
Login

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

Overview
Comment:For the NuGet packages, make sure to copy the SQLite interop library files when there is no PostBuildEvent defined.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7de90061a2c6a2d1ef7185b6ccdca45e3b6cf9a5
User & Date: mistachkin 2014-12-05 03:23:58.501
Context
2014-12-05
03:33
Correct naming of the NuGet MSBuild targets file to match the package names. check-in: 7704e9f337 user: mistachkin tags: trunk
03:23
For the NuGet packages, make sure to copy the SQLite interop library files when there is no PostBuildEvent defined. check-in: 7de90061a2 user: mistachkin tags: trunk
2014-11-28
08:38
Fix typo on the release process web page. Fix for [89774dc93e]. check-in: 0d23e2583b user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
78
79
80
81
82
83
84




85
86
87
88
89
90
91
  -->

  <PropertyGroup>
    <PostBuildEventDependsOn>
      $(PostBuildEventDependsOn);
      CopySQLiteInteropFiles;
    </PostBuildEventDependsOn>




    <CleanDependsOn>
      $(CleanDependsOn);
      CleanSQLiteInteropFiles;
    </CleanDependsOn>
  </PropertyGroup>

  <!--







>
>
>
>







78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  -->

  <PropertyGroup>
    <PostBuildEventDependsOn>
      $(PostBuildEventDependsOn);
      CopySQLiteInteropFiles;
    </PostBuildEventDependsOn>
    <BuildDependsOn>
      $(BuildDependsOn);
      CopySQLiteInteropFiles;
    </BuildDependsOn>
    <CleanDependsOn>
      $(CleanDependsOn);
      CleanSQLiteInteropFiles;
    </CleanDependsOn>
  </PropertyGroup>

  <!--