-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathSharpPcap.csproj
42 lines (41 loc) · 1.93 KB
/
SharpPcap.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
<!--
Copyright 2005 Tamir Gal <[email protected]>
Copyright 2008-2009 Phillip Lemon <[email protected]>
Copyright 2008-2011 Chris Morgan <[email protected]>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<Version>6.3.0</Version>
<Description>A packet capture framework for .NET</Description>
<Authors>Tamir Gal, Chris Morgan and others</Authors>
<PackageProjectUrl>https://github.com/chmorgan/sharppcap</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/chmorgan/sharppcap</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Copyright>Tamir Gal, Chris Morgan and others</Copyright>
<Description>
SharpPcap is a cross-platform(Windows, Mac, Linux) packet capture framework for the .NET environment.
It provides an API for capturing, injecting, analyzing and building packets using any .NET language such as C# and VB.NET.
</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<LangVersion>7.3</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Deterministic>true</Deterministic>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PacketDotNet" Version="1.4.7" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>