File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
using System . Diagnostics ;
2
+ using System . Diagnostics . CodeAnalysis ;
2
3
3
4
namespace WineBridge . Commands ;
4
5
6
+ [ SuppressMessage ( "Interoperability" , "CA1416:Validate platform compatibility" ) ]
5
7
public class GetRunningProcs : ICommand
6
8
{
7
9
public void Execute ( string [ ] ? args )
@@ -11,7 +13,7 @@ public void Execute(string[]? args)
11
13
12
14
foreach ( var p in processes )
13
15
{
14
- output += $ "{ p . ProcessName } |{ p . Id } \n ";
16
+ output += $ "{ p . ProcessName } |{ p . Id } | { p . Threads . Count } \n ";
15
17
}
16
18
17
19
Console . WriteLine ( output ) ;
Original file line number Diff line number Diff line change 9
9
<Copyright >bottlesdevs 2022</Copyright >
10
10
<RepositoryUrl >https://github.com/bottlesdevs/winebridge</RepositoryUrl >
11
11
<RepositoryType >GIT</RepositoryType >
12
- <BuildNumber Condition =" '$(BuildNumber)' == '' " >19 </BuildNumber >
12
+ <BuildNumber Condition =" '$(BuildNumber)' == '' " >7 </BuildNumber >
13
13
<VersionSuffix Condition =" '$(Configuration)'=='Debug'" >-dev</VersionSuffix >
14
- <FileVersion >1.0 .0.$(BuildNumber)</FileVersion >
15
- <Version >1.0 .0$(VersionSuffix)</Version >
16
- <AssemblyVersion >1.0 .0</AssemblyVersion >
14
+ <FileVersion >1.1 .0.$(BuildNumber)</FileVersion >
15
+ <Version >1.1 .0$(VersionSuffix)</Version >
16
+ <AssemblyVersion >1.1 .0</AssemblyVersion >
17
17
<PublishTrimmed >true</PublishTrimmed >
18
18
<ImplicitUsings >enable</ImplicitUsings >
19
19
<Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments