-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
36 lines (36 loc) · 1.45 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
<Project>
<PropertyGroup>
<Copyright>Copyright © 2022 Your Company</Copyright>
<Authors>Your Authors</Authors>
<VersionPrefix>0.3.0</VersionPrefix>
<PackageReleaseNotes>• Fixed bugs</PackageReleaseNotes>
<PackageIconUrl>
</PackageIconUrl>
<PackageProjectUrl>
</PackageProjectUrl>
<PackageLicenseUrl>
</PackageLicenseUrl>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<LibraryFramework>net6.0</LibraryFramework>
<TestsNetCoreFramework>net6.0</TestsNetCoreFramework>
<NBenchVersion>1.2.2</NBenchVersion>
<XunitVersion>2.5.0</XunitVersion>
<XunitRunnerVisualstudio>2.4.5</XunitRunnerVisualstudio>
<TestSdkVersion>17.5.0</TestSdkVersion>
</PropertyGroup>
<!-- SourceLink support for all Akka.NET projects -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<None Include="$(MSBuildThisFileDirectory)\..\README.md" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
<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>
</PropertyGroup>
</Project>