Skip to content

Commit 5a12b94

Browse files
kblokclaude
andcommitted
Strong-name sign the RxSharp assembly, bump to 0.1.1
puppeteer-sharp signs its own assembly and its build fails (CS8002 under TreatWarningsAsErrors) when referencing an unsigned dependency. Adds a dedicated key pair and enables SignAssembly so RxSharp can be consumed as a PackageReference from signed assemblies. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01K92eapPm8e7mX7puT4cF4s
1 parent bb9080d commit 5a12b94

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

keys/rxsharp.snk

596 Bytes
Binary file not shown.

src/RxSharp/RxSharp.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,14 @@
1616
<PackageProjectUrl>https://github.com/hardkoded/ReactiveExtensions-Sharp</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/hardkoded/ReactiveExtensions-Sharp</RepositoryUrl>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
19-
<PackageVersion>0.1.0</PackageVersion>
20-
<AssemblyVersion>0.1.0.0</AssemblyVersion>
21-
<FileVersion>0.1.0.0</FileVersion>
19+
<PackageVersion>0.1.1</PackageVersion>
20+
<AssemblyVersion>0.1.1.0</AssemblyVersion>
21+
<FileVersion>0.1.1.0</FileVersion>
22+
</PropertyGroup>
23+
24+
<PropertyGroup>
25+
<SignAssembly>true</SignAssembly>
26+
<AssemblyOriginatorKeyFile>../../keys/rxsharp.snk</AssemblyOriginatorKeyFile>
2227
</PropertyGroup>
2328

2429
<PropertyGroup>

0 commit comments

Comments
 (0)