-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHdiffBuilder.csproj
More file actions
41 lines (35 loc) · 1.43 KB
/
HdiffBuilder.csproj
File metadata and controls
41 lines (35 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>hdiffbuilder</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Version>1.0.6</Version>
<Copyright>GesthosNetwork © 2026 All rights reserved.</Copyright>
<Nullable>enable</Nullable>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>false</PublishTrimmed>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
</ItemGroup>
<Target Name="PostPublishCleanup" AfterTargets="Publish">
<ItemGroup>
<PublishedFiles Include="$(PublishDir)*.exe" />
<PdbFilesToDelete Include="$(ProjectDir)bin\*.pdb" />
</ItemGroup>
<Copy
SourceFiles="@(PublishedFiles)"
DestinationFolder="$(ProjectDir)bin\"
SkipUnchangedFiles="true"
OverwriteReadOnlyFiles="true" />
<Delete Files="@(PdbFilesToDelete)" />
<RemoveDir Directories="$(ProjectDir)obj;$(ProjectDir)bin\Release" />
</Target>
</Project>