[Helix] Reenable azure auth tests (#8349)
This commit is contained in:
parent
f46d5b3af2
commit
1cd544042d
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<!-- https://github.com/aspnet/AspNetCore/issues/6549 -->
|
|
||||||
<BuildHelixPayload>false</BuildHelixPayload>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
@ -19,5 +17,25 @@
|
||||||
<Reference Include="Microsoft.Extensions.Logging.Testing" />
|
<Reference Include="Microsoft.Extensions.Logging.Testing" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Target Name="PublishAssets" AfterTargets="Publish">
|
||||||
|
<ItemGroup>
|
||||||
|
<_PublishFiles Include="$(MSBuildThisFileDirectory)..\testassets\AzureAD.WebSite\bin\$(Configuration)\netcoreapp3.0\AzureAD.WebSite.deps.json" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Copy
|
||||||
|
SourceFiles="@(_PublishFiles)"
|
||||||
|
DestinationFolder="$(PublishDir)" />
|
||||||
|
<!-- Drop a dummy sln to specify content root location -->
|
||||||
|
<WriteLinesToFile
|
||||||
|
File="$(PublishDir)\contentroot.sln"
|
||||||
|
Lines="Ignored"
|
||||||
|
Overwrite="true"
|
||||||
|
Encoding="Unicode"/>
|
||||||
|
<WriteLinesToFile
|
||||||
|
File="$(PublishDir)\AzureAD.WebSite\ignored.txt"
|
||||||
|
Lines="Ignored"
|
||||||
|
Overwrite="true"
|
||||||
|
Encoding="Unicode"/>
|
||||||
|
</Target>
|
||||||
|
|
||||||
<Import Project="$(MvcTestingTargets)" Condition="'$(MvcTestingTargets)' != ''" />
|
<Import Project="$(MvcTestingTargets)" Condition="'$(MvcTestingTargets)' != ''" />
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue