-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWhoisNET.Client.csproj
More file actions
39 lines (35 loc) · 1.27 KB
/
WhoisNET.Client.csproj
File metadata and controls
39 lines (35 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>True</PublishAot>
<PublishTrimmed>True</PublishTrimmed>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>Whois</Title>
<Authors>whois</Authors>
<Company>Thomas Mack</Company>
<Description>Lightweight whois command line client for Windows, Linux, and macOS. </Description>
<Copyright>©2024 Thomas Mack</Copyright>
<PackageProjectUrl>https://github.com/mackcoding/WhoisNET/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/mackcoding/WhoisNET/</RepositoryUrl>
<PackageTags>whois</PackageTags>
<PackageLicenseFile>license.md</PackageLicenseFile>
<AssemblyName>whois</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\license.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WhoisNET\WhoisNET.csproj" />
</ItemGroup>
</Project>