-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathSystem.Net.IPNetwork.csproj
More file actions
55 lines (50 loc) · 2.69 KB
/
System.Net.IPNetwork.csproj
File metadata and controls
55 lines (50 loc) · 2.69 KB
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
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>IPNetwork2</PackageId>
<PackageVersion>4.0.0</PackageVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageProjectUrl>https://github.com/lduchosal/ipnetwork</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>https://github.com/lduchosal/ipnetwork/pulls?q=is%3Apr</PackageReleaseNotes>
<PackageTags>ipnetwork network ip ipv4 ipv6 netmask cidr subnet subnetting supernet supernetting calculation</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
<Title>IPNetwork utility classes for .Net</Title>
<Description>IPNetwork C# library take care of complex network, ip, ipv4, ipv6, netmask, cidr, subnet, subnetting, supernet and supernetting calculation for .Net developpers. It works with IPv4 and IPv6 as well. It is written in C# for .NetStandard and coreclr and has a light and clean API and is fully unit tested.</Description>
<PackageSummary>IPNetwork utility classes for .Net</PackageSummary>
<authors>Luc Dvchosal</authors>
<owners>Luc Dvchosal</owners>
<copyright>Copyright 2025</copyright>
<SignAssembly>True</SignAssembly>
<SignAssembly Condition=" '$(OS)' != 'Windows_NT' ">true</SignAssembly>
<AssemblyOriginatorKeyFile>System.Net.IPNetwork.snk</AssemblyOriginatorKeyFile>
<RepositoryUrl>https://github.com/lduchosal/ipnetwork.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RootNamespace>System.Net</RootNamespace>
<LangVersion>latestmajor</LangVersion>
<NoWarn>SA1010</NoWarn>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>5</WarningLevel>
<PackageIcon>ipnetwork.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\ipnetwork.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
<Link>ipnetwork.png</Link>
</None>
<None Include="..\..\LICENSE" Pack="true" PackagePath="." />
<None Include="..\..\README.md" Pack="true" PackagePath="." />
<None Include="..\..\DONATE.md" Pack="true" PackagePath="." />
<None Include="..\..\DONATE.jpg" Pack="true" PackagePath="." />
</ItemGroup>
</Project>