Skip to content

Adding support for NuGetizer 3000 #768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions SQLite-net.NuGet/SQLite-net.NuGet.nuproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(NuGetAuthoringPath)\NuGet.Packaging.Authoring.props" Condition="Exists('$(NuGetAuthoringPath)\NuGet.Packaging.Authoring.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}</ProjectGuid>
<Description>sqlite-net is an open source, minimal library to allow .NET and Mono applications to store data in SQLite databases. It is written in C# 3.0 and is meant to be simply compiled in with your projects. It was first designed to work with MonoTouch on the iPhone, but should work in any other CLI environment.</Description>
<PackageId>sqlite-net</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Authors>Frank Krueger</Authors>
<DevelopmentDependency>false</DevelopmentDependency>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<OutputType>Exe</OutputType>
<RootNamespace>SQLitenet.NuGet</RootNamespace>
<UsePartialTypes>false</UsePartialTypes>
<AssemblyName>SQLite-net.NuGet</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<Owners>Frank Krueger,Tim Heuer</Owners>
<PackageTags>sqlite-net sqlite sql monotouch database metro winrt</PackageTags>
<Title>sqlite-net</Title>
<PackageReleaseNotes>See project page</PackageReleaseNotes>
<Summary>A .NET client library to access SQLite embedded database files in a LINQ manner.</Summary>
<PackageProjectUrl>https://github.com/praeclarum/sqlite-net</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/praeclarum/sqlite-net/master/nuget/Logo-low.png</PackageIconUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/praeclarum/sqlite-net/master/LICENSE.md</PackageLicenseUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<OutputPath>bin\Debug</OutputPath>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NuGet.Build.Packaging">
<Version>0.2.2</Version>
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\nuget\SQLite-net-std\SQLite-net-std.csproj">
<Project>{081D08D6-10F1-431B-88FE-469FD9FE898C}</Project>
<Name>SQLite-net-std</Name>
</ProjectReference>
<ProjectReference Include="..\nuget\SQLite-net\SQLite-net.csproj">
<Project>{7F946494-8EE0-432B-8A87-98961143D5C1}</Project>
<Name>SQLite-net</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.Common.targets" />
<Import Project="$(NuGetAuthoringPath)\NuGet.Packaging.Authoring.targets" Condition="Exists('$(NuGetAuthoringPath)\NuGet.Packaging.Authoring.targets')" />
</Project>
14 changes: 14 additions & 0 deletions SQLite.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SQLite-net-base", "nuget\SQ
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SQLite-net-sqlcipher", "nuget\SQLite-net-sqlcipher\SQLite-net-sqlcipher.csproj", "{59DB03EF-E28D-431E-9058-74AF316800EE}"
EndProject
Project("{5DD5E4FA-CB73-4610-85AB-557B54E96AA9}") = "SQLite-net.NuGet", "SQLite-net.NuGet\SQLite-net.NuGet.nuproj", "{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -121,6 +123,18 @@ Global
{59DB03EF-E28D-431E-9058-74AF316800EE}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{59DB03EF-E28D-431E-9058-74AF316800EE}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{59DB03EF-E28D-431E-9058-74AF316800EE}.Debug|iPhone.Build.0 = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|Any CPU.Build.0 = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|iPhone.ActiveCfg = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|iPhone.Build.0 = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{812D5EDE-88BD-444C-AD2A-994EA55EB2F3}.Debug|iPhone.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{6947A8F1-99BE-4DD1-AD4D-D89425CE67A2} = {FECC0E44-E626-49CB-BD8B-0CFBD93FBEFF}
Expand Down
2 changes: 2 additions & 0 deletions nuget/SQLite-net-std/SQLite-net-std.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.props" Condition="Exists('..\..\packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.props')" />
<PropertyGroup>
<TargetFramework>netstandard1.1</TargetFramework>
<AssemblyName>SQLite-net</AssemblyName>
Expand All @@ -23,6 +24,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="1.1.11" />
<PackageReference Include="NuGet.Build.Packaging" Version="0.2.2" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\src\SQLite.cs">
Expand Down
2 changes: 2 additions & 0 deletions nuget/SQLite-net/SQLite-net.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props" Condition="Exists('..\..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
Expand Down Expand Up @@ -76,4 +77,5 @@
<Target Name="AfterBuild">
</Target>
-->
<Import Project="..\..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets" Condition="Exists('..\..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets')" />
</Project>
1 change: 1 addition & 0 deletions nuget/SQLite-net/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NuGet.Build.Packaging" version="0.2.2" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
<package id="SQLitePCLRaw.bundle_green" version="1.1.11" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="SQLitePCLRaw.core" version="1.1.11" targetFramework="portable45-net45+win8+wp8+wpa81" />
</packages>