Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Changes to permit easier customization of the NuGet MSBuild settings. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | nuGetContent |
Files: | files | file ages | folders |
SHA1: |
c6c4e96ece196b3a836d8542678f9dc7 |
User & Date: | mistachkin 2015-05-22 01:57:14.832 |
Context
2015-05-26
| ||
19:06 | Updates for the 1.0.97.0 release. check-in: e63ae6e43f user: mistachkin tags: preRelease | |
2015-05-22
| ||
01:57 | Changes to permit easier customization of the NuGet MSBuild settings. Closed-Leaf check-in: c6c4e96ece user: mistachkin tags: nuGetContent | |
2015-05-21
| ||
18:47 | Simplify condition for the content section added in the previous check-in. check-in: 54ac1d7383 user: mistachkin tags: nuGetContent | |
Changes
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!-- * * System.Data.SQLite.Core.targets - * * WARNING: This MSBuild file requires MSBuild 4.0 features. * * Written by Joe Mistachkin and David Archer. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** SQLite Interop Library Build Items ** ****************************************************************************** --> <ItemGroup> <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)')" Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Content Items ** ****************************************************************************** --> | > > > > > > > > > > > > > > > | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | <!-- * * System.Data.SQLite.Core.targets - * * WARNING: This MSBuild file requires MSBuild 4.0 features. * * Written by Joe Mistachkin and David Archer. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** Load Per-User Settings ** ****************************************************************************** --> <!-- NOTE: If the per-user settings file exists, import it now. The contained settings, if any, will override the default ones provided below. --> <Import Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)') And Exists('$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user')" Project="$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user" /> <!-- ****************************************************************************** ** SQLite Interop Library Build Items ** ****************************************************************************** --> <ItemGroup> <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)')" Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Content Items ** ****************************************************************************** --> <ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != '' And '$(ContentSQLiteInteropFiles)' != 'false' And '@(SQLiteInteropFiles)' != ''"> <Content Include="@(SQLiteInteropFiles)"> <Link>%(RecursiveDir)%(FileName)%(Extension)</Link> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Build Targets ** ****************************************************************************** |
︙ | ︙ |