-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathZPL2PDF.csproj
More file actions
47 lines (40 loc) · 1.51 KB
/
Copy pathZPL2PDF.csproj
File metadata and controls
47 lines (40 loc) · 1.51 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.1.3</Version>
<DocumentationFile>bin\Debug\net9.0\ZPL2PDF.xml</DocumentationFile>
<!-- Configura��es para self-contained builds -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<!-- Otimiza��es de build -->
<PublishTrimmed>false</PublishTrimmed>
<PublishAot>false</PublishAot>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BinaryKits.Zpl.Label" Version="3.3.1" />
<PackageReference Include="BinaryKits.Zpl.Viewer" Version="1.3.1" />
<PackageReference Include="PDFSharp" Version="6.2.4" />
</ItemGroup>
<PropertyGroup>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Messages.*.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
<EmbeddedResource Remove="tests\**" />
<None Remove="tests\**" />
</ItemGroup>
</Project>