-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConsole.csproj
More file actions
57 lines (50 loc) · 2.96 KB
/
Copy pathConsole.csproj
File metadata and controls
57 lines (50 loc) · 2.96 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>Preview</LangVersion>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<PackageId>dotnet-whatsapp</PackageId>
<Description>A WhatsApp simulator client that complements Devlooped.WhatsApp.</Description>
<ToolCommandName>whatsapp</ToolCommandName>
<PackageTags>dotnet-tool whatsapp</PackageTags>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<PackAsTool>true</PackAsTool>
<BuildDate>$([System.DateTime]::Now.ToString("yyyy-MM-dd"))</BuildDate>
<BuildRef>$(GITHUB_REF_NAME)</BuildRef>
<NoWarn>$(NoWarn);CS0436;CS9107</NoWarn>
<!-- CS9107: (primary ctor base() call): Parameter is captured into the state of the enclosing type and its value is also passed to the base constructor. The value might be captured by the base class as well. -->
<!-- Run app with -p:NoHelp=true to avoid the help generation which might conflict/error and prevent debugging -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Devlooped.JQSharp" Version="1.0.1" />
<PackageReference Include="DotNetConfig.Configuration" Version="1.2.0" />
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.76.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.5" />
<PackageReference Include="System.CommandLine" Version="2.0.8" />
<PackageReference Include="System.Formats.Asn1" Version="10.0.8" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
<PackageReference Include="Spectre.Console.Json" Version="0.55.2" />
<PackageReference Include="ThisAssembly.Git" Version="2.1.2" PrivateAssets="all" />
<PackageReference Include="ThisAssembly.Project" Version="2.1.2" PrivateAssets="all" />
<PackageReference Include="Devlooped.Extensions.DependencyInjection" Version="2.3.1" PrivateAssets="all" />
<PackageReference Include="NuGet.Protocol" Version="7.3.1" />
<!-- Disable nugetizer for now due to https://github.com/dotnet/sdk/pull/49288 breaking it -->
<!--<PackageReference Include="NuGetizer" Version="1.3.0" PrivateAssets="all" />-->
<PackageReference Include="DotNetConfig" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectProperty Include="ToolCommandName" />
<ProjectProperty Include="BuildDate" />
<ProjectProperty Include="BuildRef" />
<ProjectProperty Include="PackageId" />
<ProjectProperty Include="PackageVersion" />
<ProjectProperty Include="SLEET_FEED_URL" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WhatsApp\WhatsApp.csproj" />
</ItemGroup>
</Project>