Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
build(csproj): version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuo committed Aug 11, 2018
1 parent 3ee34c6 commit 3c5ee3d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 27 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.

Note that AppVeyor build number and the Miqo.License release version numbers may not be in sync.

## Unreleased
## [v1.1.1](https://github.com/miqo-no/Miqo.License/releases/tag/v1.1.1) (2017-08-11)

### Bug fixes

* Add Conditional TargetFramework to .csproj ([703615b](https://github.com/miqo-no/Miqo.License/commit/703615b85f7b7b6695d13ca9182fbe1c947b14c7))

### Project documents

Expand Down
51 changes: 25 additions & 26 deletions Miqo.License/Miqo.License.csproj
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;net40;net45;net461</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Authors>Miqo DA</Authors>
<Copyright>Copyright 2018 Miqo DA</Copyright>
<PackageId>Miqo.License</PackageId>
<PackageProjectUrl>https://github.com/miqo-no/Miqo.License/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/miqo-no/Miqo.License/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/miqo-no/Miqo.License/</RepositoryUrl>
<PackageIconUrl>https://github.com/miqo-no/Miqo.License/raw/master/.github/logo.png</PackageIconUrl>
<NeutralLanguage>en</NeutralLanguage>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>1.1.0.1</AssemblyVersion>
<FileVersion>1.1.0.1</FileVersion>
<Version>1.1.0.1</Version>
<Description>📄🔐 The easy to use software licensing system for .NET
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;net40;net45;net461</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Authors>Miqo DA</Authors>
<Copyright>Copyright 2018 Miqo DA</Copyright>
<PackageId>Miqo.License</PackageId>
<PackageProjectUrl>https://github.com/miqo-no/Miqo.License/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/miqo-no/Miqo.License/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/miqo-no/Miqo.License/</RepositoryUrl>
<PackageIconUrl>https://github.com/miqo-no/Miqo.License/raw/master/.github/logo.png</PackageIconUrl>
<NeutralLanguage>en</NeutralLanguage>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>1.1.1</AssemblyVersion>
<FileVersion>1.1.1</FileVersion>
<Version>1.1.1</Version>
<Description>📄🔐 The easy to use software licensing system for .NET

Implement a licensing system that is easy to use into your application with Miqo.License. The library is cross platform and provides you with all the neccessary tools to issue, sign and verify the authenticity of a license.

The license files are saved in JSON format, and is signed using a state-of-the-art Elliptic Curve Digital Signature Algorithm (ECDSA) to ensure that the license files can't be tampered with after creation.

The library is available for .NET Standard 2.0 and .NET Framework 4.0 and higher. The tests project uses .NET Core 2.0.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
</Project>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
</Project>

0 comments on commit 3c5ee3d

Please sign in to comment.