Skip to content

Start of milestone changes for 8.2 #516

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 2 commits into from
Apr 2, 2025
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
2 changes: 1 addition & 1 deletion .ci/code/UI_Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.1.0.0")]
[assembly: AssemblyFileVersion("8.2.0.0")]

Check failure on line 58 in .ci/code/UI_Test/Properties/AssemblyInfo.cs

View check run for this annotation

BHoMBot-CI / project-compliance

.ci/code/UI_Test/Properties/AssemblyInfo.cs#L58

Assembly File Version should be set to 8.1.0.0



6 changes: 3 additions & 3 deletions BHoM_UI/BHoM_UI.csproj
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>net472</TargetFramework>
Expand All @@ -8,7 +8,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.UI</RootNamespace>
<FileVersion>8.1.0.0</FileVersion>
<FileVersion>8.2.0.0</FileVersion>

Check failure on line 11 in BHoM_UI/BHoM_UI.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

BHoM_UI/BHoM_UI.csproj#L11

Assembly File Version should be set to 8.1.0.0
<OutputPath>..\Build\</OutputPath>
</PropertyGroup>

Expand Down Expand Up @@ -151,4 +151,4 @@
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;$(ProgramData)\BHoM\Assemblies&quot; /Y" />
</Target>
</Project>
</Project>
2 changes: 1 addition & 1 deletion BHoM_Windows_UI/BHoM_Windows_UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.UI.Base.Windows</RootNamespace>
<FileVersion>8.1.0.0</FileVersion>
<FileVersion>8.2.0.0</FileVersion>

Check failure on line 11 in BHoM_Windows_UI/BHoM_Windows_UI.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

BHoM_Windows_UI/BHoM_Windows_UI.csproj#L11

Assembly File Version should be set to 8.1.0.0
<OutputPath>..\Build\</OutputPath>
<UseWPF>true</UseWPF>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion UI_Engine/Compute/InputAccessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public static partial class Compute
/**** Public Methods ****/
/*************************************/

[PreviousVersion("8.1", "BH.Engine.UI.Create.InputAccessor(System.Type, System.Type)")]
public static Func<IDataAccessor, int, object> InputAccessor(Type accessorType, Type dataType)
{
UnderlyingType subType = dataType.UnderlyingType();
Expand Down
1 change: 0 additions & 1 deletion UI_Engine/Compute/LogUsage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public static partial class Compute
/**** Public Methods ****/
/*************************************/

[PreviousVersion("8.1", "BH.Engine.UI.Compute.LogUsage(System.String, System.String, System.Guid, System.String, System.Object, System.Collections.Generic.List<BH.oM.Base.Debugging.Event>, System.String, System.String)")]
public static void LogUsage(string uiName, string uiVersion, Guid componentId, string callerName, object selectedItem, List<Event> events = null, string fileId = "", string fileName = "", string projectId = "")
{
//Special case for a component setting the project ID explicitly
Expand Down
1 change: 0 additions & 1 deletion UI_Engine/Compute/OutputAccessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public static partial class Compute
/**** Public Methods ****/
/*************************************/

[PreviousVersion("8.1", "BH.Engine.UI.Create.OutputAccessor(System.Type, System.Type)")]
public static Func<IDataAccessor, object, int, bool> OutputAccessor(Type accessorType, Type dataType)
{
UnderlyingType subType = dataType.UnderlyingType();
Expand Down
6 changes: 3 additions & 3 deletions UI_Engine/UI_Engine.csproj
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>net472</TargetFramework>
Expand All @@ -8,7 +8,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.Engine.UI</RootNamespace>
<FileVersion>8.1.0.0</FileVersion>
<FileVersion>8.2.0.0</FileVersion>

Check failure on line 11 in UI_Engine/UI_Engine.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

UI_Engine/UI_Engine.csproj#L11

Assembly File Version should be set to 8.1.0.0
<OutputPath>..\Build\</OutputPath>
</PropertyGroup>

Expand Down Expand Up @@ -62,4 +62,4 @@
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;$(ProgramData)\BHoM\Assemblies&quot; /Y" />
</Target>
</Project>
</Project>
2 changes: 1 addition & 1 deletion UI_oM/UI_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.oM.UI</RootNamespace>
<FileVersion>8.1.0.0</FileVersion>
<FileVersion>8.2.0.0</FileVersion>

Check failure on line 11 in UI_oM/UI_oM.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

UI_oM/UI_oM.csproj#L11

Assembly File Version should be set to 8.1.0.0
<OutputPath>..\Build\</OutputPath>
</PropertyGroup>
<ItemGroup>
Expand Down