This repository was archived by the owner on Jun 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
109 lines (92 loc) · 4.43 KB
/
Copy pathDirectory.Build.props
File metadata and controls
109 lines (92 loc) · 4.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Project>
<PropertyGroup>
<!-- Version du projet -->
<InformationalVersion>1.0.0-Alpha</InformationalVersion>
<!--
Utiliser la commande `-[Nouveaux]-` pour ajouter une nouvelle entrée.
Exemple: -[Nouveaux]-2025, NomDuContributeur - Copyright.-[Nouveaux]-2025 - NomDuGroupe, Copyright.
-->
<ContributorAndCopyright></ContributorAndCopyright>
<!-- Compilation -->
<ImplicitUsings>disable</ImplicitUsings>
<RuntimeIdentifiers>win;win-x64;win-x86;win-arm;win-arm64;linux;linux-x64;linux-x86;linux-arm;linux-arm64;osx;osx-x64</RuntimeIdentifiers>
<Platforms>AnyCPU;x64;x86;arm;arm64</Platforms>
<!--<BaseOutputPath>..\..\..\Build</BaseOutputPath>-->
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<!-- Fichier Compiler -->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<GenerateDependencyFile>false</GenerateDependencyFile>
<!--<GenerateRuntimeConfigurationFiles>false</GenerateRuntimeConfigurationFiles>-->
<ConcurrentGarbageCollection>false</ConcurrentGarbageCollection>
<PreserveCompilationContext>false</PreserveCompilationContext>
<!-- Publish -->
<!--
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
-->
<!--
[FR] Ne pas supprimer ou modifier
[EN] Do not delete or modify
-->
<!-- Information -->
<Authors>⋞Galactic-Shrine⋟</Authors>
<CopyrightDate>2023 - 2025</CopyrightDate>
<Product>.NET</Product>
<Copyright>© $(CopyrightDate), $(Authors) - All rights reserved.$(ContributorAndCopyright.Replace("-[Nouveaux]-", " © "))</Copyright>
<!-- Frameworks -->
<Frameworks>net8.0</Frameworks>
<FrameworksSystem>net8.0-windows</FrameworksSystem>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DebugType>embedded</DebugType>
<ShouldCreateLogs>True</ShouldCreateLogs>
<AdvancedSettingsExpanded>False</AdvancedSettingsExpanded>
<UpdateAssemblyVersion>True</UpdateAssemblyVersion>
<UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<AssemblyVersionSettings>None.None.None.Increment</AssemblyVersionSettings>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<NoWarn>0618;1591;1573;1701;1702;1816;8600;8601;8603;8604;8618;8625;8765;8767;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>embedded</DebugType>
<ShouldCreateLogs>True</ShouldCreateLogs>
<AdvancedSettingsExpanded>False</AdvancedSettingsExpanded>
<UpdateAssemblyVersion>True</UpdateAssemblyVersion>
<UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<AssemblyVersionSettings>None.None.None.None</AssemblyVersionSettings>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<NoWarn>0618;1591;1573;1701;1702;1816;8600;8601;8603;8604;8618;8625;8765;8767;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
</Project>