-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdutil2.csproj
More file actions
33 lines (28 loc) · 1.14 KB
/
pdutil2.csproj
File metadata and controls
33 lines (28 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<Trimming>full</Trimming>
<PlatformTarget>AnyCPU</PlatformTarget>
<PublishTrimmed>False</PublishTrimmed>
<AnalysisLevel>6.0-all</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
<WarningLevel>9999</WarningLevel>
<NoWarn>1701;1702;CA1303</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<WarningLevel>9999</WarningLevel>
<NoWarn>1701;1702;CA1303</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="8.0.22" />
<PackageReference Include="System.IO.Hashing" Version="9.0.10" />
<PackageReference Include="System.IO.Ports" Version="9.0.10" />
</ItemGroup>
</Project>