-
Notifications
You must be signed in to change notification settings - Fork 272
/
Directory.Build.props
33 lines (30 loc) · 1.24 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
<Project>
<PropertyGroup>
<Company>Changemaker Studios</Company>
<Description>Standalone SMTP server designed for viewing received messages</Description>
<Copyright>Copyright © 2008 - 2024 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>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs">
<Link>Properties\GlobalAssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Using Include="System.Text" />
<Using Include="Serilog" />
<Using Include="JetBrains.Annotations" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="Serilog" Version="3.1.1" />
</ItemGroup>
</Project>