Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<Description>Client sdk for Forge DesignAutomation API</Description>
<Version>6.0.1</Version>
<Version>6.0.2</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Autodesk.Forge.Core" Version="4.0.1" />
<PackageReference Include="Autodesk.Forge.Core" Version="4.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/E2eTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Autodesk.Forge.Core.E2eTestHelpers" Version="4.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="Autodesk.Forge.Core.E2eTestHelpers" Version="4.1.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Fixture()
.AddJsonFile("appsettings.json")
.AddJsonFile($"appsettings.user.json", optional: true)
.AddEnvironmentVariables()
.AddForgeAlternativeEnvironmentVariables()
.AddAPSAlternativeEnvironmentVariables()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we allow AddForgeAlternativeEnvironmentVariables too?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just for our E2E test. We don't need either but we had this here for demonstration purposes.

.Build();

DataFolder = Path.Combine(Environment.CurrentDirectory, "../../../data/");
Expand Down