-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathAuthApp.csproj
More file actions
35 lines (32 loc) · 1.57 KB
/
AuthApp.csproj
File metadata and controls
35 lines (32 loc) · 1.57 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ToolCommandName>salesforce</ToolCommandName>
<PackageId>salesforce</PackageId>
<PackAsTool>True</PackAsTool>
</PropertyGroup>
<PropertyGroup>
<Description>A command-line tool that enables Salesforce Access and Refresh Tokens Generation.</Description>
<PackageTags>Salesforce refresh tokens, Salesforce access tokens, DotNetCore, AspNetCore, salesforce, OAuth Authentication Flow</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bet.Extensions.AzureVault" />
<PackageReference Include="Bet.Extensions.Hosting" />
<PackageReference Include="Bet.Extensions.Logging" />
<PackageReference Include="Bet.Extensions.Options" />
<PackageReference Include="Colorful.Console" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="TextCopy" />
<PackageReference Include="NetCoreForce.Client" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
<Content Include="hostsettings*.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>