Skip to content

Commit

Permalink
Bump McMaster.Extensions.CommandLineUtils from 4.1.0 to 4.1.1
Browse files Browse the repository at this point in the history
Bumps [McMaster.Extensions.CommandLineUtils](https://github.com/natemcmaster/CommandLineUtils) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/natemcmaster/CommandLineUtils/releases)
- [Changelog](https://github.com/natemcmaster/CommandLineUtils/blob/main/CHANGELOG.md)
- [Commits](natemcmaster/CommandLineUtils@v4.1.0...v4.1.1)

---
updated-dependencies:
- dependency-name: McMaster.Extensions.CommandLineUtils
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 19, 2024
1 parent 11c0e64 commit c21578b
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 88 deletions.
106 changes: 53 additions & 53 deletions MinVer/MinVer.csproj
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<DefineConstants>$(DefineConstants);MINVER</DefineConstants>
<Description>Minimalist versioning for .NET SDK-style projects using Git tags.</Description>
<DevelopmentDependency>true</DevelopmentDependency>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<!-- NU5100: The folder being packaged contains an assembly file that is not in lib folder. -->
<NoWarn>$(NoWarn);NU5100</NoWarn>
<OutputType>Exe</OutputType>
<PackageIcon>minver.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/adamralph/minver</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/adamralph/minver/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RollForward>major</RollForward>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>default</LangVersion>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\minver-cli\Options.cs" Link="Options.cs" />
<Compile Include="..\minver-cli\Program.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" PrivateAssets="All" Publish="true" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\MinVer.Lib\MinVer.Lib.csproj" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<None Include="../assets/minver.png" Pack="true" PackagePath="/" />
<None Include="../README.md" Pack="true" PackagePath="/" />
<None Remove="build\**\*" />
<None Remove="buildMultiTargeting\**\*" />
<Content Include="build\**\*" PackagePath="build" />
<Content Include="buildMultiTargeting\**\*" PackagePath="buildMultiTargeting" />
</ItemGroup>

<Target Name="AddMinVerOutput" BeforeTargets="_GetPackageFiles">
<ItemGroup>
<None Include="$(OutputPath)\**\*" Exclude="$(OutputPath)\**\*.dev.json;$(OutputPath)\**\*.nupkg" Pack="true" PackagePath="minver" />
</ItemGroup>
</Target>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<DefineConstants>$(DefineConstants);MINVER</DefineConstants>
<Description>Minimalist versioning for .NET SDK-style projects using Git tags.</Description>
<DevelopmentDependency>true</DevelopmentDependency>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<!-- NU5100: The folder being packaged contains an assembly file that is not in lib folder. -->
<NoWarn>$(NoWarn);NU5100</NoWarn>
<OutputType>Exe</OutputType>
<PackageIcon>minver.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/adamralph/minver</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/adamralph/minver/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RollForward>major</RollForward>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>default</LangVersion>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\minver-cli\Options.cs" Link="Options.cs" />
<Compile Include="..\minver-cli\Program.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" PrivateAssets="All" Publish="true" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\MinVer.Lib\MinVer.Lib.csproj" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<None Include="../assets/minver.png" Pack="true" PackagePath="/" />
<None Include="../README.md" Pack="true" PackagePath="/" />
<None Remove="build\**\*" />
<None Remove="buildMultiTargeting\**\*" />
<Content Include="build\**\*" PackagePath="build" />
<Content Include="buildMultiTargeting\**\*" PackagePath="buildMultiTargeting" />
</ItemGroup>

<Target Name="AddMinVerOutput" BeforeTargets="_GetPackageFiles">
<ItemGroup>
<None Include="$(OutputPath)\**\*" Exclude="$(OutputPath)\**\*.dev.json;$(OutputPath)\**\*.nupkg" Pack="true" PackagePath="minver" />
</ItemGroup>
</Target>

</Project>
70 changes: 35 additions & 35 deletions minver-cli/minver-cli.csproj
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<DefineConstants>$(DefineConstants);MINVER_CLI</DefineConstants>
<Description>A minimalist command line tool for versioning any Git repository using tags.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<PackageIcon>minver.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/adamralph/minver</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/adamralph/minver/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RollForward>major</RollForward>
<RootNamespace>MinVer</RootNamespace>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ToolCommandName>minver</ToolCommandName>
<LangVersion>default</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\MinVer.Lib\MinVer.Lib.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="../assets/minver.png" Pack="true" PackagePath="/" />
<None Include="../README.md" Pack="true" PackagePath="/" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<DefineConstants>$(DefineConstants);MINVER_CLI</DefineConstants>
<Description>A minimalist command line tool for versioning any Git repository using tags.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<PackageIcon>minver.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/adamralph/minver</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/adamralph/minver/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RollForward>major</RollForward>
<RootNamespace>MinVer</RootNamespace>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ToolCommandName>minver</ToolCommandName>
<LangVersion>default</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\MinVer.Lib\MinVer.Lib.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="../assets/minver.png" Pack="true" PackagePath="/" />
<None Include="../README.md" Pack="true" PackagePath="/" />
</ItemGroup>

</Project>

0 comments on commit c21578b

Please sign in to comment.