forked from akkadotnet/Akka.TestKit.NUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (40 loc) · 2.74 KB
/
Directory.Build.props
File metadata and controls
41 lines (40 loc) · 2.74 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
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Generated.props', '$(MSBuildThisFileDirectory)'))" />
<PropertyGroup>
<Copyright>Copyright © 2013-$([System.DateTime]::Now.Year)</Copyright>
<Authors>Akka.NET Contrib</Authors>
<Description>TestKit for writing tests for Akka.NET using NUnit.</Description>
<PackageTags>akka;actors;actor model;Akka;concurrency;testkit;nunit</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>akka.png</PackageIcon><!-- https://github.com/NuGet/Home/wiki/Packaging-Icon-within-the-nupkg -->
<PackageProjectUrl>https://github.com/AkkaNetContrib/Akka.TestKit.Nunit</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile><!-- https://devblogs.microsoft.com/nuget/add-a-readme-to-your-nuget-package/ -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<LangVersion>13.0</LangVersion>
<ContinuousIntegrationBuild Condition=" '$(Configuration)' == 'Release' ">true</ContinuousIntegrationBuild><!-- https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#continuousintegrationbuild -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder><!-- https://learn.microsoft.com/en-us/dotnet/standard/library-guidance/nuget#symbol-packages -->
<EmbedUntrackedSources>true</EmbedUntrackedSources><!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources -->
<PublishRepositoryUrl>true</PublishRepositoryUrl><!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#publishrepositoryurl -->
</PropertyGroup>
<PropertyGroup>
<AkkaTestKitVersion>1.5.37</AkkaTestKitVersion>
<MicrosoftNetTestSdkVersion>17.12.0</MicrosoftNetTestSdkVersion>
<NUnit3Version>3.14.0</NUnit3Version>
<NUnit4Version>4.3.2</NUnit4Version>
<NUnitAnalyzersVersion>4.6.0</NUnitAnalyzersVersion>
<NUnitTestAdapterVersion>4.6.0</NUnitTestAdapterVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" $(IsPackable) ">
<!-- Referenced by "PackageReadmeFile" property. -->
<None Include="../../README.md" Pack="true" Visible="false" PackagePath="" />
<!--
Based on the following (official) NuGet example:
https://github.com/NuGet/Samples/blob/master/PackageIconExample/PackageIconExample.csproj
(note that image path is relative to .csproj file, not this .props file) -->
<None Include="../akka.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>