Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Reform use of the CreateItem MSBuild task. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | corePreRelease |
Files: | files | file ages | folders |
SHA1: |
a30beb98c655260577eb0113cb9b74df |
User & Date: | mistachkin 2020-01-23 04:55:55.988 |
Context
2020-01-26
| ||
22:04 | Update SQLite core library to the latest trunk code. Leaf check-in: 1be3d892d0 user: mistachkin tags: corePreRelease | |
2020-01-23
| ||
04:55 | Reform use of the CreateItem MSBuild task. check-in: a30beb98c6 user: mistachkin tags: corePreRelease | |
2020-01-19
| ||
03:52 | Start using the 'PreserveNewest' value for all CopyToOutputDirectory attributes. Pursuant to [4f1e18abae]. check-in: 3165c44148 user: mistachkin tags: corePreRelease | |
Changes
Changes to Targets/SQLite.NET.targets.
︙ | ︙ | |||
171 172 173 174 175 176 177 | --> <Target Name="CleanConfigurations" Condition="'$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')"> <CreateItem Include="$(OutputPath)*.config"> | | | | | | | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | --> <Target Name="CleanConfigurations" Condition="'$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')"> <CreateItem Include="$(OutputPath)*.config"> <Output ItemName="CleanConfigurationsItem" TaskParameter="Include" /> </CreateItem> <Delete Condition="'@(CleanConfigurationsItem)' != ''" Files="@(CleanConfigurationsItem)" /> </Target> <!-- ****************************************************************************** --> <Target Name="CopyConfigurations" Condition="'$(CopyConfigurations)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyConfigurations.done"> <CreateItem Include="Configurations\*.config" Exclude="Configurations\no_*"> <Output ItemName="CopyConfigurationsItem" TaskParameter="Include" /> </CreateItem> <Copy SourceFiles="@(CopyConfigurationsItem)" DestinationFolder="$(OutputPath)" /> <Touch AlwaysCreate="true" Files="$(TargetPath).CopyConfigurations.done" /> </Target> <!-- |
︙ | ︙ |
Changes to testlinq/testef6.NetStandard21.csproj.
︙ | ︙ | |||
71 72 73 74 75 76 77 | Condition="'$(CopyToNetStandard21)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyToNetStandard21.done"> <CreateItem Include="$(OutputPath)**"> | | | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | Condition="'$(CopyToNetStandard21)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyToNetStandard21.done"> <CreateItem Include="$(OutputPath)**"> <Output ItemName="CopyToNetStandard21Item" TaskParameter="Include" /> </CreateItem> <Copy SourceFiles="@(CopyToNetStandard21Item)" DestinationFiles="@(CopyToNetStandard21Item -> '$(OutputPath)..\netstandard2.1\%(RecursiveDir)%(Filename)%(Extension)')" /> <Touch AlwaysCreate="true" Files="$(TargetPath).CopyToNetStandard21.done" /> </Target> <!-- ****************************************************************************** |
︙ | ︙ |