-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (34 loc) · 1.79 KB
/
Copy pathDirectory.Build.props
File metadata and controls
38 lines (34 loc) · 1.79 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<PropertyGroup>
<Copyright>$(CopyrightMicrosoft)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>pdbonly</DebugType>
<DebugSymbol>true</DebugSymbol>
<StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
</PropertyGroup>
<PropertyGroup>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<!-- Suppress TFM support warnings for .NET 11 preview packages used on net9.0 - required to support net8 and net9 projects -->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<!-- Suppress MSB3277: assembly version conflicts when mixing MSBuild 18.x (netstandard2.0 ref) with net8.0 build
targets. Harmless at runtime - the .NET 8 runtime provides the correct System.Collections.Immutable
and System.Diagnostics.DiagnosticSource assemblies. -->
<MSBuildWarningsAsMessages>$(MSBuildWarningsAsMessages);MSB3277</MSBuildWarningsAsMessages>
<!-- Suppress NU5104 for stable releases: Microsoft.Extensions.* packages targeting net11.0
are still in preview. Not actionable until net11.0 ships stable framework packages. -->
<NoWarn Condition="'$(StabilizePackageVersion)' == 'true'">$(NoWarn);NU5104</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Package and Assembly Metadata">
<Product>Microsoft ASP.NET Core</Product>
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRoot)NOTICE.txt" Pack="true" PackagePath="" />
</ItemGroup>
</Project>