diff --git a/Directory.Build.props b/Directory.Build.props index a4776dc2..6df06ad9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,15 +1,16 @@ - - - https://github.com/aaubry/YamlDotNet + + Antoine Aubry + https://github.com/aaubry/YamlDotNet/wiki https://github.com/aaubry/YamlDotNet - 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. MIT Copyright (c) Antoine Aubry and contributors + yaml parser development library serialization + + 12.0 - diff --git a/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj b/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj index c320399b..ae8e641a 100644 --- a/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj +++ b/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj @@ -3,8 +3,22 @@ netstandard2.0 enable + false + true + + YamlDotNet.Analyzers.StaticGenerator + YamlDotNet Contributors + Roslyn Code Generator that will generate a static context for use with YamlDotNet to support ahead-of-time and library trimming. + images/yamldotnet.png + + + + + + + diff --git a/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.nuspec b/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.nuspec deleted file mode 100644 index e902f69d..00000000 --- a/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - - YamlDotNet.Analyzers.StaticGenerator - 0.0.1 - YamlDotNet Contributors - Roslyn Code Generator that will generate a static context for use with YamlDotNet to support ahead-of-time and library trimming. - Static context generator for YamlDotNet. - en-US - MIT - https://github.com/aaubry/YamlDotNet/wiki - http://aaubry.net/images/yamldotnet.png - images/yamldotnet.png - - yaml parser development library serialization - - - - - - - - diff --git a/YamlDotNet/YamlDotNet.csproj b/YamlDotNet/YamlDotNet.csproj index f6f7eaed..339e5e66 100644 --- a/YamlDotNet/YamlDotNet.csproj +++ b/YamlDotNet/YamlDotNet.csproj @@ -11,12 +11,16 @@ false true true - enable - false $(TargetFramework) + + + YamlDotNet + 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. + images/yamldotnet.png + README.md true true snupkg @@ -27,29 +31,9 @@ 1591;1574;8600;8602;8604 - - true - - - - true - - - - true - - - - true - - - - true - - - + @@ -60,25 +44,10 @@ $(DefineConstants);RELEASE;TRACE;SIGNED - - true - - true - - - - - - - - - - - diff --git a/YamlDotNet/YamlDotNet.nuspec b/YamlDotNet/YamlDotNet.nuspec deleted file mode 100644 index 07b16318..00000000 --- a/YamlDotNet/YamlDotNet.nuspec +++ /dev/null @@ -1,50 +0,0 @@ - - - - YamlDotNet - 0.0.1 - Antoine Aubry - 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. - This package contains the YAML parser and serializer. - en-US - MIT - https://github.com/aaubry/YamlDotNet/wiki - http://aaubry.net/images/yamldotnet.png - images/yamldotnet.png - - yaml parser development library serialization - README.md - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tools/build/BuildDefinition.cs b/tools/build/BuildDefinition.cs index a409e088..0cf55284 100644 --- a/tools/build/BuildDefinition.cs +++ b/tools/build/BuildDefinition.cs @@ -143,14 +143,14 @@ public static Task> Pack(Options options, GitVersion version, var result = new List(); var verbosity = options.Verbose ? "detailed" : "minimal"; var buildDir = Path.Combine(BasePath, "YamlDotNet"); - Run("nuget", $"pack YamlDotNet.nuspec -Version {version.NuGetVersion} -OutputDirectory bin -Symbols -SymbolPackageFormat snupkg", buildDir); + Run("dotnet", $"pack --no-build -p:PackageVersion={version.NuGetVersion} -p:ContinuousIntegrationBuild=true --output bin", buildDir); var packagePath = Path.Combine(buildDir, "bin", $"YamlDotNet.{version.NuGetVersion}.nupkg"); result.Add(new NuGetPackage(packagePath, "YamlDotNet")); if (PushSerializer) { buildDir = Path.Combine(BasePath, "YamlDotNet.Analyzers.StaticGenerator"); - Run("nuget", $"pack YamlDotNet.Analyzers.StaticGenerator.nuspec -Version {version.NuGetVersion} -OutputDirectory bin -Symbols -SymbolPackageFormat snupkg", buildDir); + Run("dotnet", $"pack --no-build -p:PackageVersion={version.NuGetVersion} -p:ContinuousIntegrationBuild=true --output bin", buildDir); packagePath = Path.Combine(buildDir, "bin", $"YamlDotNet.Analyzers.StaticGenerator.{version.NuGetVersion}.nupkg"); result.Add(new NuGetPackage(packagePath, "YamlDotNet.Analyzers.StaticGenerator")); }