-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSymSpellAPI.csproj
More file actions
29 lines (25 loc) · 1.08 KB
/
SymSpellAPI.csproj
File metadata and controls
29 lines (25 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
<PackageReference Include="SymSpell" Version="6.3.0" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\..\.nuget\packages\symspell\6.3.0\contentFiles\any\netstandard2.0\frequency_dictionary_en_82_765.txt" Condition="Exists('$(NuGetPackageRoot)symspell/6.3.0/contentFiles/any/netstandard2.0/frequency_dictionary_en_82_765.txt')">
<NuGetPackageId>SymSpell</NuGetPackageId>
<NuGetPackageVersion>6.3.0</NuGetPackageVersion>
<NuGetItemType>Content</NuGetItemType>
<Private>False</Private>
<Link>frequency_dictionary_en_82_765.txt</Link>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Remove="Controllers\SpellCheckController.cs" />
</ItemGroup>
</Project>