-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkillall.csproj
More file actions
28 lines (24 loc) · 882 Bytes
/
killall.csproj
File metadata and controls
28 lines (24 loc) · 882 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>12</LangVersion>
<RootNamespace>Killall</RootNamespace>
<AssemblyName>killall</AssemblyName>
<Version>1.0.1</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<TrimMode>partial</TrimMode>
<InvariantGlobalization>false</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="System.Management" />
</ItemGroup>
</Project>