Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make sure the assembly built for .NET Core is strong named signed. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
51270bcb44d100d3e9a7a57491813073 |
User & Date: | mistachkin 2018-07-07 16:10:50.268 |
Context
2018-07-10
| ||
01:53 | Do not allow read-only connections into (or out of) the connection pool. check-in: 14d18ee826 user: mistachkin tags: trunk | |
2018-07-07
| ||
16:10 | Make sure the assembly built for .NET Core is strong named signed. check-in: 51270bcb44 user: mistachkin tags: trunk | |
05:29 | Fix compilation issues when the 'UseSqliteStandard' MSBuild property is used. check-in: 1f44df4816 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj.
︙ | ︙ | |||
57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <PropertyGroup> <TargetFramework>netstandard2.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.0 Specific Targets ** ****************************************************************************** --> <Target Name="GenerateResourcesForNetStandard20" | > > > > > > > > > > > > > > > > > > > > > > > > > | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | <PropertyGroup> <TargetFramework>netstandard2.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.0 Specific Eagle Strong Name Signing Property Overrides ** ****************************************************************************** --> <PropertyGroup> <!-- NOTE: Apparently, the .NET Core build system sets the SignAssembly property to false; therefore, reset it to true. Also, delay signing is currently non-functional due to the inability to run the strong name signing tool (sn.exe). It behaves badly when run against a .NET Core assembly. --> <SignAssembly>true</SignAssembly> <DelaySign>false</DelaySign> <!-- TODO: Why is this needed? It seems that public signing is quite similar to delay signing. Why is this necessary when not running on Windows? --> <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.0 Specific Targets ** ****************************************************************************** --> <Target Name="GenerateResourcesForNetStandard20" |
︙ | ︙ |