Skip to content

Use MIT License #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions CommandLineParser/CommandLineParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MatthiWare.CommandLine</RootNamespace>
<PackageId>MatthiWare.CommandLineParser</PackageId>
<Version>0.6.0</Version>
<Version>0.7.0</Version>
<Authors>Matthias Beerens</Authors>
<Company>MatthiWare</Company>
<Product>Command Line Parser</Product>
Expand All @@ -14,13 +14,14 @@
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
<PackageTags>Commandline parser commandline-parser cli</PackageTags>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>0.6.0.0</AssemblyVersion>
<FileVersion>0.6.0.0</FileVersion>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>- Improve Dependency Injection
- Dependency version upgrades</PackageReleaseNotes>
<PackageReleaseNotes>- Change license to MIT</PackageReleaseNotes>
<Copyright>Copyright Matthias Beerens 2018</Copyright>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -38,6 +39,10 @@
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down
31 changes: 0 additions & 31 deletions CommandLineParser/CommandLineParser.nuspec

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MatthiWare.CommandLine.Extensions.FluentValidations</RootNamespace>
<AssemblyName>CommandLineParser.FluentValidations</AssemblyName>
<Version>0.6.0</Version>
<Version>0.7.0</Version>
<Authors>Matthias Beerens</Authors>
<Company>MatthiWare</Company>
<Product>FluentValidations Extension For MatthiWare.CommandLineParser</Product>
Expand All @@ -14,14 +14,14 @@
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
<PackageTags>Commandline parser commandline-parser cli fluent-validations extension</PackageTags>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>0.6.0.0</AssemblyVersion>
<FileVersion>0.6.0.0</FileVersion>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>- Improve Dependency Injection
- Dependency version upgrades</PackageReleaseNotes>
<PackageReleaseNotes>- Update license to MIT</PackageReleaseNotes>
<Copyright>Copyright Matthias Beerens 2019</Copyright>
<PackageId>MatthiWare.CommandLineParser.Extensions.FluentValidations</PackageId>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Loading