Skip to content

Commit

Permalink
6.3 Deployment (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd authored Sep 21, 2023
2 parents 422a903 + 1b17e5c commit 38ef727
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 5 deletions.
29 changes: 29 additions & 0 deletions .ci/BHoMBot/Nuget/BHoM.Interop.Excel.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>BHoM.Interop.Excel</id>
<version></version>
<authors>BHoM</authors>
<projectUrl>https://github.com/BHoM/Excel_Toolkit</projectUrl>
<license type="file">licence.txt</license>
<icon>icon.png</icon>
<readme>readme.md</readme>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Interop with Excel.</description>
<releaseNotes></releaseNotes>
<copyright></copyright>
<tags>BHoM interop excel AEC</tags>
<title></title>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="NETStandard.Library" version="2.0.3" />
<dependency id="Microsoft.CSharp" version="4.7.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="licence/licence.txt" target="" />
<file src="images/icon.png" target="" />
<file src="docs/readme.md" target="" />
</files>
</package>
2 changes: 1 addition & 1 deletion Excel_Adapter/Excel_Adapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.Adapter.Excel</RootNamespace>
<FileVersion>6.2.0.0</FileVersion>
<FileVersion>6.3.0.0</FileVersion>
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
4 changes: 2 additions & 2 deletions Excel_Engine/Create/CellContentsRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public static partial class Create

[Description("Creates a CellContentsRequest based on the worksheet name and range in an Excel-readable string format.")]
[InputFromProperty("worksheet")]
[Input("range", "Cell range in an Excel-readable string format.")]
[Input("range", "Cell range in an Excel-readable string format. If no range provided the default will be for the whole worksheet starting from A1 and extending to the extents of the used range in the worksheet.")]
[Output("request", "CellContentsRequest created based on the input strings.")]
public static CellContentsRequest CellContentsRequest(string worksheet, string range)
public static CellContentsRequest CellContentsRequest(string worksheet, string range = "")
{
CellRange cellRange = null;
if (!string.IsNullOrWhiteSpace(range))
Expand Down
2 changes: 1 addition & 1 deletion Excel_Engine/Excel_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.Engine.Excel</RootNamespace>
<FileVersion>6.2.0.0</FileVersion>
<FileVersion>6.3.0.0</FileVersion>
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
2 changes: 1 addition & 1 deletion Excel_oM/Excel_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.oM.Excel</RootNamespace>
<FileVersion>6.2.0.0</FileVersion>
<FileVersion>6.3.0.0</FileVersion>
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
2 changes: 2 additions & 0 deletions Excel_oM/Requests/CellContentsRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@
using BH.oM.Data.Requests;
using System.Collections.Generic;
using System.ComponentModel;
using BH.oM.Base.Attributes;

namespace BH.oM.Adapters.Excel
{
[Description("IRequest that pulls cells and their metadata from the excel file.")]
[NoAutoConstructor]
public class CellContentsRequest : IRequest
{
/***************************************************/
Expand Down

0 comments on commit 38ef727

Please sign in to comment.