-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path205-dotnet-extract-text-from-docs.csproj
36 lines (32 loc) · 1.19 KB
/
205-dotnet-extract-text-from-docs.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
35
36
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);KMEXP00;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\service\Core\Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="msexcelfile.xlsx" />
<Content Include="msexcelfile.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="mspowerpointfile.pptx" />
<Content Include="mspowerpointfile.pptx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="mswordfile.docx" />
<Content Include="mswordfile.docx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file1.pdf" />
<Content Include="file1.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file2.pdf" />
<Content Include="file2.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>