-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPowerPointGenerator.csproj
More file actions
35 lines (29 loc) · 975 Bytes
/
Copy pathPowerPointGenerator.csproj
File metadata and controls
35 lines (29 loc) · 975 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
<PackageReference Include="System.Drawing.Common" Version="9.0.7" />
</ItemGroup>
<!-- Exclude Web API related files from console app build -->
<ItemGroup>
<Compile Remove="Controllers\**" />
<Compile Remove="WebAPI\**" />
<Compile Remove="Client\**" />
<Compile Remove="Examples\ApiClientExample.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Controllers\**" />
<EmbeddedResource Remove="WebAPI\**" />
<EmbeddedResource Remove="Client\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Controllers\**" />
<None Remove="WebAPI\**" />
<None Remove="Client\**" />
</ItemGroup>
</Project>