Skip to content

Commit

Permalink
Version 2.1.0+50
Browse files Browse the repository at this point in the history
  • Loading branch information
elendil-software committed Apr 12, 2020
1 parent 32ed03c commit eb07711
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v2.1.0 (2020-xx-xx)
## v2.1.0 (2020-04-12)

### ADDED

Expand Down
7 changes: 2 additions & 5 deletions IPX800cs.Test/IPX800cs.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>IPX800cs.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand All @@ -17,9 +16,7 @@
</PackageReference>
<PackageReference Include="Moq" Version="4.13.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\IPX800cs\IPX800cs.csproj" />
</ItemGroup>

</Project>
15 changes: 6 additions & 9 deletions IPX800cs/IPX800cs.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40;net45</TargetFrameworks>
<Description>Library that allows to send commands to IPX800 v2, IPX800 v3 or IPX800 v4 relay board.</Description>
<Authors>Julien Tschäppät</Authors>
<Company>Julien Tschäppät</Company>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
<Copyright>© 2013-2019 - Julien Tschäppät</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -16,20 +16,17 @@
<PackageTags>IPX800</PackageTags>
<AssemblyName>IPX800cs</AssemblyName>
<RootNamespace>IPX800cs</RootNamespace>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
<PackageReleaseNotes>https://github.com/elendil-software/IPX800cs/releases</PackageReleaseNotes>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>IPX800cs.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>

<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>

</Project>
</Project>
8 changes: 3 additions & 5 deletions TestApplication/TestApplication.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net45</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\IPX800cs\IPX800cs.csproj" />
</ItemGroup>

<PropertyGroup>
<SonarQubeExclude>true</SonarQubeExclude>
</PropertyGroup>
</Project>
</Project>

0 comments on commit eb07711

Please sign in to comment.