-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (28 loc) · 1.25 KB
/
Directory.Build.props
File metadata and controls
30 lines (28 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
29
30
<Project>
<PropertyGroup>
<Company>Changemaker Studios</Company>
<Description>Standalone SMTP server designed for viewing received messages</Description>
<Copyright>Copyright © 2008 - 2025 Ken Robertson & Jaben Cargman</Copyright>
<Platforms>AnyCPU;x86;x64</Platforms>
<DebugType>portable</DebugType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<NoWarn>NU1605</NoWarn>
</PropertyGroup>
<PropertyGroup>
<!-- Version is populated by GitVersion during build -->
<Version Condition="'$(Version)' == ''">1.0.0</Version>
<AssemblyVersion Condition="'$(AssemblyVersion)' == ''">$(Version)</AssemblyVersion>
<FileVersion Condition="'$(FileVersion)' == ''">$(Version)</FileVersion>
<InformationalVersion Condition="'$(InformationalVersion)' == ''">$(Version)</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Text" />
<Using Include="Serilog" />
<Using Include="JetBrains.Annotations" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Serilog" Version="4.3.0" />
</ItemGroup>
</Project>