-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Should fix #18, PInvokes switched to cswin32, updated .NET version
- Loading branch information
1 parent
9ca6412
commit bc72ea7
Showing
12 changed files
with
268 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,57 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net472</TargetFrameworks> | ||
<Authors>Sebastian Solnica</Authors> | ||
<Company>Sebastian Solnica (lowleveldesign.org)</Company> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net48</TargetFrameworks> | ||
<Authors>Sebastian Solnica</Authors> | ||
<Company>Sebastian Solnica (wtrace.net)</Company> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<NoWarn>9,3391</NoWarn> <!-- 9: unsafe code, 3391: implicit convertions in lets --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="Commons\CommandLine.fs" /> | ||
<Compile Include="Commons\ResultBuilder.fs" /> | ||
<Compile Include="Commons\Globals.fs" /> | ||
<Compile Include="Commons\WinApi.fs" /> | ||
<Compile Include="Commons\Events.fs" /> | ||
<Compile Include="Events\Commons.fs" /> | ||
<Compile Include="Events\Image.fs" /> | ||
<Compile Include="Events\ProcessThread.fs" /> | ||
<Compile Include="Events\FileIO.fs" /> | ||
<Compile Include="Events\Registry.fs" /> | ||
<Compile Include="Events\IsrDpc.fs" /> | ||
<Compile Include="Events\Rpc.fs" /> | ||
<Compile Include="Events\TcpIp.fs" /> | ||
<Compile Include="Events\UdpIp.fs" /> | ||
<Compile Include="Tracing\Commons.fs" /> | ||
<Compile Include="Tracing\EtwTraceSession.fs" /> | ||
<Compile Include="Tracing\EventFilter.fs" /> | ||
<Compile Include="Processing\TraceState.fs" /> | ||
<Compile Include="Processing\RpcResolver.fs" /> | ||
<Compile Include="Processing\SystemImages.fs" /> | ||
<Compile Include="Processing\ProcessTree.fs" /> | ||
<Compile Include="Processing\TraceEventProcessor.fs" /> | ||
<Compile Include="TraceCounters.fs" /> | ||
<Compile Include="TraceSummary.fs" /> | ||
<Compile Include="TraceControl.fs" /> | ||
<Compile Include="Program.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Commons\CommandLine.fs" /> | ||
<Compile Include="Commons\ResultBuilder.fs" /> | ||
<Compile Include="Commons\Globals.fs" /> | ||
<Compile Include="Commons\WinApi.fs" /> | ||
<Compile Include="Commons\Events.fs" /> | ||
<Compile Include="Events\Commons.fs" /> | ||
<Compile Include="Events\Image.fs" /> | ||
<Compile Include="Events\ProcessThread.fs" /> | ||
<Compile Include="Events\FileIO.fs" /> | ||
<Compile Include="Events\Registry.fs" /> | ||
<Compile Include="Events\IsrDpc.fs" /> | ||
<Compile Include="Events\Rpc.fs" /> | ||
<Compile Include="Events\TcpIp.fs" /> | ||
<Compile Include="Events\UdpIp.fs" /> | ||
<Compile Include="Tracing\Commons.fs" /> | ||
<Compile Include="Tracing\EtwTraceSession.fs" /> | ||
<Compile Include="Tracing\EventFilter.fs" /> | ||
<Compile Include="Processing\TraceState.fs" /> | ||
<Compile Include="Processing\RpcResolver.fs" /> | ||
<Compile Include="Processing\SystemImages.fs" /> | ||
<Compile Include="Processing\ProcessTree.fs" /> | ||
<Compile Include="Processing\TraceEventProcessor.fs" /> | ||
<Compile Include="TraceCounters.fs" /> | ||
<Compile Include="TraceSummary.fs" /> | ||
<Compile Include="TraceControl.fs" /> | ||
<Compile Include="Program.fs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FSharp.Control.Reactive" Version="5.0.5" /> | ||
<PackageReference Include="NtApiDotNet" Version="1.1.33" /> | ||
<PackageReference Include="PInvoke.Kernel32" Version="0.7.124" /> | ||
<PackageReference Include="System.Reactive" Version="5.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Control.Reactive" Version="5.0.5" /> | ||
<PackageReference Include="NtApiDotNet" Version="1.1.33" /> | ||
<PackageReference Include="System.Memory" Version="4.5.5" /> | ||
<PackageReference Include="System.Reactive" Version="5.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\wtrace.imports\wtrace.imports.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\wtrace.imports\wtrace.imports.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="FSharp.Core" Version="6.0.5" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Update="FSharp.Core" Version="8.0.101" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net472</TargetFrameworks> | ||
<OutputPath>..\bin\deps</OutputPath> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net48</TargetFrameworks> | ||
<OutputPath>..\bin\deps</OutputPath> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<LangVersion>9.0</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\wtrace.cmd\wtrace.cmd.fsproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\wtrace.cmd\wtrace.cmd.fsproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$schema": "https://aka.ms/CsWin32.schema.json", | ||
"emitSingleFile": false, | ||
"public": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// methods | ||
CreateProcess | ||
OpenProcess | ||
ResumeThread | ||
WaitForSingleObject | ||
DebugActiveProcessStop | ||
|
||
// structures | ||
|
||
// consts | ||
STATUS_WAIT_1 | ||
WAIT_EVENT | ||
|
||
INVALID_HANDLE_VALUE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net472</TargetFrameworks> | ||
<RootNamespace>LowLevelDesign.WTrace</RootNamespace> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net48</TargetFrameworks> | ||
<RootNamespace>LowLevelDesign.WTrace</RootNamespace> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<LangVersion>9.0</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.0.4" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.1.7" /> | ||
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.49-beta"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.