Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Clarify some of the .NET Standard specific project properties by moving them into their own section. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e80c56236ed3820c17bc257202c17cee |
User & Date: | mistachkin 2018-07-05 22:03:57.959 |
Context
2018-07-06
| ||
02:19 | Include the statically linked native SQLite interop assembly project in the MSBuild solution files. check-in: 1c43c79665 user: mistachkin tags: trunk | |
2018-07-05
| ||
22:03 | Clarify some of the .NET Standard specific project properties by moving them into their own section. check-in: e80c56236e user: mistachkin tags: trunk | |
2018-07-01
| ||
19:17 | Adjust some conditional compilation checks in order to include .NET Core. check-in: e6b998e04a user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj.
︙ | ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite</RootNamespace> <AssemblyName>System.Data.SQLite</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> <NetFx461>true</NetFx461> <IsDotNetStandard>true</IsDotNetStandard> <ConfigurationYear>NetStandard20</ConfigurationYear> <TargetFramework>netstandard2.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- | > > > > > > > > > | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite</RootNamespace> <AssemblyName>System.Data.SQLite</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> <NetFx461>true</NetFx461> <IsDotNetStandard>true</IsDotNetStandard> <ConfigurationYear>NetStandard20</ConfigurationYear> </PropertyGroup> <!-- ****************************************************************************** ** Project / .NET Standard 2.0 Specific Properties ** ****************************************************************************** --> <PropertyGroup> <TargetFramework>netstandard2.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- |
︙ | ︙ |