-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFile.csproj
More file actions
44 lines (36 loc) · 2.03 KB
/
File.csproj
File metadata and controls
44 lines (36 loc) · 2.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A dotnet global tool for downloading and updating loose files from arbitrary URLs.</Description>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RollForward>Major</RollForward>
<LangVersion>Latest</LangVersion>
<AssemblyName>file</AssemblyName>
<RootNamespace>Devlooped</RootNamespace>
<PackageId>dotnet-file</PackageId>
<ToolCommandName>dotnet-file</ToolCommandName>
<PackAsTool>true</PackAsTool>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Devlooped.CredentialManager" Version="2.7.0" Aliases="Devlooped" />
<PackageReference Include="NuGetizer" Version="1.4.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="ThisAssembly" Version="2.1.2" />
<PackageReference Include="ColoredConsole" Version="1.0.0" />
<PackageReference Include="Spectre.Console" Version="0.54.0" />
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
<PackageReference Include="DotNetConfig" Version="1.2.0" />
<PackageReference Include="git-credential-manager" Version="2.8.0" IncludeAssets="tools" GeneratePathProperty="true" />
</ItemGroup>
<ItemGroup Condition="'$(Pkggit-credential-manager)' != ''">
<Reference Include="Atlassian.Bitbucket" HintPath="$(Pkggit-credential-manager)\tools\net8.0\any\Atlassian.Bitbucket.dll" />
<Reference Include="Microsoft.AzureRepos" HintPath="$(Pkggit-credential-manager)\tools\net8.0\any\Microsoft.AzureRepos.dll" />
<Reference Include="GitHub" HintPath="$(Pkggit-credential-manager)\tools\net8.0\any\GitHub.dll" />
<Reference Include="GitLab" HintPath="$(Pkggit-credential-manager)\tools\net8.0\any\GitLab.dll" />
<Reference Include="gcmcore" HintPath="$(Pkggit-credential-manager)\tools\net8.0\any\gcmcore.dll" />
</ItemGroup>
<ItemGroup>
<None Update="Help.txt" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>