Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Slightly improve build task naming. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | publishWithNuGetPkg |
Files: | files | file ages | folders |
SHA1: |
a72d3b55adcbf3f98035cd098c993a1e |
User & Date: | mistachkin 2014-10-17 23:08:42.895 |
Context
2014-11-14
| ||
00:58 | Merge updates from trunk. check-in: d48e9010a9 user: mistachkin tags: publishWithNuGetPkg | |
2014-10-17
| ||
23:08 | Slightly improve build task naming. check-in: a72d3b55ad user: mistachkin tags: publishWithNuGetPkg | |
23:02 | First attempt to address [e796ac82c1]. check-in: 27212bfb22 user: mistachkin tags: publishWithNuGetPkg | |
Changes
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
︙ | ︙ | |||
58 59 60 61 62 63 64 | <Delete Files="@(SQLiteInteropFiles -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> </Target> <!-- ****************************************************************************** --> | | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <Delete Files="@(SQLiteInteropFiles -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')" /> </Target> <!-- ****************************************************************************** --> <Target Name="IncludeSQLiteInteropFilesForPackaging" Condition="'$(IncludeSQLiteInteropFilesForPackaging)' != 'false'"> <ItemGroup> <FilesForPackagingFromProject Include="@(SQLiteInteropFiles)"> <DestinationRelativePath>bin\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath> </FilesForPackagingFromProject> </ItemGroup> </Target> |
︙ | ︙ | |||
93 94 95 96 97 98 99 | ** SQLite Interop Library Publish Properties for Visual Studio 2010 ** ****************************************************************************** --> <PropertyGroup Condition="'$(VisualStudioVersion)' == '' Or '$(VisualStudioVersion)' == '10.0'"> <CopyAllFilesToSingleFolderForPackageDependsOn> | | | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | ** SQLite Interop Library Publish Properties for Visual Studio 2010 ** ****************************************************************************** --> <PropertyGroup Condition="'$(VisualStudioVersion)' == '' Or '$(VisualStudioVersion)' == '10.0'"> <CopyAllFilesToSingleFolderForPackageDependsOn> IncludeSQLiteInteropFilesForPackaging; $(CopyAllFilesToSingleFolderForPackageDependsOn); </CopyAllFilesToSingleFolderForPackageDependsOn> </PropertyGroup> <!-- ****************************************************************************** ** SQLite Interop Library Publish Properties for Visual Studio 2012 ** ****************************************************************************** --> <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0' Or '$(VisualStudioVersion)' == '12.0'"> <CopyAllFilesToSingleFolderForMsdeployDependsOn> IncludeSQLiteInteropFilesForPackaging; $(CopyAllFilesToSingleFolderForMsdeployDependsOn); </CopyAllFilesToSingleFolderForMsdeployDependsOn> </PropertyGroup> </Project> |