-
Notifications
You must be signed in to change notification settings - Fork 0
/
etwlib.csproj
47 lines (42 loc) · 1.77 KB
/
etwlib.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Title>etwlib</Title>
<Authors>Aaron LeMasters</Authors>
<Description>etwlib is a .NET library that provides raw access to Microsoft Windows Event Tracing (ETW) infrastructure including providers, manifests, and event data. etwlib is meant to be the foundation for larger projects that leverage its capabilities and is distributed as a Nuget package.</Description>
<PackageProjectUrl>https://github.com/lilhoser/etwlib</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/lilhoser/etwlib</RepositoryUrl>
<PackageTags>microsoft;windows;etw;tracing;debugging</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0</FileVersion>
<Version>1.11.2</Version>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestResults\**" />
<Compile Remove="UnitTests\**" />
<EmbeddedResource Remove="TestResults\**" />
<EmbeddedResource Remove="UnitTests\**" />
<None Remove="TestResults\**" />
<None Remove="UnitTests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="symbolresolver" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>