-
-
Notifications
You must be signed in to change notification settings - Fork 336
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (36 loc) · 1.97 KB
/
Directory.Build.props
File metadata and controls
39 lines (36 loc) · 1.97 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>12</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Jaedyn Tonee;</Authors>
<PackageIconUrl>https://github.com/JasperFx/wolverine/blob/main/docs/public/logo.png?raw=true</PackageIconUrl>
<PackageProjectUrl>http://github.com/jasperfx/wolverine</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<NoWarn>1570;1571;1572;1573;1574;1587;1591;1701;1702;1711;1735;0618;VSTHRD200;CS7022</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
<!--
Wolverine 6.0 alpha line. Bumped from 5.39.0 (the last 5.x release
left on the main branch's Directory.Build.props) to flag every
package built from main as a 6.0 pre-release. This is the first
explicitly-versioned 6.0 alpha after the cumulative work merged
this release cycle (envelope pool #2741, Newtonsoft extraction
#2743, migration polish #2744, AOT pillar foundation #2747 et al).
Bump the alpha number with each NuGet publish off main. The 5.x
maintenance line ships from the `5.0` branch and continues to use
its own Directory.Build.props.
-->
<Version>6.0.0-alpha.1</Version>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AddSyntheticProjectReferencesForSolutionDependencies>false</AddSyntheticProjectReferencesForSolutionDependencies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
</ItemGroup>
</Project>