-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathM3Undle.Cli.csproj
More file actions
34 lines (29 loc) · 1.3 KB
/
M3Undle.Cli.csproj
File metadata and controls
34 lines (29 loc) · 1.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>bndl</AssemblyName>
<!-- Version properties now inherited from Directory.Build.props -->
<!-- Explicitly NOT self-contained during normal builds -->
<SelfContained>false</SelfContained>
</PropertyGroup>
<!-- Self-contained single-file publishing - ONLY when explicitly publishing -->
<PropertyGroup Condition="'$(PublishSingleFile)' == 'true'">
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<!-- Suppress IL2104 from YamlDotNet: We knowingly support YAML via reflection.
Users are informed via code attributes that JSON is the trim-compatible alternative. -->
<NoWarn>$(NoWarn);IL2104</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.55.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\M3Undle.Core\M3Undle.Core.csproj" />
</ItemGroup>
</Project>