Skip to content

Commit

Permalink
[v1.3.0] Lib.Net.Http.EncryptedContentEncoding
Browse files Browse the repository at this point in the history
  • Loading branch information
tpeczek committed Jul 5, 2018
1 parent c8599d0 commit 41341f5
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
@@ -1,16 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.10.12" />
<PackageReference Include="BenchmarkDotNet" Version="0.10.14" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Lib.Net.Http.EncryptedContentEncoding\Lib.Net.Http.EncryptedContentEncoding.csproj" />
</ItemGroup>

</Project>
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## Lib.Net.Http.EncryptedContentEncoding 1.3.0
### Additions and Changes
- Added support for .NET Standard 2.0

## Lib.Net.Http.EncryptedContentEncoding 1.2.0
### Additions and Changes
- Performance improvements.
Expand Down
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="log.txt" />
Expand All @@ -10,7 +10,7 @@
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="docfx.console" Version="2.29.1" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
<PackageReference Include="docfx.console" Version="2.36.2" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion DocFx.Net.Http.EncryptedContentEncoding/docfx.json
Expand Up @@ -12,7 +12,7 @@
],
"dest": "api",
"properties": {
"TargetFramework": "netstandard1.6"
"TargetFramework": "netstandard2.0"
}
}
],
Expand Down
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<Description>Lib.Net.Http.EncryptedContentEncoding is a library which adds Encrypted Content-Encoding (aes128gcm) support to HttpClient</Description>
<Copyright>Copyright © 2017 - 2018 Tomasz Pęczek</Copyright>
<VersionPrefix>1.2.0</VersionPrefix>
<VersionPrefix>1.3.0</VersionPrefix>
<Authors>Tomasz Pęczek</Authors>
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
<TargetFrameworks>net451;netstandard1.6;netstandard2.0</TargetFrameworks>
<AssemblyTitle>Lib.Net.Http.EncryptedContentEncoding</AssemblyTitle>
<AssemblyName>Lib.Net.Http.EncryptedContentEncoding</AssemblyName>
<PackageId>Lib.Net.Http.EncryptedContentEncoding</PackageId>
Expand Down
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net452;netstandard1.6</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
Expand Down

0 comments on commit 41341f5

Please sign in to comment.