Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Silence excessive non-CLS-compliant warnings from the VS designer project. Move StrongName properties for the legacy VS designer project into the project file itself. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b1a322d0160f86ba4aa78dac99d2bd8c |
User & Date: | mistachkin 2011-04-09 01:33:26 |
Context
2011-04-09
| ||
01:46 | Add revised membership provider project to the new build system. This has not been added to the solutions in the new build system because it is missing some source files and does not compile. check-in: 0d0f3a4a5f user: mistachkin tags: trunk | |
01:33 | Silence excessive non-CLS-compliant warnings from the VS designer project. Move StrongName properties for the legacy VS designer project into the project file itself. check-in: b1a322d016 user: mistachkin tags: trunk | |
01:26 | Add VS designer project to the new build system. Modify project GUIDs for the new LINQ projects to match the original ones. check-in: 19cdab0a03 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Designer/SQLite.Designer.csproj.
6 6 <ProductVersion>9.0.30729</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{9B4A5CF6-5BE5-4926-ACC7-B729A8C05198}</ProjectGuid> 9 9 <OutputType>Library</OutputType> 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>SQLite.Designer</RootNamespace> 12 12 <AssemblyName>SQLite.Designer</AssemblyName> 13 - <SignAssembly>false</SignAssembly> 13 + <SignAssembly>true</SignAssembly> 14 + <AssemblyOriginatorKeyFile>..\System.Data.SQLite\System.Data.SQLite.snk</AssemblyOriginatorKeyFile> 14 15 <RegisterOutputPackage>false</RegisterOutputPackage> 15 16 <RegisterWithCodebase>false</RegisterWithCodebase> 16 17 <GeneratePkgDefFile>false</GeneratePkgDefFile> 17 18 <FileUpgradeFlags> 18 19 </FileUpgradeFlags> 19 20 <OldToolsVersion>3.5</OldToolsVersion> 20 21 <UpgradeBackupLocation>
Changes to SQLite.NET.Settings.targets.
116 116 117 117 <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> 118 118 <!-- 119 119 NOTE: Debug build. Set the warning level to maximum. Also, disable 120 120 warnings that tend to cause too much noise. 121 121 --> 122 122 <WarningLevel>4</WarningLevel> 123 - <NoWarn>618,1591</NoWarn> 123 + <NoWarn>618,1591;3001</NoWarn> 124 124 </PropertyGroup> 125 125 126 126 <PropertyGroup Condition="'$(Configuration)' == 'Release'"> 127 127 <!-- 128 128 NOTE: Release build. Set the warning level to maximum. Also, disable 129 129 warnings that tend to cause too much noise. 130 130 --> 131 131 <WarningLevel>4</WarningLevel> 132 - <NoWarn>618,1591</NoWarn> 132 + <NoWarn>618,1591;3001</NoWarn> 133 133 </PropertyGroup> 134 134 135 135 <!-- 136 136 ****************************************************************************** 137 137 ** Relative Path Properties ** 138 138 ****************************************************************************** 139 139 -->