-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
68 lines (61 loc) · 2.89 KB
/
Directory.Build.props
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
<Project>
<!-- Build stuff -->
<PropertyGroup>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DebugType>embedded</DebugType>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug' OR '$(Configuration)'=='Docker-debug'">
<DefineConstants>DEBUG;DOCKER_DEBUG</DefineConstants>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release' OR '$(Configuration)'=='Docker'">
<DefineConstants>RELEASE;DOCKER</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<!-- Development stuff -->
<PropertyGroup>
<AnalysisLevel>latest-all</AnalysisLevel>
<Configurations>Debug;Release;Docker;Docker-debug</Configurations>
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<ImplicitUsings>disable</ImplicitUsings>
<IsPublishable>True</IsPublishable>
<JsonSerializerIsReflectionEnabledByDefault>False</JsonSerializerIsReflectionEnabledByDefault>
<NoWarn>$(NoWarn);CA2007</NoWarn>
<Nullable>enable</Nullable>
<PathMap>$(MSBuildProjectDirectory)=./$(MSBuildProjectName)</PathMap>
<Platforms>x64;ARM64;AnyCPU</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<TargetFramework>net9.0</TargetFramework>
<UseArtifactsOutput>true</UseArtifactsOutput>
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>
<!-- File Properties -->
<PropertyGroup>
<Authors>Sella-GH, AzzyBot Contributors</Authors>
<Copyright>© 2024 - $(Authors)</Copyright>
<Description>Kind of music bot for discord, written in C# and with DSharpPlus. This bot is dedicated for the use with AzuraCast and does not work at it's fully glory without it.</Description>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/Sella-GH/AzzyBot</RepositoryUrl>
<Version>2.2.0</Version>
</PropertyGroup>
<!-- Runtimeconfig settings -->
<PropertyGroup>
<!-- JIT Settings -->
<TieredCompilation>True</TieredCompilation>
<TieredCompilationQuickJit>True</TieredCompilationQuickJit>
<TieredCompilationQuickJitForLoops>True</TieredCompilationQuickJitForLoops>
<TieredPGO>True</TieredPGO>
<!-- Garbage Collection -->
<ServerGarbageCollection>True</ServerGarbageCollection>
<ConcurrentGarbageCollection>True</ConcurrentGarbageCollection>
<GarbageCollectionAdaptationMode>1</GarbageCollectionAdaptationMode>
<!-- Globalization -->
<InvariantGlobalization>False</InvariantGlobalization>
</PropertyGroup>
</Project>