-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathazure-cost-cli.csproj
More file actions
59 lines (53 loc) · 2.42 KB
/
azure-cost-cli.csproj
File metadata and controls
59 lines (53 loc) · 2.42 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
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>AzureCostCli</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>default</LangVersion>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<ToolCommandName>azure-cost</ToolCommandName>
<Title>Azure Cost CLI</Title>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageId>azure-cost-cli</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>0.4.0</Version>
<Authors>Michiel van Oudheusden</Authors>
<Description>Command line tool to get Azure cost information</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/mivano/azure-cost-cli/</PackageProjectUrl>
<RepositoryUrl>https://github.com/mivano/azure-cost-cli/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>azure;cost;cli</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.14.2" />
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="JmesPath.Net" Version="1.0.330" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.7" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Polly" Version="8.6.2" />
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
<PackageReference Include="Spectre.Console" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.50.0" />
<PackageReference Include="Spectre.Console.Json" Version="0.50.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="nupkg\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="nupkg\**" />
</ItemGroup>
<ItemGroup>
<None Remove="nupkg\**" />
<None Include=".\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>