-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (41 loc) · 2.37 KB
/
Directory.Build.props
File metadata and controls
50 lines (41 loc) · 2.37 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
46
47
48
49
50
<Project>
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
<Authors>Pandatech</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/PandaTechAM/be-lib-masstransit-outbox</RepositoryUrl>
<PackageProjectUrl>https://github.com/PandaTechAM/be-lib-masstransit-outbox</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>pandatech.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>7.0.0</Version>
<PackageReleaseNotes>Add targeted Send support: new AddToOutbox overloads accepting destination URI for direct endpoint delivery instead of fan-out Publish. Breaking change: new DestinationAddress column on OutboxMessages table requires a migration.</PackageReleaseNotes>
<!-- Build quality -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Source/symbols -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- Analyzer behavior -->
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pandatech.Analyzers" Version="[2.1.0]" PrivateAssets="all"/>
<PackageReference Include="SonarAnalyzer.CSharp" Version="[10.19.0.132793]">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- Pack shared assets for all packable projects -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)pandatech.png" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>