CsprojToVs2017 icon indicating copy to clipboard operation
CsprojToVs2017 copied to clipboard

Migration remove configs from tests

Open MonkAlex opened this issue 6 years ago • 1 comments

Has test project with configs:

<None Include="..\Test.Environment\Services.config">
  <Link>Services.config</Link>
  <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  <SubType>Designer</SubType>
</None>
<None Include="..\Test.Environment\_Config.example">
  <Link>_Config.example</Link>
  <SubType>Designer</SubType>
</None>
<None Include="Domain.config">
  <SubType>Designer</SubType>
  <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>

After migration found only one record in project:

<None Include="..\Test.Environment\_Config.example">
  <Link>_Config.example</Link>
  <SubType>Designer</SubType>
</None>

and configs not copy after build then tests failed.

MonkAlex avatar Jun 07 '19 05:06 MonkAlex

Maybe this is related to #266

tom-englert avatar Oct 01 '19 10:10 tom-englert