-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinDMAManager.csproj
30 lines (24 loc) · 959 Bytes
/
WinDMAManager.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Platform>win-64</Platform>
<SupportedOSPlatform>windows</SupportedOSPlatform>
<AssemblyVersion>0.0.1</AssemblyVersion>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<EntryPointExe>Main</EntryPointExe>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<Target Name="ConfigureTrimming" BeforeTargets="PrepareForILLink">
<ItemGroup>
<!-- Descriptor for all classes that cannot be trimmed -->
<TrimmerRootDescriptor Include="NonTrimmableRoots.xml" />
</ItemGroup>
</Target>
</Project>