-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitBackup.csproj
More file actions
28 lines (24 loc) · 1.25 KB
/
Copy pathGitBackup.csproj
File metadata and controls
28 lines (24 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Memory footprint: this is a long-running, I/O-bound batch backup, so favor a small heap over
raw throughput. Workstation GC (non-concurrent) keeps far less committed memory than the
server GC; dropping dynamic PGO removes its instrumentation overhead; and invariant
globalization avoids loading ICU (the whole app already normalizes with invariant culture). -->
<ServerGarbageCollection>false</ServerGarbageCollection>
<ConcurrentGarbageCollection>false</ConcurrentGarbageCollection>
<TieredPGO>false</TieredPGO>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cronos" Version="0.11.1" />
<PackageReference Include="Genbox.SimpleS3.GenericS3" Version="3.2.11" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="YamlDotNet" Version="16.2.0" />
</ItemGroup>
</Project>