Skip to content

Commit

Permalink
🐛 should apply internal build to namespace imports too
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffynuts committed Apr 16, 2024
1 parent 5d82593 commit 73d5290
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using PeanutButter.TestUtils.AspNetCore.Builders;
using PeanutButter.Utils;

#if BUILD_PEANUTBUTTER_INTERNAL
using Imported.PeanutButter.TestUtils.AspNetCore.Builders;
using Imported.PeanutButter.Utils;
namespace Imported.PeanutButter.TestUtils.AspNetCore;
#else
using PeanutButter.TestUtils.AspNetCore.Builders;
using PeanutButter.Utils;
namespace PeanutButter.TestUtils.AspNetCore;
#endif

Expand Down

0 comments on commit 73d5290

Please sign in to comment.