-
Notifications
You must be signed in to change notification settings - Fork 819
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
140f14e
commit 89ec45e
Showing
15 changed files
with
705 additions
and
0 deletions.
There are no files selected for viewing
141 changes: 141 additions & 0 deletions
141
packages/System.Data.SQLite.Core.1.0.102.0/build/net20/System.Data.SQLite.Core.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<!-- | ||
* | ||
* System.Data.SQLite.Core.targets - | ||
* | ||
* WARNING: This MSBuild file requires MSBuild 4.0 features. | ||
* | ||
* Written by Joe Mistachkin and David Archer. | ||
* Released to the public domain, use at your own risk! | ||
* | ||
--> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
****************************************************************************** | ||
** Load Per-User Settings ** | ||
****************************************************************************** | ||
--> | ||
|
||
<!-- | ||
NOTE: If the per-user settings file exists, import it now. The contained | ||
settings, if any, will override the default ones provided below. | ||
--> | ||
<Import Condition="'$(MSBuildThisFileDirectory)' != '' And | ||
HasTrailingSlash('$(MSBuildThisFileDirectory)') And | ||
Exists('$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user')" | ||
Project="$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user" /> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Items ** | ||
****************************************************************************** | ||
--> | ||
|
||
<ItemGroup> | ||
<SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And | ||
HasTrailingSlash('$(MSBuildThisFileDirectory)')" | ||
Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> | ||
</ItemGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Content Items ** | ||
****************************************************************************** | ||
--> | ||
|
||
<ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != '' And | ||
'$(ContentSQLiteInteropFiles)' != 'false' And | ||
'@(SQLiteInteropFiles)' != ''"> | ||
<Content Include="@(SQLiteInteropFiles)"> | ||
<Link>%(RecursiveDir)%(FileName)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Targets ** | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CopySQLiteInteropFiles" | ||
Condition="'$(CopySQLiteInteropFiles)' != 'false' And | ||
'$(OutDir)' != '' And | ||
HasTrailingSlash('$(OutDir)') And | ||
Exists('$(OutDir)')" | ||
Inputs="@(SQLiteInteropFiles)" | ||
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 -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CleanSQLiteInteropFiles" | ||
Condition="'$(CleanSQLiteInteropFiles)' != 'false' And | ||
'$(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 -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CollectSQLiteInteropFiles" | ||
Condition="'$(CollectSQLiteInteropFiles)' != 'false'"> | ||
<ItemGroup> | ||
<FilesForPackagingFromProject Include="@(SQLiteInteropFiles)"> | ||
<DestinationRelativePath>bin\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath> | ||
</FilesForPackagingFromProject> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Properties ** | ||
****************************************************************************** | ||
--> | ||
|
||
<PropertyGroup> | ||
<PostBuildEventDependsOn> | ||
$(PostBuildEventDependsOn); | ||
CopySQLiteInteropFiles; | ||
</PostBuildEventDependsOn> | ||
<BuildDependsOn> | ||
$(BuildDependsOn); | ||
CopySQLiteInteropFiles; | ||
</BuildDependsOn> | ||
<CleanDependsOn> | ||
$(CleanDependsOn); | ||
CleanSQLiteInteropFiles; | ||
</CleanDependsOn> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Publish Properties for Visual Studio 201x ** | ||
****************************************************************************** | ||
--> | ||
|
||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '' Or | ||
'$(VisualStudioVersion)' == '10.0' Or | ||
'$(VisualStudioVersion)' == '11.0' Or | ||
'$(VisualStudioVersion)' == '12.0' Or | ||
'$(VisualStudioVersion)' == '14.0'"> | ||
<PipelineCollectFilesPhaseDependsOn> | ||
CollectSQLiteInteropFiles; | ||
$(PipelineCollectFilesPhaseDependsOn); | ||
</PipelineCollectFilesPhaseDependsOn> | ||
</PropertyGroup> | ||
</Project> |
Binary file added
BIN
+1.36 MB
packages/System.Data.SQLite.Core.1.0.102.0/build/net20/x64/SQLite.Interop.dll
Binary file not shown.
Binary file added
BIN
+983 KB
packages/System.Data.SQLite.Core.1.0.102.0/build/net20/x86/SQLite.Interop.dll
Binary file not shown.
141 changes: 141 additions & 0 deletions
141
packages/System.Data.SQLite.Core.1.0.102.0/build/net40/System.Data.SQLite.Core.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<!-- | ||
* | ||
* System.Data.SQLite.Core.targets - | ||
* | ||
* WARNING: This MSBuild file requires MSBuild 4.0 features. | ||
* | ||
* Written by Joe Mistachkin and David Archer. | ||
* Released to the public domain, use at your own risk! | ||
* | ||
--> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
****************************************************************************** | ||
** Load Per-User Settings ** | ||
****************************************************************************** | ||
--> | ||
|
||
<!-- | ||
NOTE: If the per-user settings file exists, import it now. The contained | ||
settings, if any, will override the default ones provided below. | ||
--> | ||
<Import Condition="'$(MSBuildThisFileDirectory)' != '' And | ||
HasTrailingSlash('$(MSBuildThisFileDirectory)') And | ||
Exists('$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user')" | ||
Project="$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user" /> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Items ** | ||
****************************************************************************** | ||
--> | ||
|
||
<ItemGroup> | ||
<SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And | ||
HasTrailingSlash('$(MSBuildThisFileDirectory)')" | ||
Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> | ||
</ItemGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Content Items ** | ||
****************************************************************************** | ||
--> | ||
|
||
<ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != '' And | ||
'$(ContentSQLiteInteropFiles)' != 'false' And | ||
'@(SQLiteInteropFiles)' != ''"> | ||
<Content Include="@(SQLiteInteropFiles)"> | ||
<Link>%(RecursiveDir)%(FileName)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Targets ** | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CopySQLiteInteropFiles" | ||
Condition="'$(CopySQLiteInteropFiles)' != 'false' And | ||
'$(OutDir)' != '' And | ||
HasTrailingSlash('$(OutDir)') And | ||
Exists('$(OutDir)')" | ||
Inputs="@(SQLiteInteropFiles)" | ||
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 -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CleanSQLiteInteropFiles" | ||
Condition="'$(CleanSQLiteInteropFiles)' != 'false' And | ||
'$(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 -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
--> | ||
|
||
<Target Name="CollectSQLiteInteropFiles" | ||
Condition="'$(CollectSQLiteInteropFiles)' != 'false'"> | ||
<ItemGroup> | ||
<FilesForPackagingFromProject Include="@(SQLiteInteropFiles)"> | ||
<DestinationRelativePath>bin\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath> | ||
</FilesForPackagingFromProject> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Build Properties ** | ||
****************************************************************************** | ||
--> | ||
|
||
<PropertyGroup> | ||
<PostBuildEventDependsOn> | ||
$(PostBuildEventDependsOn); | ||
CopySQLiteInteropFiles; | ||
</PostBuildEventDependsOn> | ||
<BuildDependsOn> | ||
$(BuildDependsOn); | ||
CopySQLiteInteropFiles; | ||
</BuildDependsOn> | ||
<CleanDependsOn> | ||
$(CleanDependsOn); | ||
CleanSQLiteInteropFiles; | ||
</CleanDependsOn> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
****************************************************************************** | ||
** SQLite Interop Library Publish Properties for Visual Studio 201x ** | ||
****************************************************************************** | ||
--> | ||
|
||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '' Or | ||
'$(VisualStudioVersion)' == '10.0' Or | ||
'$(VisualStudioVersion)' == '11.0' Or | ||
'$(VisualStudioVersion)' == '12.0' Or | ||
'$(VisualStudioVersion)' == '14.0'"> | ||
<PipelineCollectFilesPhaseDependsOn> | ||
CollectSQLiteInteropFiles; | ||
$(PipelineCollectFilesPhaseDependsOn); | ||
</PipelineCollectFilesPhaseDependsOn> | ||
</PropertyGroup> | ||
</Project> |
Binary file added
BIN
+1.34 MB
packages/System.Data.SQLite.Core.1.0.102.0/build/net40/x64/SQLite.Interop.dll
Binary file not shown.
Binary file added
BIN
+1.01 MB
packages/System.Data.SQLite.Core.1.0.102.0/build/net40/x86/SQLite.Interop.dll
Binary file not shown.
Oops, something went wrong.