-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from mattwar/nuget
Nuget
- Loading branch information
Showing
35 changed files
with
185 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.Access</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for MS Access</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for MS Access</description> | ||
<copyright /> | ||
<dependencies> | ||
<dependency id="IQToolkit.Common" version="1.0.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\Access\IQToolkit.Data.Access.dll" target="lib\net45\IQToolkit.Data.Access.dll" /> | ||
</files> | ||
</package> |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.Common</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for System.Data database providers</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for System.Data database providers (core API and shared libraries).</description> | ||
<summary></summary> | ||
<copyright /> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\IQToolkit\IQToolkit.Data.dll" target="lib\net45\IQToolkit.Data.dll" /> | ||
<file src="..\bin\Release\IQToolkit\IQToolkit.Data.XML" target="lib\net45\IQToolkit.Data.xml" /> | ||
<file src="..\bin\Release\IQToolkit\IQToolkit.dll" target="lib\net45\IQToolkit.dll" /> | ||
<file src="..\bin\Release\IQToolkit\IQToolkit.XML" target="lib\net45\IQToolkit.xml" /> | ||
</files> | ||
</package> |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.MySqlClient</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for MySql Client</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for MySql Client</description> | ||
<copyright /> | ||
<dependencies> | ||
<dependency id="IQToolkit.Common" version="1.0.0.0" /> | ||
<dependency id="MySql.Data" version="6.9.5" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\MySql\IQToolkit.Data.MySqlClient.dll" target="lib\net45\IQToolkit.Data.MySqlClient.dll" /> | ||
</files> | ||
</package> |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.SQLite</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for SQLite</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for SQLite (System.Data.SQLite)</description> | ||
<copyright /> | ||
<dependencies> | ||
<dependency id="IQToolkit.Common" version="1.0.0.0" /> | ||
<dependency id="System.Data.SQLite.Core" version="1.0.95.0"/> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\SQLite\IQToolkit.Data.SQLite.dll" target="lib\net45\IQToolkit.Data.SQLite.dll" /> | ||
</files> | ||
</package> |
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,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.SqlClient</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for MS SQL Server (SqlClient)</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for MS SQL Server (SqlClient)</description> | ||
<copyright /> | ||
<dependencies> | ||
<dependency id="IQToolkit.Common" version="1.0.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\SqlClient\IQToolkit.Data.SqlClient.dll" target="lib\net45\IQToolkit.Data.SqlClient.dll" /> | ||
</files> | ||
</package> |
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,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>IQToolkit.SqlServerCe</id> | ||
<version>1.0.0.0</version> | ||
<title>IQToolkit ORM for MS SQL Server Compact Edition</title> | ||
<authors>Matt Warren</authors> | ||
<owners>Matt Warren</owners> | ||
<projectUrl>https://github.com/mattwar/iqtoolkit</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>IQToolkit ORM for MS SQL Server Compact Edition (Microsoft.SqlServer.Compact)</description> | ||
<copyright /> | ||
<dependencies> | ||
<dependency id="IQToolkit.Common" version="1.0.0.0" /> | ||
<dependency id="Microsoft.SqlServer.Compact" version="4.0.8876.1"/> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\bin\Release\SqlServerCe\IQToolkit.Data.SqlServerCe.dll" target="lib\net45\IQToolkit.Data.SqlServerCe.dll" /> | ||
</files> | ||
</package> |
Binary file not shown.
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,7 @@ | ||
nuget pack IQToolkit.Common.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
nuget pack IQToolkit.Access.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
nuget pack IQToolkit.MySqlClient.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
nuget pack IQToolkit.SqlClient.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
nuget pack IQToolkit.SQLite.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
nuget pack IQToolkit.SqlServerCe.nuspec -OutputDirectory "..\bin\release\nupkgs" | ||
|
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
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
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
Oops, something went wrong.