-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
45 lines (35 loc) · 1.54 KB
/
Directory.Build.props
File metadata and controls
45 lines (35 loc) · 1.54 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
<Project>
<PropertyGroup>
<Copyright>2026 Leonid Tsarev and Joinrpg team</Copyright>
<Authors>Leonid Tsarev and Co</Authors>
<Company>Joinrpg.ru</Company>
<!-- Pack everything with embedded .pdb -->
<EmbedAllSources>true</EmbedAllSources>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<UseArtifactsOutput>true</UseArtifactsOutput>
<NoWarn>${NoWarn};CS1591</NoWarn>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<WarningsAsErrors>true</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Версия контейнера совпадает с версией приложения -->
<ContainerVersion>$(Version)</ContainerVersion>
<!-- Всегда публикуем с двумя тегами: latest и версия -->
<ContainerImageTags>latest;$(Version)</ContainerImageTags>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>$(NoWarn);NU1507</NoWarn>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!--
this instruction automatically allows XXX.Tests to access internals of XXX.
-->
<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Test" />
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
<ItemGroup>
<GlobalPackageReference Include="ReferenceTrimmer" Version="3.5.7" />
</ItemGroup>
</Project>