-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (27 loc) · 1.14 KB
/
Directory.Build.props
File metadata and controls
31 lines (27 loc) · 1.14 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
<?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>
</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>