-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathDirectory.Build.props
58 lines (52 loc) · 2.68 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<ImplicitUsings>enable</ImplicitUsings>
<RepositoryType>git</RepositoryType>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables -->
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">True</ContinuousIntegrationBuild>
<Copyright>Copyright © Serilog Contributors 2019-2024</Copyright>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile>
<Nullable>enable</Nullable>
<MinVerMinimumMajorMinor>8.0</MinVerMinimumMajorMinor> <!-- next major version -->
<MinVerTagPrefix>v</MinVerTagPrefix> <!-- version tags begin with 'v' -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.Contains('.Tests'))">
<NoWarn>$(NoWarn);1701;1702;1591;SA1600;IDE1006</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<AdditionalFiles Include="$(SolutionDir)/stylecop.json" Visible="false" Link="stylecop.json" />
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectName.Contains('.Tests'))">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Shouldly" Version="4.2.1" />
<Using Include="Xunit" />
<Using Include="System.Text" />
<Using Include="Shouldly" />
<Using Include="Serilog.Formatting.Json" />
<Using Include="RabbitMQ.Client" />
<Using Include="RabbitMQ.Client.Events" />
<Using Include="RabbitMQ.Client.Exceptions" />
</ItemGroup>
</Project>