-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNugs.csproj
29 lines (23 loc) · 1.11 KB
/
Nugs.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>nugs</ToolCommandName>
</PropertyGroup>
<PropertyGroup>
<Product>Nugs</Product>
<PackageVersion Condition="'$(PackageVersion)' == ''">0.1.0-preview1</PackageVersion>
<PackageProjectUrl>https://github.com/loic-sharma/nugs</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.githubusercontent.com/NuGet/Media/master/Images/MainLogo/256x256/nuget_256.png</PackageIconUrl>
<PackageTags>NuGet</PackageTags>
<Description>A .NET tool to search and install NuGet packages.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BaGet.Protocol" Version="0.3.0-preview3" />
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.20154.7" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20253.1" />
<PackageReference Include="Terminal.Gui" Version="0.81.0" />
</ItemGroup>
</Project>