Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Copy the 'testef6' output files to the 'netstandard2.1' output directory. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
c9e851fb48ea920be502020bd245cc24 |
User & Date: | mistachkin 2019-10-07 04:47:39.834 |
Context
2019-10-07
| ||
04:49 | Fix some uses of the 'checkForFile' test suite helper procedure. check-in: 4f99e9372f user: mistachkin tags: netStandard21 | |
04:47 | Copy the 'testef6' output files to the 'netstandard2.1' output directory. check-in: c9e851fb48 user: mistachkin tags: netStandard21 | |
04:11 | Fix several missing test constraints. check-in: 5dc7e573b1 user: mistachkin tags: netStandard21 | |
Changes
Changes to testlinq/testef6.NetStandard21.csproj.
︙ | ︙ | |||
57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <PropertyGroup> <TargetFramework>netcoreapp3.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Strong Name Signing Property Overrides ** ****************************************************************************** --> <PropertyGroup> | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | <PropertyGroup> <TargetFramework>netcoreapp3.0</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Targets ** ****************************************************************************** --> <Target Name="CopyToNetStandard21" Condition="'$(CopyToNetStandard21)' != 'false' And '$(OutputPath)' != '' And HasTrailingSlash('$(OutputPath)') And Exists('$(OutputPath)')" Inputs="$(TargetPath)" Outputs="$(TargetPath).CopyToNetStandard21.done"> <Copy SourceFiles="$(TargetPath)" DestinationFolder="$(OutputPath)..\netstandard2.1" ContinueOnError="true" /> <Copy SourceFiles="$(OutputPath)$(TargetName).pdb" DestinationFiles="$(OutputPath)..\netstandard2.1\$(TargetName).pdb" ContinueOnError="true" Condition="'$(_DebugSymbolsProduced)' == 'true'" /> <Copy SourceFiles="NetStandard21\EF6\App.config" DestinationFiles="$(OutputPath)..\netstandard2.1\$(TargetName).dll.config" ContinueOnError="true" /> <Touch AlwaysCreate="true" Files="$(TargetPath).CopyToNetStandard21.done" /> </Target> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Strong Name Signing Property Overrides ** ****************************************************************************** --> <PropertyGroup> |
︙ | ︙ | |||
217 218 219 220 221 222 223 | --> <PropertyGroup> <BuildDependsOn> DetectBuildTool; DetectOperatingSystem; $(BuildDependsOn); | | < < < < | 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | --> <PropertyGroup> <BuildDependsOn> DetectBuildTool; DetectOperatingSystem; $(BuildDependsOn); CopyToNetStandard21; </BuildDependsOn> </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> </Project> |