Skip to content

Feature/173197 persons api client nu get package #569

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Aug 14, 2024
6 changes: 5 additions & 1 deletion PersonsApi/PersonsApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@
<ProjectReference Include="..\Dfe.Academies.Application\Dfe.Academies.Application.csproj" />
</ItemGroup>

<Target Name="NSwag" BeforeTargets="AfterBuild" Condition="'$(CI)'!='true'">
<Target Name="CheckCIValue" BeforeTargets="AfterBuild">
<Message Text="CI variable value: '$(CI)'" Importance="high"/>
</Target>

<Target Name="NSwag" BeforeTargets="AfterBuild" Condition="'!$(CI)'">
<Exec
ConsoleToMSBuild="true"
ContinueOnError="true"
Expand Down
Loading