-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpwsh-prompt.csproj
More file actions
40 lines (34 loc) · 1.92 KB
/
Copy pathpwsh-prompt.csproj
File metadata and controls
40 lines (34 loc) · 1.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<!-- <PublishSingleFile>false</PublishSingleFile> -->
<!-- <PublishReadyToRun>false</PublishReadyToRun> -->
<PublishTrimmed>true</PublishTrimmed>
<PublishAot>true</PublishAot>
<!-- AOT size optimization options -->
<!-- https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options?pivots=dotnet-7-0#trimming-framework-library-features -->
<OptimizationPreference>Speed</OptimizationPreference>
<DebuggerSupport>false</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<UseNativeHttpHandler>true</UseNativeHttpHandler>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<!-- allow analyzing final output size -->
<!-- <IlcGenerateMstatFile>true</IlcGenerateMstatFile> -->
<!-- <IlcGenerateDgmlFile>true</IlcGenerateDgmlFile> -->
<!-- <TrimmerSingleWarn>false</TrimmerSingleWarn> -->
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Diagnostics" Version="8.2.0" />
<PackageReference Include="Microsoft.Extensions.Primitives" Version="10.0.0" />
<PackageReference Include="Spectre.Console" Version="0.54.0" />
<PackageReference Include="Spectre.Console.Analyzer" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>