forked from JasperFx/wolverine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
49 lines (44 loc) · 2.6 KB
/
Copy pathDirectory.Build.props
File metadata and controls
49 lines (44 loc) · 2.6 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>12</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Jaedyn Tonee;</Authors>
<!-- PackageIconUrl is deprecated and trips NU5048 as a build-break under
TreatWarningsAsErrors on .NET SDK 10.0.300+. Use PackageIcon with an
embedded file instead. The icon is packed in via the ItemGroup below. -->
<PackageIcon>logo.png</PackageIcon>
<PackageProjectUrl>https://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</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>6.24.11</Version>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AddSyntheticProjectReferencesForSolutionDependencies>false</AddSyntheticProjectReferencesForSolutionDependencies>
</PropertyGroup>
<!-- Every xUnit v3 test project doubles as a Microsoft.Testing.Platform host, so Bobcat's
supervisor (see build/SupervisedTests.cs) can drive it as a worker process. This changes
only the built executable's entry point: `dotnet test`, VSTest filters, TRX and coverlet
all keep working, and xUnit v2 projects ignore the property entirely. Set here rather
than per-job so a build can never silently produce a non-supervisable executable. -->
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<!-- Embed the package icon referenced by <PackageIcon> above. Pack=true
puts the file inside every produced .nupkg; PackagePath="\" places it
at the package root so PackageIcon's relative resolution finds it. -->
<None Include="$(MSBuildThisFileDirectory)docs/public/logo.png"
Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)Analysis.Build.props" />
</Project>