diff --git a/.gitignore b/.gitignore index 9e1e0b667cd..d934bf15513 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ CommonAssemblyInfo.cs lib/sqlite/System.Data.SQLite.dll *.orig Samples/DataBus/storage +packages diff --git a/build-net3.5.bat b/build-net3.5.bat index e787c567018..94600882a39 100644 --- a/build-net3.5.bat +++ b/build-net3.5.bat @@ -1 +1,3 @@ +.\tools\nuget\nuget.exe install packages.config -o packages + .\tools\nant\nant.exe -D:targetframework=net-3.5 \ No newline at end of file diff --git a/build.bat b/build.bat index fbb3ae46da9..9f0f664baf1 100644 --- a/build.bat +++ b/build.bat @@ -1 +1,3 @@ +.\tools\nuget\nuget.exe install packages.config -o packages + .\tools\nant\nant %1 diff --git a/packages.config b/packages.config new file mode 100644 index 00000000000..953b1139a05 --- /dev/null +++ b/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/tools/NuGet/NuGet.exe b/tools/NuGet/NuGet.exe new file mode 100644 index 00000000000..de65e22cbb4 Binary files /dev/null and b/tools/NuGet/NuGet.exe differ