Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
DanHarltey committed Nov 27, 2024
1 parent a3f1f71 commit 9097806
Showing 2 changed files with 9 additions and 58 deletions.
4 changes: 2 additions & 2 deletions Fastenshtein.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30523.141
# Visual Studio Version 17
VisualStudioVersion = 17.12.35521.163 d17.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{BF8EDB96-7FBA-4D96-A4C6-9C4C8AA8DEF4}"
EndProject
63 changes: 7 additions & 56 deletions src/Fastenshtein/Fastenshtein.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard1.0;netstandard2.0;net452;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net452;net8.0;net9.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>

@@ -14,9 +14,9 @@
<PackageProjectUrl>https://github.com/DanHarltey/Fastenshtein</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DanHarltey/Fastenshtein</RepositoryUrl>
<AssemblyVersion>1.0.10</AssemblyVersion>
<FileVersion>1.0.10</FileVersion>
<Version>1.0.10</Version>
<AssemblyVersion>1.0.11</AssemblyVersion>
<FileVersion>1.0.11</FileVersion>
<Version>1.0.11</Version>
<PackageReleaseNotes>Performance improvement in the DistanceFrom method.</PackageReleaseNotes>
<PackageTags>Levenshtein Distance;String;Fuzzy Matching;Search;netstandard;</PackageTags>
<PackageReadmeFile>nuget-readme.md</PackageReadmeFile>
@@ -41,7 +41,7 @@
</PackageReference>
</ItemGroup>

<PropertyGroup>
<PropertyGroup>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>True</PublishRepositoryUrl>

@@ -58,59 +58,10 @@
<Nullable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.0|AnyCPU'">
<PropertyGroup>
<WarningsAsErrors></WarningsAsErrors>
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.0|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
<WarningsNotAsErrors></WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<WarningsNotAsErrors>NU1903</WarningsNotAsErrors>
</PropertyGroup>

<PropertyGroup>
<!-- Disable "Targeting .NET Standard prior to 2.0 is no longer recommended." warning -->
<NoWarn>$(NoWarn);NETSDK1215</NoWarn>
</PropertyGroup>


</Project>

0 comments on commit 9097806

Please sign in to comment.