-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzureSearchDocuments.csproj
34 lines (28 loc) · 1.1 KB
/
AzureSearchDocuments.csproj
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
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TypeScriptToolsVersion>3.0</TypeScriptToolsVersion>
<UserSecretsId>631dd6b0-a36a-4109-95d7-af6f0ab8a414</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Content Include="GetDocuments.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Home\" />
<Folder Include="wwwroot\lib\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\css\colors.css" />
<None Include="wwwroot\css\letters.css" />
<None Include="wwwroot\css\site.css" />
<None Include="wwwroot\js\site.js" />
<None Include="wwwroot\Search.html" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="bootstrap" Version="4.1.3" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Azure.Search" Version="6.0.0-preview" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.1" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
</ItemGroup>
</Project>