Skip to content

Commit 38ef727

Browse files
author
Fraser Greenroyd
authored
6.3 Deployment (#39)
2 parents 422a903 + 1b17e5c commit 38ef727

File tree

6 files changed

+36
-5
lines changed

6 files changed

+36
-5
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package>
3+
<metadata>
4+
<id>BHoM.Interop.Excel</id>
5+
<version></version>
6+
<authors>BHoM</authors>
7+
<projectUrl>https://github.com/BHoM/Excel_Toolkit</projectUrl>
8+
<license type="file">licence.txt</license>
9+
<icon>icon.png</icon>
10+
<readme>readme.md</readme>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>Interop with Excel.</description>
13+
<releaseNotes></releaseNotes>
14+
<copyright></copyright>
15+
<tags>BHoM interop excel AEC</tags>
16+
<title></title>
17+
<dependencies>
18+
<group targetFramework="netstandard2.0">
19+
<dependency id="NETStandard.Library" version="2.0.3" />
20+
<dependency id="Microsoft.CSharp" version="4.7.0" />
21+
</group>
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="licence/licence.txt" target="" />
26+
<file src="images/icon.png" target="" />
27+
<file src="docs/readme.md" target="" />
28+
</files>
29+
</package>

Excel_Adapter/Excel_Adapter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Authors>BHoM</Authors>
88
<Copyright>Copyright © https://github.com/BHoM</Copyright>
99
<RootNamespace>BH.Adapter.Excel</RootNamespace>
10-
<FileVersion>6.2.0.0</FileVersion>
10+
<FileVersion>6.3.0.0</FileVersion>
1111
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
1212
<OutputPath>..\Build\</OutputPath>
1313
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

Excel_Engine/Create/CellContentsRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public static partial class Create
3434

3535
[Description("Creates a CellContentsRequest based on the worksheet name and range in an Excel-readable string format.")]
3636
[InputFromProperty("worksheet")]
37-
[Input("range", "Cell range in an Excel-readable string format.")]
37+
[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.")]
3838
[Output("request", "CellContentsRequest created based on the input strings.")]
39-
public static CellContentsRequest CellContentsRequest(string worksheet, string range)
39+
public static CellContentsRequest CellContentsRequest(string worksheet, string range = "")
4040
{
4141
CellRange cellRange = null;
4242
if (!string.IsNullOrWhiteSpace(range))

Excel_Engine/Excel_Engine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Authors>BHoM</Authors>
88
<Copyright>Copyright © https://github.com/BHoM</Copyright>
99
<RootNamespace>BH.Engine.Excel</RootNamespace>
10-
<FileVersion>6.2.0.0</FileVersion>
10+
<FileVersion>6.3.0.0</FileVersion>
1111
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
1212
<OutputPath>..\Build\</OutputPath>
1313
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

Excel_oM/Excel_oM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Authors>BHoM</Authors>
88
<Copyright>Copyright © https://github.com/BHoM</Copyright>
99
<RootNamespace>BH.oM.Excel</RootNamespace>
10-
<FileVersion>6.2.0.0</FileVersion>
10+
<FileVersion>6.3.0.0</FileVersion>
1111
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
1212
<OutputPath>..\Build\</OutputPath>
1313
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

Excel_oM/Requests/CellContentsRequest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@
2323
using BH.oM.Data.Requests;
2424
using System.Collections.Generic;
2525
using System.ComponentModel;
26+
using BH.oM.Base.Attributes;
2627

2728
namespace BH.oM.Adapters.Excel
2829
{
2930
[Description("IRequest that pulls cells and their metadata from the excel file.")]
31+
[NoAutoConstructor]
3032
public class CellContentsRequest : IRequest
3133
{
3234
/***************************************************/

0 commit comments

Comments
 (0)