Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Reverse accidental check-in of changes performed on the project file by the IDE. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vtabFixes |
Files: | files | file ages | folders |
SHA1: |
fe4d272115dddb5a0e1330ccfc790724 |
User & Date: | mistachkin 2015-12-04 06:16:00.215 |
Context
2015-12-04
| ||
06:20 | Fix compilation on the .NET Compact Framework. check-in: 68ef61f0fa user: mistachkin tags: vtabFixes | |
06:16 | Reverse accidental check-in of changes performed on the project file by the IDE. check-in: fe4d272115 user: mistachkin tags: vtabFixes | |
06:14 | More fixes to the optional field handling for the virtual table interface. check-in: 496499d755 user: mistachkin tags: vtabFixes | |
Changes
Changes to SQLite.Designer/SQLite.Designer.2015.csproj.
︙ | ︙ | |||
110 111 112 113 114 115 116 | <Compile Include="Design\Index.cs" /> <Compile Include="Design\PrimaryKey.cs" /> <Compile Include="Design\SimpleTokenizer.cs" /> <Compile Include="Design\Table.cs" /> <Compile Include="Design\Trigger.cs" /> <Compile Include="Design\Unique.cs" /> <Compile Include="Design\View.cs" /> | | > > | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | <Compile Include="Design\Index.cs" /> <Compile Include="Design\PrimaryKey.cs" /> <Compile Include="Design\SimpleTokenizer.cs" /> <Compile Include="Design\Table.cs" /> <Compile Include="Design\Trigger.cs" /> <Compile Include="Design\Unique.cs" /> <Compile Include="Design\View.cs" /> <Compile Include="Editors\AutoCompleteColumn.cs"> <SubType>Component</SubType> </Compile> <Compile Include="Editors\TableDesignerDoc.cs"> <SubType>UserControl</SubType> </Compile> <Compile Include="Editors\TableDesignerDoc.Designer.cs"> <DependentUpon>TableDesignerDoc.cs</DependentUpon> </Compile> <Compile Include="Editors\ViewDesignerDoc.cs"> |
︙ | ︙ | |||
202 203 204 205 206 207 208 | <ItemGroup> <None Include="Resources\info.png" /> <None Include="Resources\ToolboxItems.txt" /> <None Include="source.extension.vsixmanifest" /> </ItemGroup> <Import Project="$(SQLiteNetDir)\System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | > | > > > > > > > > | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | <ItemGroup> <None Include="Resources\info.png" /> <None Include="Resources\ToolboxItems.txt" /> <None Include="source.extension.vsixmanifest" /> </ItemGroup> <Import Project="$(SQLiteNetDir)\System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup Condition="'$(VSSDK140Install)' == '' Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v4.0\Microsoft.Data.ConnectionUI.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v4.0\Microsoft.VisualStudio.Data.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v4.0\Microsoft.VisualStudio.Data.Services.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v2.0\Microsoft.VisualStudio.OLE.Interop.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v4.0\Microsoft.VisualStudio.Shell.14.0.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v2.0\Microsoft.VisualStudio.Shell.Interop.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v2.0\Microsoft.VisualStudio.Shell.Interop.8.0.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v2.0\Microsoft.VisualStudio.Shell.Interop.9.0.dll') Or !Exists('$(VSSDK140Install)VisualStudioIntegration\Common\Assemblies\v2.0\Microsoft.VisualStudio.Shell.Interop.10.0.dll')"> <!-- NOTE: We cannot build this project without the necessary reference assemblies; therefore, skip building it altogether. --> <BuildDependsOn> MissingVsSdk </BuildDependsOn> |
︙ | ︙ |