Skip to content

Commit 3187d29

Browse files
committed
v3.0.0
1 parent 6472015 commit 3187d29

File tree

8 files changed

+23
-27
lines changed

8 files changed

+23
-27
lines changed

lib/Common/SignAssembly.props

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
<PropertyGroup>
3+
<AssemblyPublicKey>0024000004800000940000000602000000240000525341310004000001000100059a04ca5ca77c9b4eb2addd1afe3f8464b20ee6aefe73b8c23c0e6ca278d1a378b33382e7e18d4aa8300dd22d81f146e528d88368f73a288e5b8157da9710fe6f9fa9911fb786193f983408c5ebae0b1ba5d1d00111af2816f5db55871db03d7536f4a7a6c5152d630c1e1886b1a0fb68ba5e7f64a7f24ac372090889be2ffb</AssemblyPublicKey>
4+
<SignAssembly>true</SignAssembly>
5+
<AssemblyOriginatorKeyFile>..\keys\public.snk</AssemblyOriginatorKeyFile>
6+
<PublicSign>true</PublicSign>
7+
</PropertyGroup>
8+
<ItemGroup>
9+
<None Include="..\keys\public.snk">
10+
<Link>public.snk</Link>
11+
</None>
12+
</ItemGroup>
13+
</Project>

lib/PuppeteerSharp.AspNetFramework/PuppeteerSharp.AspNetFramework.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<PackageProjectUrl>https://github.com/kblok/puppeteer-sharp</PackageProjectUrl>
1010
<Summary>Puppeteer-Sharp Helpers for ASP.NET Full Framework</Summary>
1111
</PropertyGroup>
12+
<Import Project="../Common/SignAssembly.props" />
1213
<ItemGroup>
1314
<ProjectReference Include="..\PuppeteerSharp\PuppeteerSharp.csproj" />
1415
</ItemGroup>
@@ -18,4 +19,4 @@
1819
<ItemGroup>
1920
<Reference Include="System.Web" />
2021
</ItemGroup>
21-
</Project>
22+
</Project>

lib/PuppeteerSharp.Tests/PuppeteerSharp.Tests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<ItemGroup Condition="'$(TargetFramework)'=='net471'">
1818
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
1919
</ItemGroup>
20+
<Import Project="../Common/SignAssembly.props" />
2021
<ItemGroup>
2122
<Folder Include="Issues\" />
2223
<Folder Include="Attributes\" />
@@ -42,4 +43,4 @@
4243
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4344
</Content>
4445
</ItemGroup>
45-
</Project>
46+
</Project>

lib/PuppeteerSharp.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1818
.editorconfig = .editorconfig
1919
..\Directory.Build.props = ..\Directory.Build.props
2020
PuppeteerSharp.ruleset = PuppeteerSharp.ruleset
21+
Common\SignAssembly.props = Common\SignAssembly.props
2122
EndProjectSection
2223
EndProject
2324
Global
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
using System.Runtime.CompilerServices;
22

3-
[assembly: InternalsVisibleTo("PuppeteerSharp.Tests")]
3+
[assembly: InternalsVisibleTo("PuppeteerSharp.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100059a04ca5ca77c9b4eb2addd1afe3f8464b20ee6aefe73b8c23c0e6ca278d1a378b33382e7e18d4aa8300dd22d81f146e528d88368f73a288e5b8157da9710fe6f9fa9911fb786193f983408c5ebae0b1ba5d1d00111af2816f5db55871db03d7536f4a7a6c5152d630c1e1886b1a0fb68ba5e7f64a7f24ac372090889be2ffb")]

lib/PuppeteerSharp/PuppeteerSharp.csproj

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<PackOnBuild>true</PackOnBuild>
5-
<PackageVersion>2.0.4</PackageVersion>
5+
<PackageVersion>3.0.0</PackageVersion>
66
<Authors>Darío Kondratiuk</Authors>
77
<Owners>Darío Kondratiuk</Owners>
88
<PackageProjectUrl>https://github.com/hardkoded/puppeteer-sharp</PackageProjectUrl>
@@ -11,33 +11,13 @@
1111
<Title>PuppeteerSharp</Title>
1212
<Description>Headless Browser .NET API</Description>
1313
<PackageId>PuppeteerSharp</PackageId>
14-
<PackageReleaseNotes><![CDATA[
15-
16-
# Experimental
17-
* We are laying the ground to support Firefox. Although we are exposing the "Product" property in many methods, these are not ready to be used.
18-
19-
# Fixes
20-
21-
* Optional frame in requests.
22-
* Update the OnRequestAsync in the NetworkManager.cs to support null.
23-
24-
# Changelog
25-
26-
* Add x-server pre-requisite to docs
27-
* Corrects CA2000 and IDE0008.
28-
* fix CA1063.
29-
* Don’t disable BlinkGenPropertyTrees anymore.
30-
* Add reference Microsoft.NETFramework.ReferenceAssemblies.
31-
* Add WaitForFunctionAsync doc.
32-
* Update demo versions.
33-
* Tests: Implement the Chrome bit.
34-
35-
]]></PackageReleaseNotes>
36-
<ReleaseVersion>2.0.4</ReleaseVersion>
14+
<PackageReleaseNotes></PackageReleaseNotes>
15+
<ReleaseVersion>3.0.0</ReleaseVersion>
3716
<SynchReleaseVersion>false</SynchReleaseVersion>
3817
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
3918
<CodeAnalysisRuleSet>../PuppeteerSharp.ruleset</CodeAnalysisRuleSet>
4019
</PropertyGroup>
20+
<Import Project="../Common/SignAssembly.props" />
4121
<PropertyGroup>
4222
<DebugType>embedded</DebugType>
4323
<DebugSymbols>true</DebugSymbols>

lib/keys/keypair.snk

596 Bytes
Binary file not shown.

lib/keys/public.snk

160 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)