forked from ElmahCore/ElmahCore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
39 lines (32 loc) · 1.55 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
37
38
39
<Project>
<PropertyGroup>
<Authors>Joshua Searles,Scott Mitchell,Atif Aziz,others</Authors>
<NeutralLanguage>en-001</NeutralLanguage>
<RepositoryUrl>https://github.com/jrsearles/Elmah.AspNetCore</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
<Copyright>Copyright (C) Elmah Contributors. All rights reserved.</Copyright>
<PackageId>$(MSBuildProjectName)</PackageId>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<Product>$(MSBuildProjectName)</Product>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/jrsearles/Elmah.AspNetCore</PackageProjectUrl>
<GenerateRepositoryUrlAttribute>true</GenerateRepositoryUrlAttribute>
<RepositoryType>git</RepositoryType>
<RollForward>LatestMinor</RollForward>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<ItemGroup>
<None Condition="Exists('README.md')" Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
</Project>