Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixes to the new CopyToNetStandard21 build target. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
96373778b23ad68682188cc13877706d |
User & Date: | mistachkin 2019-10-07 23:03:10.239 |
Context
2019-10-08
| ||
01:24 | Get the EF6 integration test project building and working. check-in: cd8bf2f63b user: mistachkin tags: netStandard21 | |
2019-10-07
| ||
23:03 | Fixes to the new CopyToNetStandard21 build target. check-in: 96373778b2 user: mistachkin tags: netStandard21 | |
12:35 | EntityFramework 6.3.0 does not support configuration files for .NET Core projects. check-in: 512db75317 user: mistachkin tags: netStandard21 | |
Changes
Changes to testlinq/testef6.NetStandard21.csproj.
︙ | ︙ | |||
70 71 72 73 74 75 76 | <Target Name="CopyToNetStandard21" Condition="'$(CopyToNetStandard21)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyToNetStandard21.done"> | < | < | < < < < > | | < | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <Target Name="CopyToNetStandard21" Condition="'$(CopyToNetStandard21)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyToNetStandard21.done"> <CreateItem Include="$(OutputPath)**"> <Output ItemName="OutputPathFiles" TaskParameter="Include" /> </CreateItem> <Copy SourceFiles="@(OutputPathFiles)" DestinationFiles="@(OutputPathFiles -> '$(OutputPath)..\netstandard2.1\%(RecursiveDir)%(Filename)%(Extension)')" /> <Touch AlwaysCreate="true" Files="$(TargetPath).CopyToNetStandard21.done" /> </Target> <!-- ****************************************************************************** |
︙ | ︙ | |||
205 206 207 208 209 210 211 212 213 214 215 216 217 218 | <ItemGroup> <EntityDeploy Include="NorthwindModel.EF6.NetStandard21.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel.EF6.NetStandard21.Designer.cs</LastGenOutput> </EntityDeploy> </ItemGroup> <!-- ****************************************************************************** ** .NET Core Assembly References ** ****************************************************************************** --> <ItemGroup> | > > > > > > > > > > > > > > | 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | <ItemGroup> <EntityDeploy Include="NorthwindModel.EF6.NetStandard21.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel.EF6.NetStandard21.Designer.cs</LastGenOutput> </EntityDeploy> </ItemGroup> <!-- ****************************************************************************** ** Library Project References ** ****************************************************************************** --> <ItemGroup> <ProjectReference Include="..\System.Data.SQLite\System.Data.SQLite.NetStandard21.csproj"> <Project>{AC139952-261A-4463-B6FA-AEBC25283A66}</Project> <Name>System.Data.SQLite.NetStandard21</Name> <Private>False</Private> </ProjectReference> </ItemGroup> <!-- ****************************************************************************** ** .NET Core Assembly References ** ****************************************************************************** --> <ItemGroup> |
︙ | ︙ |