+ The analyzer requires a connection string that points to the database you are developing against. You can configure this connection string by either creating a file called NPGSQL_FSHARP
(without extension) somewhere next to your F# project or preferably in the root of your workspace. This file should contain that connection string and nothing else. An example of the contents of such file:
+
+Host=localhost; Username=postgres; Password=postgres; Database=databaseName ++
+ Remember to add an entry in your .gitingore file to make sure you don't commit the connection string to your source version control system +
++ Another way to configure the connection string is by setting the value of an environment variable named NPGSQL_FSHARP that contains the connection string. + + The analyzer will try to locate and read the file first, then falls back to using the environment variable. +
diff --git a/src/AnalyzerVs/Resources/License.txt b/src/AnalyzerVs/Resources/License.txt index 7844c89..011837c 100644 --- a/src/AnalyzerVs/Resources/License.txt +++ b/src/AnalyzerVs/Resources/License.txt @@ -1,8 +1,9 @@ -Copyright 2020 Asti +MIT LICENSE + +Copyright 2020 Zaid Ajaj Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/src/AnalyzerVs/Resources/ReleaseNotes.html b/src/AnalyzerVs/Resources/ReleaseNotes.html index a6a8764..221f5b4 100644 Binary files a/src/AnalyzerVs/Resources/ReleaseNotes.html and b/src/AnalyzerVs/Resources/ReleaseNotes.html differ diff --git a/src/AnalyzerVs/paket.references b/src/AnalyzerVs/paket.references deleted file mode 100644 index 0a1dca0..0000000 --- a/src/AnalyzerVs/paket.references +++ /dev/null @@ -1,2 +0,0 @@ -FSharp.Compiler.Service -FSharp.Core diff --git a/src/AnalyzerVs/source.extension.vsixmanifest b/src/AnalyzerVs/source.extension.vsixmanifest index 64772bc..2585756 100644 --- a/src/AnalyzerVs/source.extension.vsixmanifest +++ b/src/AnalyzerVs/source.extension.vsixmanifest @@ -1,15 +1,16 @@