Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
soenneker committed Jan 26, 2024
2 parents cea75d3 + 91620a5 commit 5710ed3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 37 deletions.
35 changes: 0 additions & 35 deletions src/Services/FakerService.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/Soenneker.Utils.AutoBogus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<PackageReference Include="Bogus" Version="35.4.0" />
<PackageReference Include="Bogus" Version="35.4.0" />
<PackageReference Include="Soenneker.Reflection.Cache" Version="2.1.13" />
<PackageReference Include="Soenneker.Utils.ResettableLazy" Version="2.1.76" />
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Soenneker.Facts.Local" Version="2.1.179" />
<PackageReference Include="Soenneker.Facts.Manual" Version="2.1.88" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ internal static class EnvironmentUtil
// Init needs to be done outside of ctor because Fact evaluates before the ctor of the test
private static readonly Lazy<bool> _isPipelineLazy = new(() =>
{
string? pipelineEnv = Environment.GetEnvironmentVariable("PipelineEnvironment");
string? pipelineEnv = System.Environment.GetEnvironmentVariable("PipelineEnvironment");

_ = bool.TryParse(pipelineEnv, out bool isPipeline);

Expand Down

0 comments on commit 5710ed3

Please sign in to comment.