-
Notifications
You must be signed in to change notification settings - Fork 16
/
StripeEventsCheckout.Tools.csproj
41 lines (38 loc) · 1.81 KB
/
StripeEventsCheckout.Tools.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
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Local Stripe CLI utilities</Description>
<Authors>Cecil L. Phillip</Authors>
<Product>dotnet-striped</Product>
<Copyright>Copyright © Cecil phillip</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>StripeEventsCheckout.Tools</RootNamespace>
<Version>0.1.0</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<IsPackable>true</IsPackable>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageDescription>Local Stripe CLI utilities!</PackageDescription>
<RepositoryUrl>https://github.com/cecilphillip-stripe/stripe-checkout-events-sample</RepositoryUrl>
<PackageId>dotnet-striped-tool</PackageId>
<ToolCommandName>dotnet-striped</ToolCommandName>
<AssemblyName>dotnet-striped</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNetEnv" Version="2.3.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="4.2.0" />
<PackageReference Include="Spectre.Console" Version="0.44.0" />
<PackageReference Include="Stripe.net" Version="39.107.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.CommandLine.Hosting" Version="0.4.0-alpha.22114.1" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
</ItemGroup>
</Project>