-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (40 loc) · 2.07 KB
/
Directory.Build.props
File metadata and controls
40 lines (40 loc) · 2.07 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
<Project>
<PropertyGroup>
<Copyright>Copyright © 2013-2023 Akka.NET Project</Copyright>
<Authors>Akka.NET</Authors>
<VersionPrefix>1.5.59</VersionPrefix>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Akka.NET Persistence journal and snapshot store backed by Redis.</Description>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<NetTestVersion>net8.0</NetTestVersion>
<NetStandardVersion>netstandard2.0</NetStandardVersion>
<NetVersion>net6.0</NetVersion>
<NetFrameworkTestVersion>net471</NetFrameworkTestVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<!-- SourceLink support for all Akka.NET projects -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<None Include="$(MSBuildThisFileDirectory)\docs\images\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- NuGet package properties -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageTags>akka;actors;actor model;Akka;concurrency;persistence;eventsource;redis</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/akkadotnet/Akka.Persistence.Redis</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReleaseNotes>* Upgraded to [Akka.NET 1.5.59](https://github.com/akkadotnet/akka.net/releases/tag/1.5.59)
* Upgraded to [Akka.Hosting 1.5.59](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.59)</PackageReleaseNotes>
</PropertyGroup>
</Project>