Skip to content

Commit

Permalink
update host api and add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed Jun 20, 2024
1 parent f019f7c commit 69cb953
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 28 deletions.
6 changes: 5 additions & 1 deletion Build/Consts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ namespace Build;
public static class Consts
{
public static readonly string[] Solutions = { "DUI3-DX.slnf" };
public static readonly string[] TestProjects = { "Speckle.Converters.Revit2023.Tests" };
public static readonly string[] TestProjects =
{
"Speckle.Converters.Revit2023.Tests",
"Speckle.Converters.Common.Tests"
};

public static readonly InstallerProject[] InstallerManifests =
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<ItemGroup>
<PackageReference Include="RhinoCommon" Version="7.13.21348.13001" IncludeAssets="compile;build" />
<PackageReference Include="RhinoWindows" Version="7.13.21348.13001" IncludeAssets="compile;build" />
<PackageReference Include="Speckle.Rhino7.Api" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Rhino7.Api" Version="0.1.1-preview.0.26" />
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.26" />
<PackageReference Include="System.Resources.Extensions" Version="7.0.0"/>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Speckle.Revit2023.Api" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Revit2023.Api" Version="0.1.1-preview.0.26" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Sdk\Speckle.Converters.Common.DependencyInjection\Speckle.Converters.Common.DependencyInjection.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.2.0"/>
<PackageReference Include="coverlet.collector" Version="6.0.2"/>
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.26" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
},
"Speckle.Revit2023.Interfaces": {
"type": "Direct",
"requested": "[0.1.1-preview.0.25, )",
"resolved": "0.1.1-preview.0.25",
"contentHash": "K22SbzxnujxU/elofcsYceLQ2G2ketJWGSM39I+k6IcvRvcy/az5X1fjhzrYtzC0Y+/2aqm0oqydFP+3FROJjg=="
"requested": "[0.1.1-preview.0.26, )",
"resolved": "0.1.1-preview.0.26",
"contentHash": "bh9v0aQYuy7jlvtiOAZCOFa1NxQHpQUUAeM/wM+imQeiMw/6xhlBx5yT/15N1CL6JJzchKRzTAnK4xDk9WKCmw=="
},
"Castle.Core": {
"type": "Transitive",
Expand Down Expand Up @@ -504,7 +504,7 @@
"type": "Project",
"dependencies": {
"Speckle.Converters.Common": "[2.0.999-local, )",
"Speckle.Revit2023.Interfaces": "[0.1.1-preview.0.25, )"
"Speckle.Revit2023.Interfaces": "[0.1.1-preview.0.26, )"
}
},
"Speckle.Core": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Import Project="..\Speckle.Converters.RevitShared\Speckle.Converters.RevitShared.projitems" Label="Shared" />

<ItemGroup>
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.26" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.26" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Rhino7.Interfaces" Version="0.1.1-preview.0.26" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net48</TargetFramework>
Expand All @@ -14,7 +14,7 @@
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.2.0"/>
<PackageReference Include="coverlet.collector" Version="6.0.2"/>
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.25" />
<PackageReference Include="Speckle.Revit2023.Interfaces" Version="0.1.1-preview.0.26" />
</ItemGroup>

<ItemGroup>
Expand Down
18 changes: 4 additions & 14 deletions DUI3-DX/Sdk/Speckle.Converters.Common.Tests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
},
"Speckle.Revit2023.Interfaces": {
"type": "Direct",
"requested": "[0.1.1-preview.0.24, )",
"resolved": "0.1.1-preview.0.24",
"contentHash": "BSVpOUJc9g6ISrw8GxvtkglTlITpHEDYNOhxv1ZPbckBsI0yO36JiphhQV4q57ERqD9PpCozUJkVhlCaxWeS6A=="
"requested": "[0.1.1-preview.0.26, )",
"resolved": "0.1.1-preview.0.26",
"contentHash": "bh9v0aQYuy7jlvtiOAZCOFa1NxQHpQUUAeM/wM+imQeiMw/6xhlBx5yT/15N1CL6JJzchKRzTAnK4xDk9WKCmw=="
},
"Castle.Core": {
"type": "Transitive",
Expand Down Expand Up @@ -200,14 +200,6 @@
"Serilog": "2.4.0"
}
},
"Serilog.Enrichers.GlobalLogContext": {
"type": "Transitive",
"resolved": "3.0.0",
"contentHash": "IIZcj5mAUVhIl/NTA+YI2KC+sPDzcwvs0ZMHH42jsPfl1a4LVX7ohVpw5UK+e3GxuV3Nv239Il5oM2peUIl44g==",
"dependencies": {
"Serilog": "2.12.0"
}
},
"Serilog.Exceptions": {
"type": "Transitive",
"resolved": "8.4.0",
Expand Down Expand Up @@ -421,8 +413,7 @@
"type": "Project",
"dependencies": {
"Speckle.Autofac": "[2.0.999-local, )",
"Speckle.Objects": "[2.0.999-local, )",
"Speckle.Revit2023.Interfaces": "[0.1.1-preview.0.24, )"
"Speckle.Objects": "[2.0.999-local, )"
}
},
"Speckle.Core": {
Expand All @@ -438,7 +429,6 @@
"Sentry.Serilog": "[3.33.0, )",
"Serilog": "[2.12.0, )",
"Serilog.Enrichers.ClientInfo": "[1.3.0, )",
"Serilog.Enrichers.GlobalLogContext": "[3.0.0, )",
"Serilog.Exceptions": "[8.4.0, )",
"Serilog.Sinks.Console": "[4.1.0, )",
"Serilog.Sinks.Seq": "[5.2.2, )",
Expand Down

0 comments on commit 69cb953

Please sign in to comment.