-
Notifications
You must be signed in to change notification settings - Fork 0
/
OneNoteSearcher.csproj
29 lines (26 loc) · 1.2 KB
/
OneNoteSearcher.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net481</TargetFramework>
<LangVersion>9.0</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU;x64</Platforms>
<PublishSingleFile>true</PublishSingleFile>
<AssemblyName>OneNoteSearcher</AssemblyName>
<AssemblyDescription>A lightweight backend service for searching OneNote pages</AssemblyDescription>
<Configurations>Debug;Release;Test</Configurations>
<StartupObject></StartupObject>
<Version>0.1.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="ScipBe.Common.Office.OneNote" Version="3.0.1" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
</Project>