-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCommandLineSwitchPipe.csproj
More file actions
49 lines (44 loc) · 1.6 KB
/
CommandLineSwitchPipe.csproj
File metadata and controls
49 lines (44 loc) · 1.6 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>disable</Nullable>
<Title>CommandLineSwitchPipe</Title>
<Description>Communicates command-line arguments to a running background process</Description>
<PackageProjectUrl>https://github.com/MV10/CommandLineSwitchPipe/</PackageProjectUrl>
<PackageIcon></PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/MV10/CommandLineSwitchPipe/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>services;switches;arguments</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>CommandLineSwitchPipe</PackageId>
<Version>2.0.1</Version>
<Authors>Jon McGuire</Authors>
<Product>CommandLineSwitchPipe</Product>
<Company>Mindmagma</Company>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<LangVersion>latest</LangVersion>
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="demo\**" />
<Compile Remove="tcpargs\**" />
<EmbeddedResource Remove="demo\**" />
<EmbeddedResource Remove="tcpargs\**" />
<None Remove="demo\**" />
<None Remove="tcpargs\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>