Skip to content

Commit c56448d

Browse files
committed
does hex?
1 parent 05f1190 commit c56448d

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ EXEC sp_configure 'clr strict security', 0;
4646
RECONFIGURE;
4747
```
4848

49-
3. Place the Fastenshtein.dll on the same computer as the SQL Server instance in a directory that the SQL Server instance has access to. You must use the .Net framework version 4.5.2 of Fastenshtein. To create the assembly (dll) either:
49+
3. Place the Fastenshtein.dll on the same computer as the SQL Server instance in a directory that the SQL Server instance has access to. You must use the .Net framework version 4.6.2 of Fastenshtein. To create the assembly (dll) either:
5050

5151
* Compile the project “Fastenshtein” in Release config in Visual Studio.
5252

5353
OR
5454

55-
* Download the pre-compiled dll from [nuget](https://www.nuget.org/api/v2/package/Fastenshtein/) unzip the package and use the dll in \lib\net452 folder.
55+
* Download the pre-compiled dll from [nuget](https://www.nuget.org/api/v2/package/Fastenshtein/) unzip the package and use the dll in \lib\net462 folder.
5656

5757
4. Create the assembly
5858
```sql

scripts/dotnet_build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ fi
2626
dotnet pack ../ --configuration Release --no-build
2727

2828
cp ../src/Fastenshtein/bin/Release/Fastenshtein.*.nupkg ../release/Fastenshtein.nupkg
29-
cp ../src/Fastenshtein/bin/Release/Fastenshtein.*.snupkg ../release/Fastenshtein.snupkg
29+
cp ../src/Fastenshtein/bin/Release/Fastenshtein.*.snupkg ../release/Fastenshtein.snupkg
30+
31+
xxd -plain ../src/Fastenshtein/bin/Release/net462/Fastenshtein.dll > ../release/Fastenshtein_net462.hex

src/Fastenshtein/Fastenshtein.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<AssemblyVersion>1.0.11</AssemblyVersion>
1818
<FileVersion>1.0.11</FileVersion>
1919
<Version>1.0.11</Version>
20-
<PackageReleaseNotes>Performance improvement in the DistanceFrom method.</PackageReleaseNotes>
20+
<PackageReleaseNotes>Upgrading to .Net 9 &amp; Framework 4.6.2</PackageReleaseNotes>
2121
<PackageTags>Levenshtein Distance;String;Fuzzy Matching;Search;netstandard;</PackageTags>
2222
<PackageReadmeFile>nuget-readme.md</PackageReadmeFile>
2323
<GenerateDocumentationFile>True</GenerateDocumentationFile>

0 commit comments

Comments
 (0)