Skip to content

Commit 297866a

Browse files
committed
Merge package properties with Directory.Build.props
1 parent 462918e commit 297866a

File tree

3 files changed

+6
-20
lines changed

3 files changed

+6
-20
lines changed

Directory.Build.props

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
<Project>
22

3-
<PropertyGroup>
4-
3+
<PropertyGroup Label="Package properties">
4+
<Authors>Antoine Aubry</Authors>
55
<PackageProjectUrl>https://github.com/aaubry/YamlDotNet</PackageProjectUrl>
66
<RepositoryUrl>https://github.com/aaubry/YamlDotNet</RepositoryUrl>
7-
<Description>YamlDotNet is a .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument. A serialization library is also included that allows to read and write objects from and to YAML streams.</Description>
87
<PackageLicenseExpression>MIT</PackageLicenseExpression>
98
<Copyright>Copyright (c) Antoine Aubry and contributors</Copyright>
9+
<PackageTags>yaml parser development library serialization</PackageTags>
10+
</PropertyGroup>
1011

12+
<PropertyGroup>
1113
<LangVersion>12.0</LangVersion>
12-
14+
<Nullable>enable</Nullable>
1315
</PropertyGroup>
1416

1517
</Project>

YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,13 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<IncludeBuildOutput>false</IncludeBuildOutput><!-- Don't place the output assembly in the package's lib/ folder -->
66
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking><!-- Don't add the TargetFramework as a package dependency -->
7-
<Nullable>enable</Nullable>
87
</PropertyGroup>
98

109
<PropertyGroup Label="Package Properties">
1110
<PackageId>YamlDotNet.Analyzers.StaticGenerator</PackageId>
1211
<Authors>YamlDotNet Contributors</Authors>
1312
<Description>Roslyn Code Generator that will generate a static context for use with YamlDotNet to support ahead-of-time and library trimming.</Description>
14-
<PackageSummary>Static context generator for YamlDotNet.</PackageSummary>
15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16-
<PackageProjectUrl>https://github.com/aaubry/YamlDotNet/wiki</PackageProjectUrl>
1713
<PackageIcon>images/yamldotnet.png</PackageIcon>
18-
<PackageTags>yaml parser development library serialization</PackageTags>
19-
<RepositoryUrl>https://github.com/aaubry/YamlDotNet</RepositoryUrl>
20-
<PublishRepository>true</PublishRepository>
2114
</PropertyGroup>
2215

2316
<ItemGroup Label="Package Contents">

YamlDotNet/YamlDotNet.csproj

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,16 @@
1212
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1313
<WarningsAsErrors>true</WarningsAsErrors>
1414

15-
<Nullable>enable</Nullable>
1615

1716
<NetStandard>false</NetStandard>
1817
<RealTargetFramework>$(TargetFramework)</RealTargetFramework>
1918
</PropertyGroup>
2019

2120
<PropertyGroup Label="Package Properties">
2221
<PackageId>YamlDotNet</PackageId>
23-
<Authors>Antoine Aubry</Authors>
2422
<Description>YamlDotNet is a .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument. A serialization library is also included that allows to read and write objects from and to YAML streams.</Description>
25-
<PackageSummary>This package contains the YAML parser and serializer.</PackageSummary>
26-
<PackageProjectUrl>https://github.com/aaubry/YamlDotNet</PackageProjectUrl>
27-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
28-
<Copyright>Copyright (c) Antoine Aubry and contributors</Copyright>
2923
<PackageIcon>images/yamldotnet.png</PackageIcon>
3024
<PackageReadmeFile>README.md</PackageReadmeFile>
31-
<PackageTags>yaml parser development library serialization</PackageTags>
32-
<RepositoryUrl>https://github.com/aaubry/YamlDotNet</RepositoryUrl>
33-
<PublishRepository>true</PublishRepository>
3425
<DebugSymbols>true</DebugSymbols>
3526
<IncludeSymbols>true</IncludeSymbols>
3627
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

0 commit comments

Comments
 (0)