-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathDirectory.Build.props
47 lines (41 loc) · 1.84 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
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<Features>strict</Features>
<nullable>enable</nullable>
<implicitUsings>enable</implicitUsings>
</PropertyGroup>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<RootNamespace>$(AssemblyName)</RootNamespace>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<BaseName>MoaidHathot.Dumpify</BaseName>
</PropertyGroup>
<PropertyGroup Label="Settings">
<Deterministic>true</Deterministic>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Label="Package Info">
<Product>Dumpify</Product>
<Authors>Moaid Hathot</Authors>
<Title>Dumpify</Title>
<Owners>Moaid Hathot</Owners>
<Copyright>@ Moaid Hathot. All rights reserved.</Copyright>
<Description>A library that can dump any object to the console in a readable, structured way. No need for overriding `ToString`.</Description>
<Summary>Dumpify enable you to print objects in a structured ways to the Console</Summary>
<RepositoryUrl>https://github.com/MoaidHathot/Dumpify</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.githubusercontent.com/MoaidHathot/Dumpify/master/images/icon?sanitize=true</PackageIconUrl>
</PropertyGroup>
<PropertyGroup Label="SourceLink" Condition="'$(GITHUB_ACTIONS)' == 'true'">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Label="Deterministic Build" Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>