Skip to content

Commit

Permalink
7.3 Deployment (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
al-fisher authored Sep 19, 2024
2 parents f28c740 + fd62047 commit 88b27ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CarbonQueryDatabase_Adapter/Convert/ToBHoM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static EnvironmentalProductDeclaration ToEnvironmentalProductDeclaration(
double density = ConvertToSI(densityVal, densityUnits);
string gwp = obj.PropertyValue("gwp")?.ToString() ?? "";
double gwpVal = (gwp == "") ? double.NaN : System.Convert.ToDouble(gwp.Substring(0, gwp.IndexOf(" "))) * epdUnitMult;
int lifespan = (int)(obj.PropertyValue("reference_service_life") ?? 0);
int lifespan = int.TryParse(obj.PropertyValue("reference_service_life")?.ToString() ?? "", out result) ? result : 0;
int referenceYear = int.TryParse(obj.PropertyValue("date_of_issue")?.ToString() ?? "", out result) ? result : 0;

string publisherNames = "";
Expand Down
2 changes: 1 addition & 1 deletion CarbonQueryDatabase_Adapter/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("7.0.0.0")]
[assembly: AssemblyFileVersion("7.2.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]



Expand Down
2 changes: 1 addition & 1 deletion CarbonQueryDatabase_Engine/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("7.0.0.0")]
[assembly: AssemblyFileVersion("7.2.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]



Expand Down
2 changes: 1 addition & 1 deletion CarbonQueryDatabase_oM/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("7.0.0.0")]
[assembly: AssemblyFileVersion("7.2.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]



Expand Down

0 comments on commit 88b27ab

Please sign in to comment.