-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README.md with instructions for building on Non-Windows
- Loading branch information
1 parent
ee843a4
commit 7b82d18
Showing
1 changed file
with
11 additions
and
2 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 |
---|---|---|
|
@@ -33,6 +33,8 @@ This project is developed under Visual Studio 2017. Earlier versions of Visual S | |
Steps | ||
----- | ||
|
||
Prerequisites: Install dotnet, git, nuget, and mono (Only on Mac) | ||
|
||
1. Check out the source code from GitHub: | ||
```{r, engine='bash', code_block_name} | ||
git clone [email protected]:snowflakedb/snowflake-connector-net snowflake-connector-net | ||
|
@@ -44,9 +46,16 @@ cd snowflake-connector-net | |
nuget restore | ||
``` | ||
|
||
3. Build the solution file | ||
3. Build the solution file | ||
- To build the connector only: | ||
```{r, engine='bash', code_block_name} | ||
msbuild snowflake-connector-net.sln /p:Configuration=Release | ||
cd Snowflake.Data | ||
dotnet build --configuration Release | ||
``` | ||
- To build the connector and test project: | ||
``` | ||
Add a parameters.json file to Snowflake.Data.Tests | ||
dotnet build | ||
``` | ||
|
||
Installing the Package | ||
|