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 |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b1a322d0160f86ba4aa78dac99d2bd8c |
User & Date: | mistachkin 2011-04-09 01:33:26.942 |
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.
1 2 3 4 5 6 7 8 9 10 11 12 | <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{9B4A5CF6-5BE5-4926-ACC7-B729A8C05198}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>SQLite.Designer</RootNamespace> <AssemblyName>SQLite.Designer</AssemblyName> | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{9B4A5CF6-5BE5-4926-ACC7-B729A8C05198}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>SQLite.Designer</RootNamespace> <AssemblyName>SQLite.Designer</AssemblyName> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\System.Data.SQLite\System.Data.SQLite.snk</AssemblyOriginatorKeyFile> <RegisterOutputPackage>false</RegisterOutputPackage> <RegisterWithCodebase>false</RegisterWithCodebase> <GeneratePkgDefFile>false</GeneratePkgDefFile> <FileUpgradeFlags> </FileUpgradeFlags> <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> |
︙ | ︙ |
Changes to SQLite.NET.Settings.targets.
︙ | ︙ | |||
116 117 118 119 120 121 122 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <!-- NOTE: Debug build. Set the warning level to maximum. Also, disable warnings that tend to cause too much noise. --> <WarningLevel>4</WarningLevel> | | | | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <!-- NOTE: Debug build. Set the warning level to maximum. Also, disable warnings that tend to cause too much noise. --> <WarningLevel>4</WarningLevel> <NoWarn>618,1591;3001</NoWarn> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Release'"> <!-- NOTE: Release build. Set the warning level to maximum. Also, disable warnings that tend to cause too much noise. --> <WarningLevel>4</WarningLevel> <NoWarn>618,1591;3001</NoWarn> </PropertyGroup> <!-- ****************************************************************************** ** Relative Path Properties ** ****************************************************************************** --> |
︙ | ︙ |