1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
43 <PropertyGroup >
5- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7- <ProjectGuid >{FA27327B-BCCC-46C7-8EED-BBD1ECF4BF53}</ProjectGuid >
8- <OutputType >Library</OutputType >
9- <AppDesignerFolder >Properties</AppDesignerFolder >
10- <RootNamespace >F23.StringSimilarity</RootNamespace >
11- <AssemblyName >F23.StringSimilarity</AssemblyName >
12- <TargetFrameworkVersion >v4.5</TargetFrameworkVersion >
13- <FileAlignment >512</FileAlignment >
4+ <TargetFramework >netstandard1.0</TargetFramework >
5+ <PackageId >F23.StringSimilarity</PackageId >
6+ <PackageVersion >3.0.0</PackageVersion >
7+ <Title >StringSimilarity.NET</Title >
8+ <Authors >James Blair, Paul Irwin</Authors >
9+ <Copyright >Copyright 2016 feature[23]</Copyright >
10+ <Description >A .NET port of java-string-similarity.</Description >
11+ <Summary >A .NET port of java-string-similarity (https://github.com/tdebatty/java-string-similarity). A library implementing different string similarity and distance measures. Several algorithms (including Levenshtein edit distance and sibblings, Jaro-Winkler, Longest Common Subsequence, cosine similarity etc.) are currently implemented.</Summary >
12+ <PackageProjectUrl >https://github.com/feature23/StringSimilarity.NET</PackageProjectUrl >
13+ <PackageLicenseUrl >https://raw.githubusercontent.com/feature23/StringSimilarity.NET/master/LICENSE</PackageLicenseUrl >
14+ <PackageIconUrl >https://raw.githubusercontent.com/feature23/StringSimilarity.NET/master/logo.png</PackageIconUrl >
15+ <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
16+ <PackageTags >string similarity distance cosine damerau jaccard jaro-winkler levenshtein ngram qgram shingle sift4</PackageTags >
1417 </PropertyGroup >
15- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
16- <DebugSymbols >true</DebugSymbols >
17- <DebugType >full</DebugType >
18- <Optimize >false</Optimize >
19- <OutputPath >bin\Debug\</OutputPath >
20- <DefineConstants >DEBUG;TRACE</DefineConstants >
21- <ErrorReport >prompt</ErrorReport >
22- <WarningLevel >4</WarningLevel >
18+
19+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
20+ <DocumentationFile >bin\Release\netstandard1.0\F23.StringSimilarity.xml</DocumentationFile >
2321 </PropertyGroup >
24- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
25- <DebugType >pdbonly</DebugType >
26- <Optimize >true</Optimize >
27- <OutputPath >bin\Release\</OutputPath >
28- <DefineConstants >TRACE</DefineConstants >
29- <ErrorReport >prompt</ErrorReport >
30- <WarningLevel >4</WarningLevel >
31- </PropertyGroup >
32- <ItemGroup >
33- <Reference Include =" System" />
34- <Reference Include =" System.Core" />
35- <Reference Include =" System.Xml.Linq" />
36- <Reference Include =" System.Data.DataSetExtensions" />
37- <Reference Include =" Microsoft.CSharp" />
38- <Reference Include =" System.Data" />
39- <Reference Include =" System.Net.Http" />
40- <Reference Include =" System.Xml" />
41- </ItemGroup >
42- <ItemGroup >
43- <Compile Include =" Cosine.cs" />
44- <Compile Include =" Damerau.cs" />
45- <Compile Include =" Experimental\Sift4.cs" />
46- <Compile Include =" ICharacterSubstitution.cs" />
47- <Compile Include =" Interfaces\IMetricStringDistance.cs" />
48- <Compile Include =" Interfaces\INormalizedStringDistance.cs" />
49- <Compile Include =" Interfaces\INormalizedStringSimilarity.cs" />
50- <Compile Include =" Interfaces\IStringDistance.cs" />
51- <Compile Include =" Interfaces\IStringSimilarity.cs" />
52- <Compile Include =" Jaccard.cs" />
53- <Compile Include =" JaroWinkler.cs" />
54- <Compile Include =" Levenshtein.cs" />
55- <Compile Include =" LongestCommonSubsequence.cs" />
56- <Compile Include =" MetricLCS.cs" />
57- <Compile Include =" NGram.cs" />
58- <Compile Include =" NormalizedLevenshtein.cs" />
59- <Compile Include =" OptimalStringAlignment.cs" />
60- <Compile Include =" Properties\AssemblyInfo.cs" />
61- <Compile Include =" QGram.cs" />
62- <Compile Include =" ShingleBased.cs" />
63- <Compile Include =" SorensenDice.cs" />
64- <Compile Include =" Support\ArrayExtensions.cs" />
65- <Compile Include =" Utils\SparseBooleanVector.cs" />
66- <Compile Include =" Utils\SparseIntegerVector.cs" />
67- <Compile Include =" WeightedLevenshtein.cs" />
68- </ItemGroup >
69- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
70- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
71- Other similar extension points exist, see Microsoft.Common.targets.
72- <Target Name="BeforeBuild">
73- </Target>
74- <Target Name="AfterBuild">
75- </Target>
76- -->
77- </Project >
22+
23+ </Project >
0 commit comments