-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
10 changed files
with
3,732 additions
and
27 deletions.
There are no files selected for viewing
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
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
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
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
src/SQLitePCLRaw.provider.sqlite3.most/SQLitePCLRaw.provider.sqlite3.csproj
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,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<LangVersion>7.3</LangVersion> | ||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\sn\SQLitePCLRaw.provider.sqlite3.snk</AssemblyOriginatorKeyFile> | ||
<PackageDescription>SQLitePCL.raw is a Portable Class Library (PCL) for low-level (raw) access to SQLite. Packages named 'SQLitePCLRaw.provider.*' (like this one) are 'plugins' that allow SQLitePCLRaw.core to access the native SQLite library. This provider does DllImport of 'sqlite3'. The most common use for this provider is to access the SQLite library provided with iOS.</PackageDescription> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
<Target Name="autogen" BeforeTargets="BeforeBuild"> | ||
<Exec WorkingDirectory="$(ProjectDir)" Command="t4 -o gen_provider_cdecl.cs -p:CONV=Cdecl provider.tt"/> | ||
<Exec WorkingDirectory="$(ProjectDir)" Command="t4 -o gen_provider_stdcall.cs -p:CONV=StdCall provider.tt"/> | ||
</Target> | ||
--> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\SQLitePCLRaw.core\SQLitePCLRaw.core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="Generated\provider_sqlite3.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.